/* zstack static pages — styles merged from HTML <style> blocks */
/* Do not import this file in multiple ways; it contains all page rules. */

/* ═══════════ cmp.html ═══════════ */
/* ─── Reset ────────────────────────────────────────────────── */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--bg-deep: #ffffff;
	--bg-dark: #f8fafc;
	--bg-card: #ffffff;
	--bg-card2: #f1f5f9;

	--blue: #00579c;
	--blue-dim: #004a85;
	--blue-glow: rgba(0, 87, 156, 0.22);
	--blue-faint: rgba(0, 87, 156, 0.08);
	--blue-light: rgba(0, 87, 156, 0.12);

	--orange: #e65100;
	--orange-dim: rgba(230, 81, 0, 0.12);

	--teal: #00897b;
	--teal-dim: rgba(0, 137, 123, 0.12);

	--green: #2e7d32;
	--red: #c62828;

	--border: rgba(0, 87, 156, 0.12);
	--border-hi: rgba(0, 87, 156, 0.22);
	--border-neu: rgba(148, 163, 184, 0.3);

	--t1: #0f172a;
	--t2: #475569;
	--t3: #94a3b8;

	--font: 'Inter', system-ui, sans-serif;
	--mono: 'JetBrains Mono', monospace;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font);
	background: var(--bg-deep);
	color: var(--t1);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

/* ─── Util ─────────────────────────────────────────────────── */
.wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 32px;
}

/* Label chip */
.cmp_lbl {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	color: var(--blue);
	background: var(--blue-faint);
	border: 1px solid rgba(0, 87, 156, 0.22);
	border-radius: 100px;
	padding: 4px 14px;
}

/* Buttons */
.cmp_btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font);
	font-weight: 600;
	letter-spacing: -0.01em;
	border-radius: 8px;
	border: none;
	cursor: pointer;
	transition: all .2s;
}

.cmp_btn--lg {
	font-size: 16px;
	padding: 14px 28px;
}

.cmp_btn--primary {
	background: var(--blue);
	color: #fff;
	box-shadow: 0 0 0 0 var(--blue-glow);
}

.cmp_btn--primary:hover {
	background: var(--blue-dim);
	box-shadow: 0 0 28px 6px var(--blue-glow);
}

.cmp_btn--ghost {
	background: transparent;
	color: var(--t2);
	border: 1px solid var(--border-neu);
}

.cmp_btn--ghost:hover {
	background: rgba(0, 87, 156, 0.05);
	color: var(--t1);
	border-color: var(--blue);
}

/* Fade animation */
.cmp_fade {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .6s ease, transform .6s ease;
}

.cmp_fade.cmp_in {
	opacity: 1;
	transform: none;
}

/* Section Header */
.cmp_sec-hd {
	margin-bottom: 48px;
	text-align: center;
}

.cmp_sec-hd .cmp_lbl {
	margin-bottom: 18px;
}

.cmp_h2 {
	font-size: clamp(32px, 4.5vw, 48px);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.15;
}

.cmp_sec-sub {
	font-size: 17px;
	color: var(--t2);
	line-height: 1.7;
	margin-top: 14px;
	max-width: 580px;
}

.cmp_h2 em {
	font-style: normal;
	background: linear-gradient(125deg, var(--blue) 0%, #0277bd 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* ─── HERO - Left Right Layout ─────────────────────── */
.cmp_hero {
	min-height: 100vh;
	padding-top: 70px;
	/*display: flex;*/
	/*flex-direction: column;*/
	/*justify-content: center;*/
	position: relative;
	overflow: hidden;
}

.cmp_hero-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 70% 55% at 50% 5%, rgba(0, 87, 156, 0.08) 0%, transparent 70%),
		radial-gradient(ellipse 50% 40% at 85% 75%, rgba(230, 81, 0, 0.04) 0%, transparent 65%);
}

.cmp_hero-grid-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(var(--border) 1px, transparent 1px),
		linear-gradient(90deg, var(--border) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: radial-gradient(ellipse 80% 60% at 50% 25%, black 20%, transparent 75%);
	opacity: .55;
}

.cmp_hero-body {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	padding: 0 32px 80px;
	max-width: 1200px;
	margin: 0 auto;
}

.cmp_hero-content {
	text-align: left;
}

.cmp_hero-status {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--blue);
	background: var(--blue-faint);
	border: 1px solid rgba(0, 87, 156, 0.24);
	border-radius: 100px;
	padding: 6px 16px;
	margin-bottom: 20px;
}

.cmp_hero-title {
	font-size: clamp(44px, 5vw, 64px);
	font-weight: 900;
	letter-spacing: -0.04em;
	line-height: 1.02;
	margin: 0 auto 28px 0;
}

.cmp_hero-title em {
	font-style: normal;
	background: linear-gradient(125deg, var(--blue) 0%, #0277bd 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.cmp_hero-tagline {
	font-size: 21px;
	font-weight: 600;
	color: var(--blue);
	margin-bottom: 14px;
	letter-spacing: -0.02em;
}

.cmp_hero-sub {
	font-size: clamp(16px, 1.8vw, 18px);
	color: var(--t2);
	line-height: 1.72;
	max-width: 520px;
	margin: 0 auto 40px 0;
}

.cmp_hero-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 0;
}

.cmp_hero-img {
	border-radius: 16px;
	overflow: visible;
	background: transparent;
	animation: heroFloat 3s ease-in-out infinite;
}

.cmp_hero-img:hover {
	animation-play-state: paused;
	transform: scale(1.05);
}

.cmp_hero-img img {
	width: 120%;
	height: auto;
	display: block;
	margin-left: -10%;
}

@keyframes heroFloat {

	0%,
	100% {
		transform: scale(1) translateY(0);
	}

	50% {
		transform: scale(1.03) translateY(-8px);
	}
}

/* Hero Stats - Source.cmp_html style, centered below hero */
.cmp_hero-stats-section {
	background: var(--bg-dark);
	border-top: 1px solid var(--border-neu);
	border-bottom: 1px solid var(--border-neu);
	padding: 64px 0;
}

.cmp_hero-stats {
	display: flex;
	justify-content: center;
	max-width: 960px;
	margin: 0 auto;
	border: 1px solid var(--border-hi);
	border-radius: 14px;
	overflow: hidden;
	background: rgba(0, 87, 156, 0.03);
	backdrop-filter: blur(8px);
}

.cmp_hstat {
	flex: 1;
	padding: 28px 30px;
	text-align: left;
	border-right: 1px solid var(--border-neu);
	position: relative;
}

.cmp_hstat::before {
	content: '';
	position: absolute;
	left: 0;
	top: 16px;
	bottom: 16px;
	width: 2px;
	background: var(--blue);
}

.cmp_hstat:last-child {
	border-right: none;
}

.cmp_hstat-n {
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--t1);
	margin-bottom: 6px;
	line-height: 1;
}

.cmp_hstat-n span {
	font-size: 12px;
	font-weight: 600;
	color: var(--blue);
}

.cmp_hstat-l {
	font-size: 12px;
	color: var(--t3);
	line-height: 1.45;
}

/* ─── BENEFITS - Zigzag ─────────────────────────────── */
.cmp_benefits-section {
	padding: 100px 0;
	background: var(--bg-deep);
}

.cmp_feature-block {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 50px;
	align-items: center;
	margin-bottom: 70px;
}

.cmp_feature-block:last-child {
	margin-bottom: 0;
}

.cmp_feature-block.cmp_reverse {
	direction: rtl;
}

.cmp_feature-block.cmp_reverse>* {
	direction: ltr;
}

.cmp_feature-content {
	padding: 10px 0;
}

.cmp_feature-icon {
	width: 48px;
	height: 48px;
	border-radius: 10px;
	background: var(--blue-faint);
	border: 1px solid rgba(0, 87, 156, 0.2);
	display: grid;
	place-items: center;
	margin-bottom: 16px;
}

.cmp_feature-icon svg {
	width: 24px;
	height: 24px;
	color: var(--blue);
}

.cmp_feature-title {
	font-size: 24px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--t1);
	margin-bottom: 12px;
}

.cmp_feature-desc {
	font-size: 15px;
	color: var(--t2);
	line-height: 1.7;
}

.cmp_feature-visual {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.cmp_feature-visual img {
	width: 100%;
	height: auto;
	display: block;
}

/* ─── COMPARE ──────────────────────────────────────────────── */
.cmp_compare-section {
	padding: 100px 0;
	background: var(--bg-dark);
}

.cmp_ctable {
	width: 100%;
	border-collapse: collapse;
	min-width: 700px;
}

.cmp_ctable th {
	padding: 12px 22px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--t3);
	text-align: left;
	border-bottom: 1px solid var(--border-neu);
}

.cmp_ctable th.cmp_col-z {
	background: var(--blue-faint);
	color: var(--blue);
}

.cmp_ctable td {
	padding: 13px 22px;
	font-size: 13.5px;
	color: var(--t2);
}

.cmp_ctable tr:hover td {
	background: rgba(0, 87, 156, 0.02);
}

.cmp_ctable tr:hover td.cmp_col-z {
	background: rgba(0, 87, 156, 0.08);
}

.cmp_ctable td.cmp_col-f {
	font-weight: 600;
	color: var(--t1);
}

.cmp_ctable td.cmp_col-z {
	background: var(--blue-faint);
	color: var(--t1);
	font-weight: 500;
}

.cmp_chk {
	color: var(--blue);
	font-weight: 700;
}

.cmp_crs {
	color: var(--t3);
}

/* ─── CASES - 3 Column Grid ─────────────────────────────── */
.cmp_cases-section {
	padding: 100px 0;
	background: var(--bg-deep);
}

.cmp_casgrid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.cmp_cc {
	background: var(--bg-card);
	border: 1px solid var(--border-neu);
	border-radius: 14px;
	padding: 34px 28px;
	display: flex;
	flex-direction: column;
	gap: 18px;
	box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.cmp_cc-org {
	display: flex;
	align-items: center;
	gap: 14px;
}

.cmp_cc-avatar {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	flex-shrink: 0;
	background: linear-gradient(135deg, var(--blue-faint), rgba(0, 137, 123, 0.1));
	display: grid;
	place-items: center;
	font-size: 20px;
}

.cmp_cc-name {
	font-size: 14px;
	font-weight: 700;
	color: var(--t1);
}

.cmp_cc-type {
	font-size: 12px;
	color: var(--t3);
}

.cmp_cc-divider {
	height: 1px;
	background: var(--border-neu);
}

.cmp_cc-quote {
	font-size: 13px;
	color: var(--t2);
	line-height: 1.65;
	font-style: italic;
	padding: 14px 16px;
	background: var(--bg-card2);
	border-left: 3px solid var(--blue);
	border-radius: 0 8px 8px 0;
}

.cmp_cc-desc {
	font-size: 12.5px;
	color: var(--t2);
	line-height: 1.65;
}

/* ─── CUSTOMER LOGOS ──────────────────────────────────────── */
.cmp_customers-section {
	padding: 36px 0;
	background: var(--bg-deep);
	border-top: 1px solid var(--border-neu);
	border-bottom: 1px solid var(--border-neu);
}

.cmp_customers-grid {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 36px;
	flex-wrap: wrap;
}

.cmp_customer-logo {
	font-size: 14px;
	font-weight: 700;
	color: var(--t3);
	opacity: 0.6;
	transition: opacity .2s;
}

.cmp_customer-logo:hover {
	opacity: 1;
}

/* ─── CTA ─────────────────────────────────────────────── */
.cmp_cta-section {
	padding: 100px 0;
	position: relative;
	overflow: hidden;
	background: var(--bg-dark);
}

.cmp_cta-section::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 65% 55% at 30% 50%, rgba(0, 87, 156, 0.06) 0%, transparent 70%),
		radial-gradient(ellipse 50% 50% at 72% 50%, rgba(230, 81, 0, 0.04) 0%, transparent 70%);
}

.cmp_cta-inner {
	position: relative;
	z-index: 1;
	max-width: 580px;
	margin: 0 auto;
	text-align: center;
	padding: 0 32px;
}

.cmp_cta-hl {
	font-size: clamp(32px, 5vw, 48px);
	font-weight: 900;
	letter-spacing: -0.04em;
	line-height: 1.1;
	margin-bottom: 14px;
}

.cmp_cta-hl em {
	font-style: normal;
	background: linear-gradient(125deg, var(--blue) 0%, #0277bd 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.cmp_cta-sub {
	font-size: 16px;
	color: var(--t2);
	margin-bottom: 32px;
}

.cmp_contact-form {
	text-align: left;
}

.cmp_form-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.cmp_form-input {
	width: 100%;
	padding: 12px 14px;
	font-size: 14px;
	border: 1px solid var(--border-neu);
	background: #fff;
	outline: none;
	font-family: var(--font);
	border-radius: 7px;
	transition: border-color .2s;
}

.cmp_form-input:focus {
	border-color: var(--blue);
}

.cmp_form-textarea {
	grid-column: 1 / -1;
	min-height: 80px;
	resize: vertical;
}

.cmp_form-submit {
	background: var(--blue);
	color: #fff;
	padding: 14px 24px;
	font-size: 15px;
	font-weight: 600;
	border: none;
	border-radius: 7px;
	cursor: pointer;
	transition: all .2s;
	width: 100%;
	margin-top: 6px;
}

.cmp_form-submit:hover {
	background: var(--blue-dim);
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 960px) {
	.cmp_casgrid {
		grid-template-columns: 1fr;
	}

	.cmp_feature-block {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.cmp_feature-block.cmp_reverse {
		direction: ltr;
	}

	.nav-links {
		display: none;
	}

	.cmp_hero-body {
		grid-template-columns: 1fr;
		gap: 40px;
		padding: 60px 32px;
	}

	.cmp_hero-content {
		text-align: center;
	}

	.cmp_hero-sub {
		margin: 0 auto 40px auto;
	}

	.cmp_hero-actions {
		justify-content: center;
	}
}

@media (max-width: 640px) {
	.cmp_hero-stats {
		flex-direction: column;
	}

	.cmp_hstat {
		border-right: none;
		border-bottom: 1px solid var(--border-neu);
	}

	.cmp_hstat::before {
		display: none;
	}

	.cmp_hstat:last-child {
		border-bottom: none;
	}

	.cmp_form-grid {
		grid-template-columns: 1fr;
	}

	.cmp_case-stats {
		grid-template-columns: 1fr;
	}
}

/* ═══════════ edge.html ═══════════ */
/* ─── Reset ────────────────────────────────────────────────── */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--bg-deep: #ffffff;
	--bg-dark: #f8fafc;
	--bg-card: #ffffff;
	--bg-card2: #f1f5f9;

	--blue: #00579c;
	--blue-dim: #004a85;
	--blue-glow: rgba(0, 87, 156, 0.22);
	--blue-faint: rgba(0, 87, 156, 0.08);
	--blue-light: rgba(0, 87, 156, 0.12);

	--orange: #e65100;
	--orange-dim: rgba(230, 81, 0, 0.12);

	--teal: #00897b;
	--teal-dim: rgba(0, 137, 123, 0.12);

	--green: #2e7d32;
	--red: #c62828;

	--border: rgba(0, 87, 156, 0.12);
	--border-hi: rgba(0, 87, 156, 0.22);
	--border-neu: rgba(148, 163, 184, 0.3);

	--t1: #0f172a;
	--t2: #475569;
	--t3: #94a3b8;

	--font: 'Inter', system-ui, sans-serif;
	--mono: 'JetBrains Mono', monospace;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font);
	background: var(--bg-deep);
	color: var(--t1);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

/* ─── Util ─────────────────────────────────────────────────── */
.wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 32px;
}

/* Label chip */
.edge_lbl {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	color: var(--blue);
	background: var(--blue-faint);
	border: 1px solid rgba(0, 87, 156, 0.22);
	border-radius: 100px;
	padding: 4px 14px;
}

/* Buttons */
.edge_btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font);
	font-weight: 600;
	letter-spacing: -0.01em;
	border-radius: 8px;
	border: none;
	cursor: pointer;
	transition: all .2s;
}

.edge_btn--lg {
	font-size: 16px;
	padding: 14px 28px;
}

.edge_btn--primary {
	background: var(--blue);
	color: #fff;
	box-shadow: 0 0 0 0 var(--blue-glow);
}

.edge_btn--primary:hover {
	background: var(--blue-dim);
	box-shadow: 0 0 28px 6px var(--blue-glow);
}

.edge_btn--ghost {
	background: transparent;
	color: var(--t2);
	border: 1px solid var(--border-neu);
}

.edge_btn--ghost:hover {
	background: rgba(0, 87, 156, 0.05);
	color: var(--t1);
	border-color: var(--blue);
}

/* Fade animation */
.edge_fade {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .6s ease, transform .6s ease;
}

.edge_fade.edge_in {
	opacity: 1;
	transform: none;
}

/* Section Header */
.edge_sec-hd {
	margin-bottom: 48px;
	text-align: center;
}

.edge_sec-hd .edge_lbl {
	margin-bottom: 18px;
}

.edge_h2 {
	font-size: clamp(32px, 4.5vw, 48px);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.15;
}

.edge_sec-sub {
	font-size: 17px;
	color: var(--t2);
	line-height: 1.7;
	margin-top: 14px;
	max-width: 580px;
}

.edge_h2 em {
	font-style: normal;
	background: linear-gradient(125deg, var(--blue) 0%, #0277bd 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* ─── HERO - Left Right Layout ─────────────────────── */
.edge_hero {
	min-height: 100vh;
	padding-top: 70px;
	/*display: flex;*/
	/*flex-direction: column;*/
	/*justify-content: center;*/
	position: relative;
	overflow: hidden;
}

.edge_hero-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 70% 55% at 50% 5%, rgba(0, 87, 156, 0.08) 0%, transparent 70%),
		radial-gradient(ellipse 50% 40% at 85% 75%, rgba(230, 81, 0, 0.04) 0%, transparent 65%);
}

.edge_hero-grid-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(var(--border) 1px, transparent 1px),
		linear-gradient(90deg, var(--border) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: radial-gradient(ellipse 80% 60% at 50% 25%, black 20%, transparent 75%);
	opacity: .55;
}

.edge_hero-body {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	padding: 0 32px 80px;
	max-width: 1200px;
	margin: 0 auto;
}

.edge_hero-content {
	text-align: left;
}

.edge_hero-status {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--blue);
	background: var(--blue-faint);
	border: 1px solid rgba(0, 87, 156, 0.24);
	border-radius: 100px;
	padding: 6px 16px;
	margin-bottom: 20px;
}

.edge_hero-title {
	font-size: clamp(44px, 5vw, 64px);
	font-weight: 900;
	letter-spacing: -0.04em;
	line-height: 1.02;
	margin: 0 auto 28px 0;
}

.edge_hero-title em {
	font-style: normal;
	background: linear-gradient(125deg, var(--blue) 0%, #0277bd 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.edge_hero-tagline {
	font-size: 21px;
	font-weight: 600;
	color: var(--blue);
	margin-bottom: 14px;
	letter-spacing: -0.02em;
}

.edge_hero-sub {
	font-size: clamp(16px, 1.8vw, 18px);
	color: var(--t2);
	line-height: 1.72;
	max-width: 520px;
	margin: 0 auto 40px 0;
}

.edge_hero-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 0;
}

.edge_hero-img {
	border-radius: 16px;
	overflow: visible;
	background: transparent;
	animation: heroFloat 3s ease-in-out infinite;
}

.edge_hero-img:hover {
	animation-play-state: paused;
	transform: scale(1.05);
}

.edge_hero-img img {
	width: 120%;
	height: auto;
	display: block;
	margin-left: -10%;
}

@keyframes heroFloat {

	0%,
	100% {
		transform: scale(1) translateY(0);
	}

	50% {
		transform: scale(1.03) translateY(-8px);
	}
}

/* Hero Stats - Source.edge_html style, centered below hero */
.edge_hero-stats-section {
	background: var(--bg-dark);
	border-top: 1px solid var(--border-neu);
	border-bottom: 1px solid var(--border-neu);
	padding: 64px 0;
}

.edge_hero-stats {
	display: flex;
	justify-content: center;
	max-width: 960px;
	margin: 0 auto;
	border: 1px solid var(--border-hi);
	border-radius: 14px;
	overflow: hidden;
	background: rgba(0, 87, 156, 0.03);
	backdrop-filter: blur(8px);
}

.edge_hstat {
	flex: 1;
	padding: 28px 30px;
	text-align: left;
	border-right: 1px solid var(--border-neu);
	position: relative;
}

.edge_hstat::before {
	content: '';
	position: absolute;
	left: 0;
	top: 16px;
	bottom: 16px;
	width: 2px;
	background: var(--blue);
}

.edge_hstat:last-child {
	border-right: none;
}

.edge_hstat-n {
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--t1);
	margin-bottom: 6px;
	line-height: 1;
}

.edge_hstat-n span {
	font-size: 12px;
	font-weight: 600;
	color: var(--blue);
}

.edge_hstat-l {
	font-size: 12px;
	color: var(--t3);
	line-height: 1.45;
}

/* ─── BENEFITS - Grid without images ─────────────────────── */
.edge_benefits-section {
	padding: 100px 0;
	background: var(--bg-deep);
}

.edge_feature-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
}

.edge_feature-card {
	background: var(--bg-card);
	border: 1px solid var(--border-neu);
	border-radius: 14px;
	padding: 36px 32px;
	transition: border-color .25s, box-shadow .25s, transform .25s;
}

.edge_feature-card:hover {
	border-color: var(--border-hi);
	box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.06);
	transform: translateY(-3px);
}

.edge_feature-icon {
	width: 48px;
	height: 48px;
	border-radius: 10px;
	background: var(--blue-faint);
	border: 1px solid rgba(0, 87, 156, 0.2);
	display: grid;
	place-items: center;
	margin-bottom: 16px;
}

.edge_feature-icon svg {
	width: 24px;
	height: 24px;
	color: var(--blue);
}

.edge_feature-title {
	font-size: 20px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--t1);
	margin-bottom: 12px;
}

.edge_feature-desc {
	font-size: 14px;
	color: var(--t2);
	line-height: 1.7;
}

/* ─── DELIVERY OPTIONS ─────────────────────────────────────── */
.edge_delivery-section {
	padding: 100px 0;
	background: var(--bg-dark);
}

.edge_delivery-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.edge_delivery-card {
	background: var(--bg-card);
	border: 1px solid var(--border-neu);
	border-radius: 12px;
	padding: 36px 32px;
	transition: border-color .25s, box-shadow .25s, transform .25s;
}

.edge_delivery-card:hover {
	border-color: var(--border-hi);
	box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.06);
	transform: translateY(-3px);
}

.edge_delivery-icon {
	width: 52px;
	height: 52px;
	border-radius: 10px;
	background: var(--blue-faint);
	border: 1px solid rgba(0, 87, 156, 0.2);
	display: grid;
	place-items: center;
	margin-bottom: 18px;
}

.edge_delivery-icon svg {
	width: 26px;
	height: 26px;
	color: var(--blue);
}

.edge_delivery-title {
	font-size: 20px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--t1);
	margin-bottom: 12px;
}

.edge_delivery-desc {
	font-size: 14px;
	color: var(--t2);
	line-height: 1.7;
}

/* ─── SCENARIOS V3 ─────────────────────────────────────────── */
.edge_uc-section {
	padding: 100px 0;
	background: var(--bg-deep);
}

.edge_ucgrid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.edge_uc {
	background: var(--bg-card);
	border: 1px solid var(--border-neu);
	border-radius: 12px;
	padding: 32px 26px;
	transition: border-color .25s, box-shadow .25s, transform .25s;
	box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.edge_uc:hover {
	border-color: var(--border-hi);
	box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.06);
	transform: translateY(-3px);
}

.edge_uc-num {
	font-family: var(--mono);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--t3);
	margin-bottom: 10px;
}

.edge_uc-title {
	font-size: 17px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--t1);
	margin-bottom: 10px;
}

.edge_uc-desc {
	font-size: 13px;
	color: var(--t2);
	line-height: 1.6;
}

/* ─── CASE STUDY ───────────────────────────────────────────── */
.edge_case-section {
	padding: 100px 0;
	background: var(--bg-dark);
}

.edge_case-card {
	background: var(--bg-card);
	border: 1px solid var(--border-neu);
	border-radius: 16px;
	padding: 48px;
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 48px;
	align-items: center;
}

.edge_case-content .edge_lbl {
	margin-bottom: 18px;
}

.edge_case-title {
	font-size: 28px;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--t1);
	margin-bottom: 14px;
}

.edge_case-desc {
	font-size: 15px;
	color: var(--t2);
	line-height: 1.7;
	margin-bottom: 28px;
}

.edge_case-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.edge_case-stat {
	background: var(--bg-card2);
	border-radius: 10px;
	padding: 18px 20px;
}

.edge_case-stat-n {
	font-size: 22px;
	font-weight: 800;
	color: var(--blue);
	letter-spacing: -0.02em;
}

.edge_case-stat-l {
	font-size: 12px;
	color: var(--t2);
	margin-top: 4px;
	line-height: 1.5;
}

.edge_case-visual {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.edge_case-visual img {
	width: 100%;
	height: auto;
	display: block;
}

/* ─── CUSTOMER LOGOS ──────────────────────────────────────── */
.edge_customers-section {
	padding: 36px 0;
	background: var(--bg-deep);
	border-top: 1px solid var(--border-neu);
	border-bottom: 1px solid var(--border-neu);
}

.edge_customers-grid {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 36px;
	flex-wrap: wrap;
}

.edge_customer-logo {
	font-size: 14px;
	font-weight: 700;
	color: var(--t3);
	opacity: 0.6;
	transition: opacity .2s;
}

.edge_customer-logo:hover {
	opacity: 1;
}

/* ─── CTA V3 ─────────────────────────────────────────────── */
.edge_cta-section {
	padding: 100px 0;
	position: relative;
	overflow: hidden;
	background: var(--bg-dark);
}

.edge_cta-section::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 65% 55% at 30% 50%, rgba(0, 87, 156, 0.06) 0%, transparent 70%),
		radial-gradient(ellipse 50% 50% at 72% 50%, rgba(230, 81, 0, 0.04) 0%, transparent 70%);
}

.edge_cta-inner {
	position: relative;
	z-index: 1;
	max-width: 580px;
	margin: 0 auto;
	text-align: center;
	padding: 0 32px;
}

.edge_cta-hl {
	font-size: clamp(32px, 5vw, 48px);
	font-weight: 900;
	letter-spacing: -0.04em;
	line-height: 1.1;
	margin-bottom: 14px;
}

.edge_cta-hl em {
	font-style: normal;
	background: linear-gradient(125deg, var(--blue) 0%, #0277bd 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.edge_cta-sub {
	font-size: 16px;
	color: var(--t2);
	margin-bottom: 32px;
}

.edge_contact-form {
	text-align: left;
}

.edge_form-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.edge_form-input {
	width: 100%;
	padding: 12px 14px;
	font-size: 14px;
	border: 1px solid var(--border-neu);
	background: #fff;
	outline: none;
	font-family: var(--font);
	border-radius: 7px;
	transition: border-color .2s;
}

.edge_form-input:focus {
	border-color: var(--blue);
}

.edge_form-textarea {
	grid-column: 1 / -1;
	min-height: 80px;
	resize: vertical;
}

.edge_form-submit {
	background: var(--blue);
	color: #fff;
	padding: 14px 24px;
	font-size: 15px;
	font-weight: 600;
	border: none;
	border-radius: 7px;
	cursor: pointer;
	transition: all .2s;
	width: 100%;
	margin-top: 6px;
}

.edge_form-submit:hover {
	background: var(--blue-dim);
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 960px) {
	.edge_feature-grid {
		grid-template-columns: 1fr;
	}

	.edge_ucgrid {
		grid-template-columns: 1fr;
	}

	.edge_delivery-grid {
		grid-template-columns: 1fr;
	}

	.edge_case-card {
		grid-template-columns: 1fr;
	}

	.nav-links {
		display: none;
	}

	.edge_hero-body {
		grid-template-columns: 1fr;
		gap: 40px;
		padding: 60px 32px;
	}

	.edge_hero-content {
		text-align: center;
	}

	.edge_hero-sub {
		margin: 0 auto 40px auto;
	}

	.edge_hero-actions {
		justify-content: center;
	}
}

@media (max-width: 640px) {
	.edge_hero-stats {
		flex-direction: column;
	}

	.edge_hstat {
		border-right: none;
		border-bottom: 1px solid var(--border-neu);
	}

	.edge_hstat::before {
		display: none;
	}

	.edge_hstat:last-child {
		border-bottom: none;
	}

	.edge_form-grid {
		grid-template-columns: 1fr;
	}

	.edge_case-stats {
		grid-template-columns: 1fr;
	}
}

/* ═══════════ news.html ═══════════ */
/* ========== Variables (design.news_md) ========== */
:root {
	--font: 'Inter', system-ui, sans-serif;
	--mono: 'JetBrains Mono', monospace;
	--bg: #ffffff;
	--bg-alt: #f8fafc;
	--bg-card: #ffffff;
	--blue: #00579c;
	--blue-dim: #004a85;
	--blue-deep: #003a6e;
	--blue-glow: rgba(0, 87, 156, 0.22);
	--blue-faint: rgba(0, 87, 156, 0.07);
	--blue-mid: rgba(0, 87, 156, 0.14);
	--orange: #e65100;
	--orange-dim: rgba(230, 81, 0, 0.10);
	--teal: #00897b;
	--teal-dim: rgba(0, 137, 123, 0.10);
	--green: #2e7d32;
	--border: rgba(148, 163, 184, 0.28);
	--border-hi: rgba(0, 87, 156, 0.20);
	--t1: #0f172a;
	--t2: #475569;
	--t3: #94a3b8;
	--radius: 14px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font);
	background: var(--bg);
	color: var(--t1);
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input {
	font-family: inherit;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 32px;
}

.wide {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 32px;
}

/* ── Fade ── */
.news_fade {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .6s ease, transform .6s ease;
}

.news_fade.news_in {
	opacity: 1;
	transform: none;
}

/* ══════════════════════════════════════════
   HERO (deep blue bg)
══════════════════════════════════════════ */
.news_hero {
	padding: 56px 0 100px;
	position: relative;
	overflow: hidden;
	background: linear-gradient(150deg, #001d3d 0%, var(--blue-deep) 45%, #005b9f 100%);
}

.news_hero-grid {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: radial-gradient(ellipse 80% 60% at 30% 40%, black 30%, transparent 70%);
}

.news_hero-glow {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 55% 45% at 20% 60%, rgba(255, 255, 255, 0.08) 0%, transparent 65%),
		radial-gradient(ellipse 50% 40% at 80% 40%, rgba(230, 81, 0, 0.06) 0%, transparent 65%);
}

.news_hero-inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 0.9fr;
	gap: 64px;
	align-items: center;
}

.news_hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.85);
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 100px;
	padding: 6px 16px;
	margin-bottom: 24px;
}

.news_hero-badge-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--orange);
	animation: pulse 2s infinite;
}

@keyframes pulse {

	0%,
	100% {
		opacity: 1;
		transform: scale(1)
	}

	50% {
		opacity: .6;
		transform: scale(1.35)
	}
}

.news_hero h1 {
	font-size: clamp(36px, 4.6vw, 56px);
	font-weight: 900;
	letter-spacing: -0.035em;
	line-height: 1.08;
	margin-bottom: 16px;
	max-width: 600px;
	color: #fff;
}

.news_hero-desc {
	font-size: 18px;
	line-height: 1.72;
	color: rgba(255, 255, 255, 0.72);
	max-width: 480px;
}

/* Search — separate rounded boxes with gap */
.news_search-row {
	display: flex;
	gap: 12px;
	align-items: center;
}

.news_search-field-wrap {
	position: relative;
	flex: 1;
}

.news_search-field-wrap input {
	width: 100%;
	padding: 14px 16px 14px 44px;
	background: rgba(255, 255, 255, 0.08);
	border: 1.5px solid rgba(255, 255, 255, 0.22);
	border-radius: 10px;
	font-size: 15px;
	color: #fff;
	outline: none;
	transition: all .2s;
}

.news_search-field-wrap input:focus {
	border-color: rgba(255, 255, 255, 0.45);
	background: rgba(255, 255, 255, 0.12);
}

.news_search-field-wrap input::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.news_search-icon-inline {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	color: rgba(255, 255, 255, 0.45);
	width: 18px;
	height: 18px;
	pointer-events: none;
}

.news_search-btn-inline {
	padding: 14px 28px;
	background: var(--blue);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	border: none;
	border-radius: 10px;
	cursor: pointer;
	transition: all .2s;
	font-family: var(--font);
	border: 1.5px solid rgba(255, 255, 255, 0.22);
	line-height: 1.2;
	white-space: nowrap;
}

.news_search-btn-inline:hover {
	background: var(--blue-dim);
	box-shadow: 0 0 20px 4px var(--blue-glow);
}

.news_popular {
	margin-top: 20px;
}

.news_popular-label {
	font-size: 12px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 10px;
	letter-spacing: 0.04em;
}

.news_popular-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.news_popular-chip {
	padding: 5px 12px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 100px;
	font-size: 12px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.9);
	cursor: pointer;
	transition: all .15s;
	font-family: var(--font);
}

.news_popular-chip:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.3);
	color: #fff;
}

/* ══════════════════════════════════════════
   FEATURED
══════════════════════════════════════════ */
.news_featured {
	/*margin-top: -60px;*/
	position: relative;
	z-index: 5;
	padding-bottom: 20px;
}

.news_featured-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.news_featured-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
}

.news_featured-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 48px -10px rgba(0, 87, 156, 0.13);
	border-color: var(--border-hi);
}

.news_featured-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--blue), #0277bd);
	z-index: 1;
}

.news_featured-card:nth-child(2)::before {
	background: linear-gradient(90deg, var(--teal), var(--blue));
}

.news_featured-card:nth-child(3)::before {
	background: linear-gradient(90deg, var(--orange), #ff8a65);
}

.news_f-thumb {
	height: 150px;
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, var(--blue-deep) 0%, #1a2744 100%);
}

.news_f-thumb.news_g2 {
	background: linear-gradient(135deg, #00897b 0%, var(--blue-deep) 100%);
}

.news_f-thumb.news_g3 {
	background: linear-gradient(135deg, #bf360c 0%, var(--orange) 50%, #ff6d00 100%);
}

.news_f-thumb::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
	background-size: 24px 24px;
}

.news_f-thumb-num {
	position: absolute;
	right: 20px;
	bottom: 16px;
	color: rgba(255, 255, 255, 0.75);
	font-size: 40px;
	font-weight: 800;
	font-family: var(--mono);
	letter-spacing: -0.04em;
}

.news_f-body {
	padding: 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.news_f-tag {
	display: inline-flex;
	align-self: flex-start;
	padding: 3px 10px;
	border-radius: 4px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-family: var(--mono);
	margin-bottom: 14px;
}

.news_f-tag.news_company {
	color: var(--blue);
	background: var(--blue-faint);
	border: 1px solid var(--border-hi);
}

.news_f-tag.news_product {
	color: var(--teal);
	background: var(--teal-dim);
	border: 1px solid rgba(0, 137, 123, 0.25);
}

.news_f-tag.news_analyst {
	color: var(--orange);
	background: var(--orange-dim);
	border: 1px solid rgba(230, 81, 0, 0.25);
}

.news_f-card h3 {
	font-size: 19px;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.3;
	color: var(--t1);
	margin-bottom: 10px;
}

.news_f-card p {
	font-size: 14px;
	color: var(--t2);
	line-height: 1.6;
	margin-bottom: auto;
}

.news_f-meta {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 18px;
	padding-top: 16px;
	border-top: 1px solid var(--border);
	font-size: 13px;
	color: var(--t3);
}

.news_f-arrow {
	margin-left: auto;
	color: var(--blue);
	font-weight: 600;
	font-size: 18px;
	transition: transform .2s;
}

.news_featured-card:hover .news_f-arrow {
	transform: translateX(4px);
}

/* ══════════════════════════════════════════
   LIBRARY
══════════════════════════════════════════ */
.news_section {
	padding: 80px 0;
}

.news_sec-head {
	margin-bottom: 36px;
}

.news_sec-head .news_lbl {
	margin-bottom: 12px;
}

.news_lbl {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	color: var(--blue);
	background: var(--blue-faint);
	border: 1px solid var(--border-hi);
	border-radius: 100px;
	padding: 4px 14px;
	font-family: var(--font);
}

.news_lbl--orange {
	color: var(--orange);
	background: var(--orange-dim);
	border-color: rgba(230, 81, 0, 0.25);
}

.news_lbl--teal {
	color: var(--teal);
	background: var(--teal-dim);
	border-color: rgba(0, 137, 123, 0.25);
}

.news_library {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 44px;
	align-items: flex-start;
}

.news_filters {
	position: sticky;
	top: 92px;
}

.news_filter-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--border);
}

.news_filter-head h3 {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--t1);
	font-family: var(--mono);
}

.news_clear-filters {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 12px;
	background: transparent;
	border: 1.5px solid var(--border);
	border-radius: 100px;
	font-size: 12px;
	font-weight: 600;
	color: var(--t3);
	cursor: pointer;
	transition: all .2s;
	font-family: var(--font);
}

.news_clear-filters:hover {
	border-color: var(--blue);
	color: var(--blue);
	background: var(--blue-faint);
}

.news_clear-filters svg {
	width: 13px;
	height: 13px;
}

.news_filter-group {
	margin-bottom: 26px;
}

.news_filter-label {
	font-size: 11px;
	font-weight: 700;
	color: var(--t3);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 10px;
	font-family: var(--mono);
}

.news_filter-opt {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 6px 0;
	cursor: pointer;
	font-size: 14px;
	color: var(--t2);
	transition: color .15s;
	user-select: none;
}

.news_filter-opt:hover {
	color: var(--blue);
}

.news_filter-opt input[type="checkbox"] {
	appearance: none;
	-webkit-appearance: none;
	width: 16px;
	height: 16px;
	border: 1.5px solid var(--border);
	border-radius: 4px;
	cursor: pointer;
	transition: all .15s;
	position: relative;
	flex-shrink: 0;
}

.news_filter-opt input[type="checkbox"]:checked {
	background: var(--blue);
	border-color: var(--blue);
}

.news_filter-opt input[type="checkbox"]:checked::after {
	content: '';
	position: absolute;
	left: 4px;
	top: 1px;
	width: 5px;
	height: 9px;
	border: solid white;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.news_filter-opt .news_txt {
	flex: 1;
}

.news_filter-opt input:checked~.news_txt {
	color: var(--blue);
	font-weight: 500;
}

.news_grid-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
}

.news_grid-count {
	font-size: 15px;
	color: var(--t2);
}

.news_grid-count strong {
	color: var(--t1);
	font-weight: 600;
}

.news_sort {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: var(--t2);
}

.news_sort select {
	padding: 8px 30px 8px 12px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: white;
	font-size: 14px;
	font-weight: 500;
	color: var(--t1);
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.news_w3.news_org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 10px center;
}

/* Cards */
.news_cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.news_card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	transition: all .25s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
	cursor: pointer;
}

.news_card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 48px -10px rgba(0, 87, 156, 0.13);
	border-color: var(--border-hi);
}

.news_c-thumb {
	aspect-ratio: 16/9;
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 60%, #1a2744 100%);
	background-size: 100% auto !important;
}

.news_c-thumb.news_g1 {
	background: linear-gradient(135deg, #7c3aed 0%, #4c1d95 100%);
}

.news_c-thumb.news_g2 {
	background: linear-gradient(135deg, #059669 0%, #064e3b 100%);
}

.news_c-thumb.news_g3 {
	background: linear-gradient(135deg, #db2777 0%, #831843 100%);
}

.news_c-thumb.news_g4 {
	background: linear-gradient(135deg, #4f46e5 0%, #312e81 100%);
}

.news_c-thumb.news_g5 {
	background: linear-gradient(135deg, #d97706 0%, #78350f 100%);
}

.news_c-thumb.news_g6 {
	background: linear-gradient(135deg, #0891b2 0%, #164e63 100%);
}

.news_c-thumb.news_g7 {
	background: linear-gradient(135deg, #dc2626 0%, #7f1d1d 100%);
}

.news_c-thumb.news_g8 {
	background: linear-gradient(135deg, var(--blue) 0%, #1e3a8a 100%);
}

.news_c-thumb.news_g9 {
	background: linear-gradient(135deg, var(--orange) 0%, #7c2d12 100%);
}

.news_c-thumb.news_g10 {
	background: linear-gradient(135deg, #475569 0%, #1e293b 100%);
}

.news_c-thumb::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
	background-size: 20px 20px;
}

.news_c-thumb-label {
	position: absolute;
	left: 16px;
	bottom: 14px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 12px;
	font-family: var(--mono);
	font-weight: 500;
}

.news_c-thumb-num {
	position: absolute;
	right: 16px;
	bottom: 12px;
	color: rgba(255, 255, 255, 0.85);
	font-size: 28px;
	font-weight: 800;
	font-family: var(--mono);
}

.news_c-body {
	padding: 18px 20px 20px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.news_c-tag {
	display: inline-flex;
	align-self: flex-start;
	padding: 3px 10px;
	border-radius: 4px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-family: var(--mono);
	margin-bottom: 12px;
}

.news_c-tag.news_company {
	color: var(--blue);
	background: var(--blue-faint);
	border: 1px solid var(--border-hi);
}

.news_c-tag.news_product {
	color: var(--teal);
	background: var(--teal-dim);
	border: 1px solid rgba(0, 137, 123, 0.25);
}

.news_c-tag.news_analyst {
	color: var(--orange);
	background: var(--orange-dim);
	border: 1px solid rgba(230, 81, 0, 0.25);
}

.news_c-tag.news_case {
	color: var(--teal);
	background: var(--teal-dim);
	border: 1px solid rgba(0, 137, 123, 0.25);
}

.news_c-tag.news_partnership {
	color: var(--blue);
	background: var(--blue-faint);
	border: 1px solid var(--border-hi);
}

.news_c-tag.news_event {
	color: var(--orange);
	background: var(--orange-dim);
	border: 1px solid rgba(230, 81, 0, 0.25);
}

.news_card h4 {
	font-size: 16px;
	font-weight: 700;
	color: var(--t1);
	letter-spacing: -0.015em;
	line-height: 1.35;
	margin-bottom: 8px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.news_card p {
	font-size: 13.5px;
	color: var(--t2);
	line-height: 1.5;
	margin-bottom: 14px;
	flex: 1;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.news_c-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 12px;
	border-top: 1px solid var(--border);
	font-size: 12.5px;
	color: var(--t3);
}

.news_load-more-wrap {
	display: flex;
	justify-content: center;
	margin-top: 44px;
}

.news_load-more {
	padding: 14px 32px;
	border: 1.5px solid var(--border);
	background: white;
	border-radius: var(--radius);
	font-size: 14px;
	font-weight: 600;
	color: var(--t1);
	transition: all .2s;
	cursor: pointer;
	font-family: var(--font);
}

.news_load-more:hover {
	border-color: var(--blue);
	color: var(--blue);
}

.news_empty-state {
	grid-column: 1 / -1;
	text-align: center;
	padding: 64px 20px;
	color: var(--t3);
}

.news_empty-state h4 {
	font-size: 18px;
	color: var(--t1);
	margin-bottom: 8px;
	font-weight: 600;
}

/* ══════════════════════════════════════════
   NEWSLETTER (CTA style)
══════════════════════════════════════════ */
.news_newsletter {
	background: linear-gradient(150deg, #001d3d 0%, var(--blue-deep) 45%, #005b9f 100%);
	color: white;
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}

.news_newsletter::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 20% 30%, rgba(0, 87, 156, 0.20), transparent 50%), radial-gradient(circle at 80% 70%, rgba(0, 137, 123, 0.15), transparent 50%);
}

.news_newsletter-inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}

.news_newsletter h2 {
	font-size: 36px;
	letter-spacing: -0.025em;
	line-height: 1.15;
	font-weight: 800;
	margin-bottom: 12px;
}

.news_newsletter p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 16px;
}

.news_newsletter-form {
	display: flex;
	gap: 12px;
	margin-bottom: 16px;
}

.news_newsletter-form input {
	flex: 1;
	padding: 16px 20px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--radius);
	color: white;
	font-size: 15px;
	outline: none;
	transition: all .2s;
}

.news_newsletter-form input::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

.news_newsletter-form input:focus {
	background: rgba(255, 255, 255, 0.12);
	border-color: var(--blue);
}

.news_newsletter-form button {
	padding: 16px 28px;
	background: var(--blue);
	color: white;
	border-radius: var(--radius);
	font-weight: 700;
	font-size: 15px;
	transition: all .2s;
	cursor: pointer;
	border: none;
	font-family: var(--font);
}

.news_newsletter-form button:hover {
	background: var(--blue-dim);
	box-shadow: 0 0 28px 8px var(--blue-glow);
}

.news_newsletter-note {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.5);
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width:1300px) {
	.news_hero h1 {
		white-space: normal;
	}
}

@media (max-width:1024px) {
	.news_hero-inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.news_featured-grid {
		grid-template-columns: 1fr;
	}

	.news_library {
		grid-template-columns: 1fr;
	}

	.news_filters {
		position: static;
	}

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

	.news_newsletter-inner {
		grid-template-columns: 1fr;
	}

	.ft-top {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width:960px) {
	.nav-links {
		display: none;
	}

	.ft-top {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width:640px) {

	.container,
	.wide {
		padding: 0 20px;
	}

	.news_hero {
		padding: 120px 0 60px;
	}

	.news_cards {
		grid-template-columns: 1fr;
	}

	.ft-top {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.ft-bottom {
		flex-direction: column;
		gap: 12px;
	}
}

/* ═══════════ rds.html ═══════════ */
/* ─── Reset ────────────────────────────────────────────────── */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--bg-deep: #ffffff;
	--bg-dark: #f8fafc;
	--bg-card: #ffffff;
	--bg-card2: #f1f5f9;

	--blue: #00579c;
	--blue-dim: #004a85;
	--blue-glow: rgba(0, 87, 156, 0.22);
	--blue-faint: rgba(0, 87, 156, 0.08);
	--blue-light: rgba(0, 87, 156, 0.12);

	--orange: #e65100;
	--orange-dim: rgba(230, 81, 0, 0.12);

	--teal: #00897b;
	--teal-dim: rgba(0, 137, 123, 0.12);

	--green: #2e7d32;
	--red: #c62828;

	--border: rgba(0, 87, 156, 0.12);
	--border-hi: rgba(0, 87, 156, 0.22);
	--border-neu: rgba(148, 163, 184, 0.3);

	--t1: #0f172a;
	--t2: #475569;
	--t3: #94a3b8;

	--font: 'Inter', system-ui, sans-serif;
	--mono: 'JetBrains Mono', monospace;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font);
	background: var(--bg-deep);
	color: var(--t1);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

/* ─── Util ─────────────────────────────────────────────────── */
.wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 32px;
}

/* Label chip */
.rds_lbl {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	color: var(--blue);
	background: var(--blue-faint);
	border: 1px solid rgba(0, 87, 156, 0.22);
	border-radius: 100px;
	padding: 4px 14px;
}

/* Buttons */
.rds_btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font);
	font-weight: 600;
	letter-spacing: -0.01em;
	border-radius: 8px;
	border: none;
	cursor: pointer;
	transition: all .2s;
}

.rds_btn--lg {
	font-size: 16px;
	padding: 14px 28px;
}

.rds_btn--primary {
	background: var(--blue);
	color: #fff;
	box-shadow: 0 0 0 0 var(--blue-glow);
}

.rds_btn--primary:hover {
	background: var(--blue-dim);
	box-shadow: 0 0 28px 6px var(--blue-glow);
}

.rds_btn--ghost {
	background: transparent;
	color: var(--t2);
	border: 1px solid var(--border-neu);
}

.rds_btn--ghost:hover {
	background: rgba(0, 87, 156, 0.05);
	color: var(--t1);
	border-color: var(--blue);
}

/* Fade animation */
.rds_fade {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .6s ease, transform .6s ease;
}

.rds_fade.rds_in {
	opacity: 1;
	transform: none;
}

/* Section Header */
.rds_sec-hd {
	margin-bottom: 48px;
	text-align: center;
}

.rds_sec-hd .rds_lbl {
	margin-bottom: 18px;
}

.rds_h2 {
	font-size: clamp(32px, 4.5vw, 48px);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.15;
}

.rds_sec-sub {
	font-size: 17px;
	color: var(--t2);
	line-height: 1.7;
	margin-top: 14px;
	max-width: 580px;
}

.rds_h2 em {
	font-style: normal;
	background: linear-gradient(125deg, var(--blue) 0%, #0277bd 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* ─── HERO - Left Right Layout ─────────────────────── */
.rds_hero {
	min-height: 100vh;
	padding-top: 70px;
	/*display: flex;*/
	/*flex-direction: column;*/
	/*justify-content: center;*/
	position: relative;
	overflow: hidden;
}

.rds_hero-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 70% 55% at 50% 5%, rgba(0, 87, 156, 0.08) 0%, transparent 70%),
		radial-gradient(ellipse 50% 40% at 85% 75%, rgba(230, 81, 0, 0.04) 0%, transparent 65%);
}

.rds_hero-grid-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(var(--border) 1px, transparent 1px),
		linear-gradient(90deg, var(--border) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: radial-gradient(ellipse 80% 60% at 50% 25%, black 20%, transparent 75%);
	opacity: .55;
}

.rds_hero-body {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	padding: 0 32px 80px;
	max-width: 1200px;
	margin: 0 auto;
}

.rds_hero-content {
	text-align: left;
}

.rds_hero-status {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--blue);
	background: var(--blue-faint);
	border: 1px solid rgba(0, 87, 156, 0.24);
	border-radius: 100px;
	padding: 6px 16px;
	margin-bottom: 20px;
}

.rds_hero-title {
	font-size: clamp(44px, 5vw, 64px);
	font-weight: 900;
	letter-spacing: -0.04em;
	line-height: 1.02;
	margin: 0 auto 28px 0;
}

.rds_hero-title em {
	font-style: normal;
	background: linear-gradient(125deg, var(--blue) 0%, #0277bd 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.rds_hero-tagline {
	font-size: 21px;
	font-weight: 600;
	color: var(--blue);
	margin-bottom: 14px;
	letter-spacing: -0.02em;
}

.rds_hero-sub {
	font-size: clamp(16px, 1.8vw, 18px);
	color: var(--t2);
	line-height: 1.72;
	max-width: 520px;
	margin: 0 auto 40px 0;
}

.rds_hero-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 0;
}

.rds_hero-img {
	border-radius: 16px;
	overflow: visible;
	background: transparent;
	animation: heroFloat 3s ease-in-out infinite;
}

.rds_hero-img:hover {
	animation-play-state: paused;
	transform: scale(1.05);
}

.rds_hero-img img {
	width: 120%;
	height: auto;
	display: block;
	margin-left: -10%;
}

@keyframes heroFloat {

	0%,
	100% {
		transform: scale(1) translateY(0);
	}

	50% {
		transform: scale(1.03) translateY(-8px);
	}
}

/* Hero Stats - Source.rds_html style, centered below hero */
.rds_hero-stats-section {
	background: var(--bg-dark);
	border-top: 1px solid var(--border-neu);
	border-bottom: 1px solid var(--border-neu);
	padding: 64px 0;
}

.rds_hero-stats {
	display: flex;
	justify-content: center;
	max-width: 960px;
	margin: 0 auto;
	border: 1px solid var(--border-hi);
	border-radius: 14px;
	overflow: hidden;
	background: rgba(0, 87, 156, 0.03);
	backdrop-filter: blur(8px);
}

.rds_hstat {
	flex: 1;
	padding: 28px 30px;
	text-align: left;
	border-right: 1px solid var(--border-neu);
	position: relative;
}

.rds_hstat::before {
	content: '';
	position: absolute;
	left: 0;
	top: 16px;
	bottom: 16px;
	width: 2px;
	background: var(--blue);
}

.rds_hstat:last-child {
	border-right: none;
}

.rds_hstat-n {
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--t1);
	margin-bottom: 6px;
	line-height: 1;
}

.rds_hstat-n span {
	font-size: 12px;
	font-weight: 600;
	color: var(--blue);
}

.rds_hstat-l {
	font-size: 12px;
	color: var(--t3);
	line-height: 1.45;
}

/* ─── FEATURES - Zigzag without images ─────────────────────── */
.rds_features-section {
	padding: 100px 0;
	background: var(--bg-deep);
}

.rds_feature-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
}

.rds_feature-card {
	background: var(--bg-card);
	border: 1px solid var(--border-neu);
	border-radius: 14px;
	padding: 36px 32px;
	transition: border-color .25s, box-shadow .25s, transform .25s;
}

.rds_feature-card:hover {
	border-color: var(--border-hi);
	box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.06);
	transform: translateY(-3px);
}

.rds_feature-icon {
	width: 48px;
	height: 48px;
	border-radius: 10px;
	background: var(--blue-faint);
	border: 1px solid rgba(0, 87, 156, 0.2);
	display: grid;
	place-items: center;
	margin-bottom: 16px;
}

.rds_feature-icon svg {
	width: 24px;
	height: 24px;
	color: var(--blue);
}

.rds_feature-title {
	font-size: 20px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--t1);
	margin-bottom: 12px;
}

.rds_feature-desc {
	font-size: 14px;
	color: var(--t2);
	line-height: 1.7;
}

.rds_feature-highlight {
	border: 1px solid var(--blue);
	position: relative;
}

.rds_feature-highlight::before {
	content: '';
	position: absolute;
	top: -1px;
	left: 32px;
	background: var(--blue);
	height: 3px;
	width: 60px;
	border-radius: 0 0 3px 3px;
}

.rds_feature-card-img {
	margin-top: 20px;
	border-radius: 10px;
	overflow: hidden;
}

.rds_feature-card-img img {
	width: 100%;
	height: auto;
	display: block;
}

/* ─── VALUE - 3 Column Cards ─────────────────────────── */
.rds_value-section {
	padding: 100px 0;
	background: var(--bg-dark);
}

.rds_value-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.rds_value-card {
	background: var(--bg-card);
	border: 1px solid var(--border-neu);
	border-radius: 14px;
	padding: 36px 28px;
	transition: border-color .25s, box-shadow .25s, transform .25s;
}

.rds_value-card:hover {
	border-color: var(--border-hi);
	box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.06);
	transform: translateY(-3px);
}

.rds_value-icon {
	width: 52px;
	height: 52px;
	border-radius: 10px;
	background: var(--blue-faint);
	border: 1px solid rgba(0, 87, 156, 0.2);
	display: grid;
	place-items: center;
	margin-bottom: 18px;
}

.rds_value-icon svg {
	width: 26px;
	height: 26px;
	color: var(--blue);
}

.rds_value-title {
	font-size: 18px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--t1);
	margin-bottom: 12px;
}

.rds_value-desc {
	font-size: 13.5px;
	color: var(--t2);
	line-height: 1.7;
}

/* ─── SCENARIOS ─────────────────────────────────────────── */
.rds_uc-section {
	padding: 100px 0;
	background: var(--bg-deep);
}

.rds_ucgrid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.rds_uc {
	background: var(--bg-card);
	border: 1px solid var(--border-neu);
	border-radius: 12px;
	padding: 32px 26px;
	transition: border-color .25s, box-shadow .25s, transform .25s;
	box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.rds_uc:hover {
	border-color: var(--border-hi);
	box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.06);
	transform: translateY(-3px);
}

.rds_uc-num {
	font-family: var(--mono);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--t3);
	margin-bottom: 10px;
}

.rds_uc-title {
	font-size: 17px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--t1);
	margin-bottom: 10px;
}

.rds_uc-desc {
	font-size: 13px;
	color: var(--t2);
	line-height: 1.6;
}

/* ─── COMPARE ──────────────────────────────────────────────── */
.rds_compare-section {
	padding: 100px 0;
	background: var(--bg-dark);
}

.rds_ctable {
	width: 100%;
	border-collapse: collapse;
	min-width: 600px;
}

.rds_ctable th {
	padding: 14px 20px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--t3);
	text-align: left;
	border-bottom: 1px solid var(--border-neu);
	background: var(--bg-card);
}

.rds_ctable th.rds_col-z {
	background: var(--blue-faint);
	color: var(--blue);
}

.rds_ctable td {
	padding: 14px 20px;
	font-size: 13.5px;
	color: var(--t2);
	border-bottom: 1px solid var(--border);
}

.rds_ctable tr:hover td {
	background: rgba(0, 87, 156, 0.02);
}

.rds_ctable tr:hover td.rds_col-z {
	background: rgba(0, 87, 156, 0.08);
}

.rds_ctable td.rds_col-f {
	font-weight: 600;
	color: var(--t1);
}

.rds_ctable td.rds_col-z {
	background: var(--blue-faint);
	color: var(--t1);
	font-weight: 500;
}

.rds_chk {
	color: var(--blue);
	font-weight: 700;
}

.rds_crs {
	color: var(--t3);
}

/* ─── CUSTOMER LOGOS ──────────────────────────────────────── */
.rds_customers-section {
	padding: 36px 0;
	background: var(--bg-deep);
	border-top: 1px solid var(--border-neu);
	border-bottom: 1px solid var(--border-neu);
}

.rds_customers-grid {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 36px;
	flex-wrap: wrap;
}

.rds_customer-logo {
	font-size: 14px;
	font-weight: 700;
	color: var(--t3);
	opacity: 0.6;
	transition: opacity .2s;
}

.rds_customer-logo:hover {
	opacity: 1;
}

/* ─── CTA ─────────────────────────────────────────────── */
.rds_cta-section {
	padding: 100px 0;
	position: relative;
	overflow: hidden;
	background: var(--bg-dark);
}

.rds_cta-section::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 65% 55% at 30% 50%, rgba(0, 87, 156, 0.06) 0%, transparent 70%),
		radial-gradient(ellipse 50% 50% at 72% 50%, rgba(230, 81, 0, 0.04) 0%, transparent 70%);
}

.rds_cta-inner {
	position: relative;
	z-index: 1;
	max-width: 580px;
	margin: 0 auto;
	text-align: center;
	padding: 0 32px;
}

.rds_cta-hl {
	font-size: clamp(32px, 5vw, 48px);
	font-weight: 900;
	letter-spacing: -0.04em;
	line-height: 1.1;
	margin-bottom: 14px;
}

.rds_cta-hl em {
	font-style: normal;
	background: linear-gradient(125deg, var(--blue) 0%, #0277bd 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.rds_cta-sub {
	font-size: 16px;
	color: var(--t2);
	margin-bottom: 32px;
}

.rds_contact-form {
	text-align: left;
}

.rds_form-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.rds_form-input {
	width: 100%;
	padding: 12px 14px;
	font-size: 14px;
	border: 1px solid var(--border-neu);
	background: #fff;
	outline: none;
	font-family: var(--font);
	border-radius: 7px;
	transition: border-color .2s;
}

.rds_form-input:focus {
	border-color: var(--blue);
}

.rds_form-textarea {
	grid-column: 1 / -1;
	min-height: 80px;
	resize: vertical;
}

.rds_form-submit {
	background: var(--blue);
	color: #fff;
	padding: 14px 24px;
	font-size: 15px;
	font-weight: 600;
	border: none;
	border-radius: 7px;
	cursor: pointer;
	transition: all .2s;
	width: 100%;
	margin-top: 6px;
}

.rds_form-submit:hover {
	background: var(--blue-dim);
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 960px) {
	.rds_feature-grid {
		grid-template-columns: 1fr;
	}

	.rds_value-grid {
		grid-template-columns: 1fr;
	}

	.rds_ucgrid {
		grid-template-columns: 1fr;
	}

	.nav-links {
		display: none;
	}

	.rds_hero-body {
		grid-template-columns: 1fr;
		gap: 40px;
		padding: 60px 32px;
	}

	.rds_hero-content {
		text-align: center;
	}

	.rds_hero-sub {
		margin: 0 auto 40px auto;
	}

	.rds_hero-actions {
		justify-content: center;
	}
}

@media (max-width: 640px) {
	.rds_hero-stats {
		flex-direction: column;
	}

	.rds_hstat {
		border-right: none;
		border-bottom: 1px solid var(--border-neu);
	}

	.rds_hstat::before {
		display: none;
	}

	.rds_hstat:last-child {
		border-bottom: none;
	}

	.rds_form-grid {
		grid-template-columns: 1fr;
	}
}

/* ═══════════ zaku.html ═══════════ */
/* ─── Reset ────────────────────────────────────────────────── */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--bg-deep: #ffffff;
	--bg-dark: #f8fafc;
	--bg-card: #ffffff;
	--bg-card2: #f1f5f9;

	--blue: #00579c;
	--blue-dim: #004a85;
	--blue-glow: rgba(0, 87, 156, 0.22);
	--blue-faint: rgba(0, 87, 156, 0.08);
	--blue-light: rgba(0, 87, 156, 0.12);

	--orange: #e65100;
	--orange-dim: rgba(230, 81, 0, 0.12);

	--teal: #00897b;
	--teal-dim: rgba(0, 137, 123, 0.12);

	--green: #2e7d32;
	--red: #c62828;

	--border: rgba(0, 87, 156, 0.12);
	--border-hi: rgba(0, 87, 156, 0.22);
	--border-neu: rgba(148, 163, 184, 0.3);

	--t1: #0f172a;
	--t2: #475569;
	--t3: #94a3b8;

	--font: 'Inter', system-ui, sans-serif;
	--mono: 'JetBrains Mono', monospace;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font);
	background: var(--bg-deep);
	color: var(--t1);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

/* ─── Util ─────────────────────────────────────────────────── */
.wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 32px;
}

/* Label chip */
.zaku_lbl {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	color: var(--blue);
	background: var(--blue-faint);
	border: 1px solid rgba(0, 87, 156, 0.22);
	border-radius: 100px;
	padding: 4px 14px;
}

/* Buttons */
.zaku_btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font);
	font-weight: 600;
	letter-spacing: -0.01em;
	border-radius: 8px;
	border: none;
	cursor: pointer;
	transition: all .2s;
}

.zaku_btn--lg {
	font-size: 16px;
	padding: 14px 28px;
}

.zaku_btn--primary {
	background: var(--blue);
	color: #fff;
	box-shadow: 0 0 0 0 var(--blue-glow);
}

.zaku_btn--primary:hover {
	background: var(--blue-dim);
	box-shadow: 0 0 28px 6px var(--blue-glow);
}

.zaku_btn--ghost {
	background: transparent;
	color: var(--t2);
	border: 1px solid var(--border-neu);
}

.zaku_btn--ghost:hover {
	background: rgba(0, 87, 156, 0.05);
	color: var(--t1);
	border-color: var(--blue);
}

/* Fade animation */
.zaku_fade {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .6s ease, transform .6s ease;
}

.zaku_fade.zaku_in {
	opacity: 1;
	transform: none;
}

/* Section Header */
.zaku_sec-hd {
	margin-bottom: 48px;
	text-align: center;
}

.zaku_sec-hd .zaku_lbl {
	margin-bottom: 18px;
}

.zaku_h2 {
	font-size: clamp(32px, 4.5vw, 48px);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.15;
}

.zaku_sec-sub {
	font-size: 17px;
	color: var(--t2);
	line-height: 1.7;
	margin-top: 14px;
	max-width: 580px;
}

.zaku_h2 em {
	font-style: normal;
	background: linear-gradient(125deg, var(--blue) 0%, #0277bd 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* ─── HERO - Left Right Layout ─────────────────────── */
.zaku_hero {
	min-height: 100vh;
	padding-top: 70px;
	/*display: flex;*/
	/*flex-direction: column;*/
	/*justify-content: center;*/
	position: relative;
	overflow: hidden;
}

.zaku_hero-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 70% 55% at 50% 5%, rgba(0, 87, 156, 0.08) 0%, transparent 70%),
		radial-gradient(ellipse 50% 40% at 85% 75%, rgba(230, 81, 0, 0.04) 0%, transparent 65%);
}

.zaku_hero-grid-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(var(--border) 1px, transparent 1px),
		linear-gradient(90deg, var(--border) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: radial-gradient(ellipse 80% 60% at 50% 25%, black 20%, transparent 75%);
	opacity: .55;
}

.zaku_hero-body {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	padding: 0 32px 80px;
	max-width: 1200px;
	margin: 0 auto;
}

.zaku_hero-content {
	text-align: left;
}

.zaku_hero-status {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--blue);
	background: var(--blue-faint);
	border: 1px solid rgba(0, 87, 156, 0.24);
	border-radius: 100px;
	padding: 6px 16px;
	margin-bottom: 20px;
}

.zaku_hero-title {
	font-size: clamp(44px, 5vw, 64px);
	font-weight: 900;
	letter-spacing: -0.04em;
	line-height: 1.02;
	margin: 0 auto 28px 0;
}

.zaku_hero-title em {
	font-style: normal;
	background: linear-gradient(125deg, var(--blue) 0%, #0277bd 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.zaku_hero-tagline {
	font-size: 21px;
	font-weight: 600;
	color: var(--blue);
	margin-bottom: 14px;
	letter-spacing: -0.02em;
}

.zaku_hero-sub {
	font-size: clamp(16px, 1.8vw, 18px);
	color: var(--t2);
	line-height: 1.72;
	max-width: 520px;
	margin: 0 auto 40px 0;
}

.zaku_hero-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 0;
}

.zaku_hero-img {
	border-radius: 16px;
	overflow: visible;
	background: transparent;
	animation: heroFloat 3s ease-in-out infinite;
}

.zaku_hero-img:hover {
	animation-play-state: paused;
	transform: scale(1.05);
}

.zaku_hero-img img {
	width: 120%;
	height: auto;
	display: block;
	margin-left: -10%;
}

@keyframes heroFloat {

	0%,
	100% {
		transform: scale(1) translateY(0);
	}

	50% {
		transform: scale(1.03) translateY(-8px);
	}
}

/* Hero Stats - Source.zaku_html style, centered below hero */
.zaku_hero-stats-section {
	background: var(--bg-dark);
	border-top: 1px solid var(--border-neu);
	border-bottom: 1px solid var(--border-neu);
	padding: 64px 0;
}

.zaku_hero-stats {
	display: flex;
	justify-content: center;
	max-width: 960px;
	margin: 0 auto;
	border: 1px solid var(--border-hi);
	border-radius: 14px;
	overflow: hidden;
	background: rgba(0, 87, 156, 0.03);
	backdrop-filter: blur(8px);
}

.zaku_hstat {
	flex: 1;
	padding: 28px 30px;
	text-align: left;
	border-right: 1px solid var(--border-neu);
	position: relative;
}

.zaku_hstat::before {
	content: '';
	position: absolute;
	left: 0;
	top: 16px;
	bottom: 16px;
	width: 2px;
	background: var(--blue);
}

.zaku_hstat:last-child {
	border-right: none;
}

.zaku_hstat-n {
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--t1);
	margin-bottom: 6px;
	line-height: 1;
}

.zaku_hstat-n span {
	font-size: 12px;
	font-weight: 600;
	color: var(--blue);
}

.zaku_hstat-l {
	font-size: 12px;
	color: var(--t3);
	line-height: 1.45;
}

/* ─── FEATURES - Grid without images ─────────────────────── */
.zaku_features-section {
	padding: 100px 0;
	background: var(--bg-deep);
}

.zaku_feature-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.zaku_feature-card {
	background: var(--bg-card);
	border: 1px solid var(--border-neu);
	border-radius: 14px;
	padding: 36px 32px;
	transition: border-color .25s, box-shadow .25s, transform .25s;
}

.zaku_feature-card:hover {
	border-color: var(--border-hi);
	box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.06);
	transform: translateY(-3px);
}

.zaku_feature-icon {
	width: 48px;
	height: 48px;
	border-radius: 10px;
	background: var(--blue-faint);
	border: 1px solid rgba(0, 87, 156, 0.2);
	display: grid;
	place-items: center;
	margin-bottom: 16px;
}

.zaku_feature-icon svg {
	width: 24px;
	height: 24px;
	color: var(--blue);
}

.zaku_feature-title {
	font-size: 18px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--t1);
	margin-bottom: 12px;
}

.zaku_feature-desc {
	font-size: 13px;
	color: var(--t2);
	line-height: 1.7;
}

/* ─── SCENARIOS - Zigzag with images ─────────────────────── */
.zaku_scenarios-section {
	padding: 100px 0;
	background: var(--bg-dark);
}

.zaku_scenario-block {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 50px;
	align-items: center;
	margin-bottom: 70px;
}

.zaku_scenario-block:last-child {
	margin-bottom: 0;
}

.zaku_scenario-block.zaku_reverse {
	direction: rtl;
}

.zaku_scenario-block.zaku_reverse>* {
	direction: ltr;
}

.zaku_scenario-content {
	padding: 10px 0;
}

.zaku_scenario-icon {
	width: 48px;
	height: 48px;
	border-radius: 10px;
	background: var(--blue-faint);
	border: 1px solid rgba(0, 87, 156, 0.2);
	display: grid;
	place-items: center;
	margin-bottom: 16px;
}

.zaku_scenario-icon svg {
	width: 24px;
	height: 24px;
	color: var(--blue);
}

.zaku_scenario-title {
	font-size: 24px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--t1);
	margin-bottom: 12px;
}

.zaku_scenario-desc {
	font-size: 15px;
	color: var(--t2);
	line-height: 1.7;
}

.zaku_scenario-visual {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.zaku_scenario-visual img {
	width: 100%;
	height: auto;
	display: block;
}

/* ─── CASES - 3 Column Grid ─────────────────────────────── */
.zaku_cases-section {
	padding: 100px 0;
	background: var(--bg-deep);
}

.zaku_casegrid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.zaku_case-card {
	background: var(--bg-card);
	border: 1px solid var(--border-neu);
	border-radius: 14px;
	padding: 32px 28px;
	transition: border-color .25s, box-shadow .25s, transform .25s;
}

.zaku_case-card:hover {
	border-color: var(--border-hi);
	box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.06);
	transform: translateY(-3px);
}

.zaku_case-org {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}

.zaku_case-avatar {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	flex-shrink: 0;
	background: var(--blue-faint);
	display: grid;
	place-items: center;
	font-size: 18px;
}

.zaku_case-name {
	font-size: 15px;
	font-weight: 700;
	color: var(--t1);
}

.zaku_case-industry {
	font-size: 12px;
	color: var(--t3);
	margin-top: 2px;
}

.zaku_case-desc {
	font-size: 13px;
	color: var(--t2);
	line-height: 1.65;
}

/* ─── CUSTOMER LOGOS ──────────────────────────────────────── */
.zaku_customers-section {
	padding: 36px 0;
	background: var(--bg-deep);
	border-top: 1px solid var(--border-neu);
	border-bottom: 1px solid var(--border-neu);
}

.zaku_customers-grid {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 36px;
	flex-wrap: wrap;
}

.zaku_customer-logo {
	font-size: 14px;
	font-weight: 700;
	color: var(--t3);
	opacity: 0.6;
	transition: opacity .2s;
}

.zaku_customer-logo:hover {
	opacity: 1;
}

/* ─── CTA ─────────────────────────────────────────────── */
.zaku_cta-section {
	padding: 100px 0;
	position: relative;
	overflow: hidden;
	background: var(--bg-dark);
}

.zaku_cta-section::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 65% 55% at 30% 50%, rgba(0, 87, 156, 0.06) 0%, transparent 70%),
		radial-gradient(ellipse 50% 50% at 72% 50%, rgba(230, 81, 0, 0.04) 0%, transparent 70%);
}

.zaku_cta-inner {
	position: relative;
	z-index: 1;
	max-width: 580px;
	margin: 0 auto;
	text-align: center;
	padding: 0 32px;
}

.zaku_cta-hl {
	font-size: clamp(32px, 5vw, 48px);
	font-weight: 900;
	letter-spacing: -0.04em;
	line-height: 1.1;
	margin-bottom: 14px;
}

.zaku_cta-hl em {
	font-style: normal;
	background: linear-gradient(125deg, var(--blue) 0%, #0277bd 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.zaku_cta-sub {
	font-size: 16px;
	color: var(--t2);
	margin-bottom: 32px;
}

.zaku_contact-form {
	text-align: left;
}

.zaku_form-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.zaku_form-input {
	width: 100%;
	padding: 12px 14px;
	font-size: 14px;
	border: 1px solid var(--border-neu);
	background: #fff;
	outline: none;
	font-family: var(--font);
	border-radius: 7px;
	transition: border-color .2s;
}

.zaku_form-input:focus {
	border-color: var(--blue);
}

.zaku_form-textarea {
	grid-column: 1 / -1;
	min-height: 80px;
	resize: vertical;
}

.zaku_form-submit {
	background: var(--blue);
	color: #fff;
	padding: 14px 24px;
	font-size: 15px;
	font-weight: 600;
	border: none;
	border-radius: 7px;
	cursor: pointer;
	transition: all .2s;
	width: 100%;
	margin-top: 6px;
}

.zaku_form-submit:hover {
	background: var(--blue-dim);
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 960px) {
	.zaku_feature-grid {
		grid-template-columns: 1fr;
	}

	.zaku_scenario-block {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.zaku_scenario-block.zaku_reverse {
		direction: ltr;
	}

	.zaku_casegrid {
		grid-template-columns: 1fr;
	}

	.nav-links {
		display: none;
	}

	.zaku_hero-body {
		grid-template-columns: 1fr;
		gap: 40px;
		padding: 60px 32px;
	}

	.zaku_hero-content {
		text-align: center;
	}

	.zaku_hero-sub {
		margin: 0 auto 40px auto;
	}

	.zaku_hero-actions {
		justify-content: center;
	}
}

@media (max-width: 640px) {
	.zaku_hero-stats {
		flex-direction: column;
	}

	.zaku_hstat {
		border-right: none;
		border-bottom: 1px solid var(--border-neu);
	}

	.zaku_hstat::before {
		display: none;
	}

	.zaku_hstat:last-child {
		border-bottom: none;
	}

	.zaku_form-grid {
		grid-template-columns: 1fr;
	}
}

/* ═══════════ zcenter.html ═══════════ */
/* ─── Reset ────────────────────────────────────────────────── */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--bg-deep: #ffffff;
	--bg-dark: #f8fafc;
	--bg-card: #ffffff;
	--bg-card2: #f1f5f9;

	--blue: #00579c;
	--blue-dim: #004a85;
	--blue-glow: rgba(0, 87, 156, 0.22);
	--blue-faint: rgba(0, 87, 156, 0.08);
	--blue-light: rgba(0, 87, 156, 0.12);

	--orange: #e65100;
	--orange-dim: rgba(230, 81, 0, 0.12);

	--teal: #00897b;
	--teal-dim: rgba(0, 137, 123, 0.12);

	--green: #2e7d32;
	--red: #c62828;

	--border: rgba(0, 87, 156, 0.12);
	--border-hi: rgba(0, 87, 156, 0.22);
	--border-neu: rgba(148, 163, 184, 0.3);

	--t1: #0f172a;
	--t2: #475569;
	--t3: #94a3b8;

	--font: 'Inter', system-ui, sans-serif;
	--mono: 'JetBrains Mono', monospace;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font);
	background: var(--bg-deep);
	color: var(--t1);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

/* ─── Util ─────────────────────────────────────────────────── */
.wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 32px;
}

/* Label chip */
.zcenter_lbl {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	color: var(--blue);
	background: var(--blue-faint);
	border: 1px solid rgba(0, 87, 156, 0.22);
	border-radius: 100px;
	padding: 4px 14px;
}

/* Buttons */
.zcenter_btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font);
	font-weight: 600;
	letter-spacing: -0.01em;
	border-radius: 8px;
	border: none;
	cursor: pointer;
	transition: all .2s;
}

.zcenter_btn--lg {
	font-size: 16px;
	padding: 14px 28px;
}

.zcenter_btn--primary {
	background: var(--blue);
	color: #fff;
	box-shadow: 0 0 0 0 var(--blue-glow);
}

.zcenter_btn--primary:hover {
	background: var(--blue-dim);
	box-shadow: 0 0 28px 6px var(--blue-glow);
}

.zcenter_btn--ghost {
	background: transparent;
	color: var(--t2);
	border: 1px solid var(--border-neu);
}

.zcenter_btn--ghost:hover {
	background: rgba(0, 87, 156, 0.05);
	color: var(--t1);
	border-color: var(--blue);
}

/* Fade animation */
.zcenter_fade {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity .6s ease, transform .6s ease;
}

.zcenter_fade.zcenter_in {
	opacity: 1;
	transform: none;
}

/* Section Header */
.zcenter_sec-hd {
	margin-bottom: 48px;
	text-align: center;
}

.zcenter_sec-hd .zcenter_lbl {
	margin-bottom: 18px;
}

.zcenter_h2 {
	font-size: clamp(32px, 4.5vw, 48px);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.15;
}

.zcenter_sec-sub {
	font-size: 17px;
	color: var(--t2);
	line-height: 1.7;
	margin-top: 14px;
	max-width: 580px;
}

.zcenter_h2 em {
	font-style: normal;
	background: linear-gradient(125deg, var(--blue) 0%, #0277bd 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* ─── HERO - Left Right Layout ─────────────────────── */
.zcenter_hero {
	min-height: 100vh;
	padding-top: 70px;
	/*display: flex;*/
	/*flex-direction: column;*/
	/*justify-content: center;*/
	position: relative;
	overflow: hidden;
}

.zcenter_hero-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 70% 55% at 50% 5%, rgba(0, 87, 156, 0.08) 0%, transparent 70%),
		radial-gradient(ellipse 50% 40% at 85% 75%, rgba(230, 81, 0, 0.04) 0%, transparent 65%);
}

.zcenter_hero-grid-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(var(--border) 1px, transparent 1px),
		linear-gradient(90deg, var(--border) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: radial-gradient(ellipse 80% 60% at 50% 25%, black 20%, transparent 75%);
	opacity: .55;
}

.zcenter_hero-body {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	padding: 0 32px 80px;
	max-width: 1200px;
	margin: 0 auto;
}

.zcenter_hero-content {
	text-align: left;
}

.zcenter_hero-status {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--blue);
	background: var(--blue-faint);
	border: 1px solid rgba(0, 87, 156, 0.24);
	border-radius: 100px;
	padding: 6px 16px;
	margin-bottom: 20px;
}

.zcenter_hero-title {
	font-size: clamp(44px, 5vw, 64px);
	font-weight: 900;
	letter-spacing: -0.04em;
	line-height: 1.02;
	margin: 0 auto 28px 0;
}

.zcenter_hero-title em {
	font-style: normal;
	background: linear-gradient(125deg, var(--blue) 0%, #0277bd 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.zcenter_hero-tagline {
	font-size: 21px;
	font-weight: 600;
	color: var(--blue);
	margin-bottom: 14px;
	letter-spacing: -0.02em;
}

.zcenter_hero-sub {
	font-size: clamp(16px, 1.8vw, 18px);
	color: var(--t2);
	line-height: 1.72;
	max-width: 520px;
	margin: 0 auto 40px 0;
}

.zcenter_hero-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 0;
}

.zcenter_hero-img {
	border-radius: 16px;
	overflow: visible;
	background: transparent;
	animation: heroFloat 3s ease-in-out infinite;
}

.zcenter_hero-img:hover {
	animation-play-state: paused;
	transform: scale(1.05);
}

.zcenter_hero-img img {
	width: 120%;
	height: auto;
	display: block;
	margin-left: -10%;
}

@keyframes heroFloat {

	0%,
	100% {
		transform: scale(1) translateY(0);
	}

	50% {
		transform: scale(1.03) translateY(-8px);
	}
}

/* Hero Stats - Source.zcenter_html style, centered below hero */
.zcenter_hero-stats-section {
	background: var(--bg-dark);
	border-top: 1px solid var(--border-neu);
	border-bottom: 1px solid var(--border-neu);
	padding: 64px 0;
}

.zcenter_hero-stats {
	display: flex;
	justify-content: center;
	max-width: 960px;
	margin: 0 auto;
	border: 1px solid var(--border-hi);
	border-radius: 14px;
	overflow: hidden;
	background: rgba(0, 87, 156, 0.03);
	backdrop-filter: blur(8px);
}

.zcenter_hstat {
	flex: 1;
	padding: 28px 30px;
	text-align: left;
	border-right: 1px solid var(--border-neu);
	position: relative;
}

.zcenter_hstat::before {
	content: '';
	position: absolute;
	left: 0;
	top: 16px;
	bottom: 16px;
	width: 2px;
	background: var(--blue);
}

.zcenter_hstat:last-child {
	border-right: none;
}

.zcenter_hstat-n {
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--t1);
	margin-bottom: 6px;
	line-height: 1;
}

.zcenter_hstat-n span {
	font-size: 12px;
	font-weight: 600;
	color: var(--blue);
}

.zcenter_hstat-l {
	font-size: 12px;
	color: var(--t3);
	line-height: 1.45;
}

/* ─── FEATURES V3 - Zigzag with images ─────────────────────── */
.zcenter_features-section {
	padding: 100px 0;
	background: var(--bg-deep);
}

.zcenter_feature-block {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 50px;
	align-items: center;
	margin-bottom: 70px;
}

.zcenter_feature-block:last-child {
	margin-bottom: 0;
}

.zcenter_feature-block.zcenter_reverse {
	direction: rtl;
}

.zcenter_feature-block.zcenter_reverse>* {
	direction: ltr;
}

.zcenter_feature-content {
	padding: 10px 0;
}

.zcenter_feature-icon {
	width: 48px;
	height: 48px;
	border-radius: 10px;
	background: var(--blue-faint);
	border: 1px solid rgba(0, 87, 156, 0.2);
	display: grid;
	place-items: center;
	margin-bottom: 16px;
}

.zcenter_feature-icon svg {
	width: 24px;
	height: 24px;
	color: var(--blue);
}

.zcenter_feature-title {
	font-size: 24px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--t1);
	margin-bottom: 12px;
}

.zcenter_feature-desc {
	font-size: 15px;
	color: var(--t2);
	line-height: 1.7;
}

.zcenter_feature-visual {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.zcenter_feature-visual img {
	width: 100%;
	height: auto;
	display: block;
}

/* ─── COMPARE ──────────────────────────────────────────────── */
.zcenter_compare-section {
	padding: 100px 0;
	background: var(--bg-dark);
}

.zcenter_ctable {
	width: 100%;
	border-collapse: collapse;
	min-width: 600px;
}

.zcenter_ctable th {
	padding: 14px 20px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--t3);
	text-align: left;
	border-bottom: 1px solid var(--border-neu);
	background: var(--bg-card);
}

.zcenter_ctable th.zcenter_col-z {
	background: var(--blue-faint);
	color: var(--blue);
}

.zcenter_ctable td {
	padding: 14px 20px;
	font-size: 13.5px;
	color: var(--t2);
	border-bottom: 1px solid var(--border);
}

.zcenter_ctable tr:hover td {
	background: rgba(0, 87, 156, 0.02);
}

.zcenter_ctable tr:hover td.zcenter_col-z {
	background: rgba(0, 87, 156, 0.08);
}

.zcenter_ctable td.zcenter_col-f {
	font-weight: 600;
	color: var(--t1);
}

.zcenter_ctable td.zcenter_col-z {
	background: var(--blue-faint);
	color: var(--t1);
	font-weight: 500;
}

.zcenter_chk {
	color: var(--blue);
	font-weight: 700;
}

.zcenter_crs {
	color: var(--t3);
}

/* ─── USE CASES V3 ─────────────────────────────────────────── */
.zcenter_uc-section {
	padding: 100px 0;
	background: var(--bg-dark);
}

.zcenter_ucgrid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.zcenter_uc {
	background: var(--bg-card);
	border: 1px solid var(--border-neu);
	border-radius: 12px;
	padding: 32px 26px;
	transition: border-color .25s, box-shadow .25s, transform .25s;
	box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.zcenter_uc:hover {
	border-color: var(--border-hi);
	box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.06);
	transform: translateY(-3px);
}

.zcenter_uc-num {
	font-family: var(--mono);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--t3);
	margin-bottom: 10px;
}

.zcenter_uc-title {
	font-size: 17px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--t1);
	margin-bottom: 10px;
}

.zcenter_uc-desc {
	font-size: 13px;
	color: var(--t2);
	line-height: 1.6;
	margin-bottom: 14px;
}

.zcenter_uc-list {
	list-style: none;
}

.zcenter_uc-list li {
	font-size: 12.5px;
	color: var(--t2);
	padding: 4px 0;
	padding-left: 14px;
	position: relative;
}

.zcenter_uc-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 4px;
	background: var(--blue);
	border-radius: 50%;
}

/* Customer Logos */
.zcenter_customers-section {
	padding: 36px 0;
	background: var(--bg-deep);
	border-top: 1px solid var(--border-neu);
	border-bottom: 1px solid var(--border-neu);
}

.zcenter_customers-grid {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 36px;
	flex-wrap: wrap;
}

.zcenter_customer-logo {
	font-size: 14px;
	font-weight: 700;
	color: var(--t3);
	opacity: 0.6;
	transition: opacity .2s;
}

.zcenter_customer-logo:hover {
	opacity: 1;
}

/* ─── CTA V3 ─────────────────────────────────────────────── */
.zcenter_cta-section {
	padding: 100px 0;
	position: relative;
	overflow: hidden;
	background: var(--bg-dark);
}

.zcenter_cta-section::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 65% 55% at 30% 50%, rgba(0, 87, 156, 0.06) 0%, transparent 70%),
		radial-gradient(ellipse 50% 50% at 72% 50%, rgba(230, 81, 0, 0.04) 0%, transparent 70%);
}

.zcenter_cta-inner {
	position: relative;
	z-index: 1;
	max-width: 580px;
	margin: 0 auto;
	text-align: center;
	padding: 0 32px;
}

.zcenter_cta-hl {
	font-size: clamp(32px, 5vw, 48px);
	font-weight: 900;
	letter-spacing: -0.04em;
	line-height: 1.1;
	margin-bottom: 14px;
}

.zcenter_cta-hl em {
	font-style: normal;
	background: linear-gradient(125deg, var(--blue) 0%, #0277bd 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.zcenter_cta-sub {
	font-size: 16px;
	color: var(--t2);
	margin-bottom: 32px;
}

.zcenter_contact-form {
	text-align: left;
}

.zcenter_form-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.zcenter_form-input {
	width: 100%;
	padding: 12px 14px;
	font-size: 14px;
	border: 1px solid var(--border-neu);
	background: #fff;
	outline: none;
	font-family: var(--font);
	border-radius: 7px;
	transition: border-color .2s;
}

.zcenter_form-input:focus {
	border-color: var(--blue);
}

.zcenter_form-textarea {
	grid-column: 1 / -1;
	min-height: 80px;
	resize: vertical;
}

.zcenter_form-submit {
	background: var(--blue);
	color: #fff;
	padding: 14px 24px;
	font-size: 15px;
	font-weight: 600;
	border: none;
	border-radius: 7px;
	cursor: pointer;
	transition: all .2s;
	width: 100%;
	margin-top: 6px;
}

.zcenter_form-submit:hover {
	background: var(--blue-dim);
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 960px) {
	.zcenter_feature-block {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.zcenter_feature-block.zcenter_reverse {
		direction: ltr;
	}

	.zcenter_ucgrid {
		grid-template-columns: 1fr;
	}

	.nav-links {
		display: none;
	}

	.zcenter_hero-body {
		grid-template-columns: 1fr;
		gap: 40px;
		padding: 60px 32px;
	}

	.zcenter_hero-content {
		text-align: center;
	}

	.zcenter_hero-sub {
		margin: 0 auto 40px auto;
	}

	.zcenter_hero-actions {
		justify-content: center;
	}
}

@media (max-width: 640px) {
	.zcenter_hero-stats {
		flex-direction: column;
	}

	.zcenter_hstat {
		border-right: none;
		border-bottom: 1px solid var(--border-neu);
	}

	.zcenter_hstat::before {
		display: none;
	}

	.zcenter_hstat:last-child {
		border-bottom: none;
	}

	.zcenter_form-grid {
		grid-template-columns: 1fr;
	}
}

/* ═══════════ zstack-AIOS.html ═══════════ */


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

:root {
	--bg: #ffffff;
	--bg-alt: #f8fafc;
	--bg-card: #ffffff;
	--blue: #00579c;
	--blue-dim: #004a85;
	--blue-deep: #003a6e;
	--blue-glow: rgba(0, 87, 156, 0.22);
	--blue-faint: rgba(0, 87, 156, 0.07);
	--blue-mid: rgba(0, 87, 156, 0.14);
	--orange: #e65100;
	--orange-dim: rgba(230, 81, 0, 0.10);
	--teal: #00897b;
	--teal-dim: rgba(0, 137, 123, 0.10);
	--border: rgba(148, 163, 184, 0.28);
	--border-hi: rgba(0, 87, 156, 0.20);
	--t1: #0f172a;
	--t2: #475569;
	--t3: #94a3b8;
	--font: 'Inter', system-ui, sans-serif;
	--mono: 'JetBrains Mono', monospace;
	--radius: 14px;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font);
	background: var(--bg);
	color: var(--t1);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	display: block;
	max-width: 100%;
}

.wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 32px;
}

/* ── Utilities ── */
.zstack_AIOS_lbl {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	color: var(--blue);
	background: var(--blue-faint);
	border: 1px solid var(--border-hi);
	border-radius: 100px;
	padding: 4px 14px;
}

.zstack_AIOS_lbl--white {
	color: rgba(255, 255, 255, 0.85);
	background: rgba(255, 255, 255, 0.10);
	border-color: rgba(255, 255, 255, 0.22);
}

.zstack_AIOS_h2 {
	font-size: clamp(28px, 3.2vw, 52px);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.12;
	color: var(--t1);
}

.zstack_AIOS_h2--white {
	color: #ffffff;
}

.zstack_AIOS_sec-sub {
	font-size: 18px;
	color: var(--t2);
	line-height: 1.7;
	margin-top: 14px;
}

.zstack_AIOS_sec-header {
	text-align: center;
}

.zstack_AIOS_sec-header .zstack_AIOS_lbl {
	margin-bottom: 16px;
}

/* ── Scroll Fade ── */
.zstack_AIOS_fade {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity .55s ease, transform .55s ease;
}

.zstack_AIOS_fade.zstack_AIOS_in {
	opacity: 1;
	transform: none;
}

/* ── Buttons ── */
.zstack_AIOS_btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	border-radius: 10px;
	cursor: pointer;
	transition: all .2s ease;
	border: 1.5px solid transparent;
	white-space: nowrap;
}

.zstack_AIOS_btn--lg {
	font-size: 15px;
	padding: 13px 26px;
}

.zstack_AIOS_btn--md {
	font-size: 14px;
	padding: 11px 22px;
}

.zstack_AIOS_btn--sm {
	font-size: 13px;
	padding: 8px 18px;
}

.zstack_AIOS_btn--primary {
	background: var(--blue);
	color: #fff;
	border-color: var(--blue);
}

.zstack_AIOS_btn--primary:hover {
	background: var(--blue-dim);
	border-color: var(--blue-dim);
	transform: translateY(-1px);
	box-shadow: 0 6px 20px var(--blue-glow);
}

.zstack_AIOS_btn--ghost {
	background: transparent;
	color: var(--t1);
	border-color: var(--border);
}

.zstack_AIOS_btn--ghost:hover {
	border-color: var(--blue);
	color: var(--blue);
	transform: translateY(-1px);
}

.zstack_AIOS_btn--outline-white {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.45);
}

.zstack_AIOS_btn--outline-white:hover {
	background: rgba(255, 255, 255, 0.10);
	border-color: rgba(255, 255, 255, 0.75);
	transform: translateY(-1px);
}

/* ── Section ── */
.zstack_AIOS_section {
	padding: 100px 0;
}

/* ── Scroll anchor offset (fixed nav = 64px) ── */
section[id] {
	scroll-margin-top: 80px;
}

.zstack_AIOS_trust-section {
	scroll-margin-top: 80px;
}

/* ══════════════════════════════════════
       HERO — centered
    ══════════════════════════════════════ */
.zstack_AIOS_hero {
	padding-top: 56px;
	padding-bottom: 100px;
	background: linear-gradient(150deg, #001d3d 0%, #003a6e 45%, #005b9f 100%);
	position: relative;
	overflow: hidden;
	text-align: center;
}

.zstack_AIOS_hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 80% 60% at 60% 0%, rgba(0, 153, 255, 0.12) 0%, transparent 60%),
		radial-gradient(ellipse 50% 40% at 100% 80%, rgba(0, 137, 123, 0.10) 0%, transparent 50%);
	pointer-events: none;
}

.zstack_AIOS_hero-grid-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	opacity: 0.04;
	background-image: linear-gradient(rgba(255, 255, 255, 1) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 1) 1px, transparent 1px);
	background-size: 56px 56px;
}

.zstack_AIOS_hero-inner {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 32px;
}

.zstack_AIOS_hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.80);
	background: rgba(255, 255, 255, 0.10);
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 100px;
	padding: 5px 16px;
	margin-bottom: 28px;
}

.zstack_AIOS_hero-badge-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #4ade80;
	flex-shrink: 0;
}

.zstack_AIOS_hero-h1 {
	font-size: clamp(28px, 4.6vw, 66px);
	font-weight: 900;
	letter-spacing: -0.035em;
	line-height: 1.08;
	color: #ffffff;
	margin-bottom: 20px;
}

.zstack_AIOS_hero-h1 em {
	font-style: normal;
	color: rgba(255, 255, 255, 0.55);
	display: block;
}

.zstack_AIOS_hero-sub {
	font-size: clamp(15px, 1.5vw, 18px);
	color: rgba(255, 255, 255, 0.65);
	max-width: 680px;
	margin: 0 auto 40px;
	line-height: 1.7;
}

.zstack_AIOS_hero-ctas {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin-bottom: 60px;
	flex-wrap: wrap;
}

.zstack_AIOS_hero-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 16px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.04);
	backdrop-filter: blur(8px);
	max-width: 900px;
	margin: 0 auto;
}

.zstack_AIOS_hero-stat {
	padding: 24px 28px;
	position: relative;
	border-right: 1px solid rgba(255, 255, 255, 0.10);
	text-align: left;
}

.zstack_AIOS_hero-stat:last-child {
	border-right: none;
}

.zstack_AIOS_hero-stat-bar {
	position: absolute;
	left: 0;
	top: 16px;
	bottom: 16px;
	width: 3px;
	border-radius: 0 3px 3px 0;
}

.zstack_AIOS_hero-stat-bar--blue {
	background: var(--blue);
}

.zstack_AIOS_hero-stat-bar--teal {
	background: var(--teal);
}

.zstack_AIOS_hero-stat-num {
	font-size: 26px;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: #fff;
	line-height: 1;
	margin-bottom: 6px;
}

.zstack_AIOS_hero-stat-num span {
	font-size: 11px;
	font-weight: 600;
	margin-left: 3px;
	color: #7ec8ff;
}

.zstack_AIOS_hero-stat-num .zstack_AIOS_teal-span {
	color: #4dd0c4;
}

.zstack_AIOS_hero-stat-desc {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.50);
	line-height: 1.5;
}

/* ══════════════════════════════════════
       TRUST BAR
    ══════════════════════════════════════ */
.zstack_AIOS_trust-section {
	background: var(--bg-alt);
	padding: 56px 0;
}

.zstack_AIOS_trust-label {
	text-align: center;
	font-size: 12px;
	font-weight: 600;
	color: var(--t3);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 28px;
}

.zstack_AIOS_trust-cards {
	display: flex;
	align-items: stretch;
	gap: 16px;
	justify-content: center;
}

.zstack_AIOS_trust-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 20px 28px;
	display: flex;
	align-items: center;
	gap: 20px;
	flex: 1;
	max-width: 480px;
}

.zstack_AIOS_trust-org-logo {
	font-size: 20px;
	font-weight: 900;
	letter-spacing: -0.05em;
	color: var(--t1);
	white-space: nowrap;
	flex-shrink: 0;
}

.zstack_AIOS_trust-divider {
	width: 1px;
	background: var(--border);
	align-self: stretch;
	flex-shrink: 0;
}

.zstack_AIOS_trust-title {
	font-size: 13px;
	font-weight: 600;
	color: var(--t1);
	margin-bottom: 4px;
}

.zstack_AIOS_trust-meta {
	font-size: 11px;
	color: var(--t3);
	font-family: var(--mono);
}

/* ══════════════════════════════════════
       WHY PRIVATE AI
    ══════════════════════════════════════ */
.zstack_AIOS_why-section {
	background: var(--bg);
}

.zstack_AIOS_why-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-top: 56px;
}

.zstack_AIOS_why-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 32px;
	transition: border-color .2s, box-shadow .2s, transform .25s;
}

.zstack_AIOS_why-card:hover {
	border-color: var(--border-hi);
	transform: translateY(-3px);
	box-shadow: 0 8px 28px var(--blue-glow);
}

.zstack_AIOS_why-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.zstack_AIOS_why-icon--blue {
	background: var(--blue-faint);
}

.zstack_AIOS_why-icon--teal {
	background: var(--teal-dim);
}

.zstack_AIOS_why-icon--orange {
	background: var(--orange-dim);
}

.zstack_AIOS_why-card-title {
	font-size: 18px;
	font-weight: 700;
	color: var(--t1);
	margin-bottom: 10px;
}

.zstack_AIOS_why-card-body {
	font-size: 15px;
	color: var(--t2);
	line-height: 1.7;
}

/* ══════════════════════════════════════
       ARCHITECTURE — merged with Layer Details
    ══════════════════════════════════════ */
.zstack_AIOS_arch-section {
	background: var(--bg-alt);
}

.zstack_AIOS_arch-integration {
	margin-top: 0;
	background: var(--blue-faint);
	border: 1px solid var(--border-hi);
	border-radius: 12px;
	padding: 16px 22px;
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 40px;
}

.zstack_AIOS_arch-integration-label {
	font-size: 13px;
	font-weight: 700;
	color: var(--blue);
	white-space: nowrap;
}

.zstack_AIOS_arch-integration-text {
	font-size: 13px;
	color: var(--t2);
}

.zstack_AIOS_layer-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 16px;
	overflow: hidden;
	margin-bottom: 20px;
	transition: border-color .2s, box-shadow .2s;
}

.zstack_AIOS_layer-card:last-child {
	margin-bottom: 0;
}

.zstack_AIOS_layer-card:hover {
	border-color: var(--border-hi);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.zstack_AIOS_layer-card-header {
	padding: 28px 32px;
	display: flex;
	align-items: flex-start;
	gap: 20px;
	position: relative;
}

.zstack_AIOS_layer-card-header--orange {
	background: linear-gradient(135deg, rgba(230, 81, 0, 0.05) 0%, transparent 70%);
}

.zstack_AIOS_layer-card-header--teal {
	background: linear-gradient(135deg, rgba(0, 137, 123, 0.05) 0%, transparent 70%);
}

.zstack_AIOS_layer-card-header--blue {
	background: linear-gradient(135deg, rgba(0, 87, 156, 0.05) 0%, transparent 70%);
}

.zstack_AIOS_layer-card-bar {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
}

.zstack_AIOS_layer-card-bar--orange {
	background: linear-gradient(180deg, var(--orange), #ff8a65);
}

.zstack_AIOS_layer-card-bar--teal {
	background: linear-gradient(180deg, var(--teal), var(--blue));
}

.zstack_AIOS_layer-card-bar--blue {
	background: linear-gradient(180deg, var(--blue), #0277bd);
}

.zstack_AIOS_layer-card-icon {
	width: 56px;
	height: 56px;
	border-radius: 14px;
	display: grid;
	place-items: center;
	flex-shrink: 0;
}

.zstack_AIOS_layer-card-icon--orange {
	background: linear-gradient(135deg, var(--orange), #ff8a65);
}

.zstack_AIOS_layer-card-icon--teal {
	background: linear-gradient(135deg, var(--teal), var(--blue));
}

.zstack_AIOS_layer-card-icon--blue {
	background: linear-gradient(135deg, var(--blue), #0277bd);
}

.zstack_AIOS_layer-card-meta {
	flex: 1;
}

.zstack_AIOS_layer-card-num {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-family: var(--mono);
	color: var(--t3);
	margin-bottom: 4px;
}

.zstack_AIOS_layer-card-name {
	font-size: 20px;
	font-weight: 700;
	color: var(--t1);
	margin-bottom: 5px;
}

.zstack_AIOS_layer-card-sub {
	font-size: 14px;
	color: var(--t2);
}

.zstack_AIOS_layer-card-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 10px;
}

.zstack_AIOS_layer-card-tag {
	font-size: 11px;
	font-weight: 600;
	padding: 3px 10px;
	border-radius: 100px;
	font-family: var(--mono);
}

.zstack_AIOS_layer-card-tag--orange {
	background: var(--orange-dim);
	color: var(--orange);
}

.zstack_AIOS_layer-card-tag--teal {
	background: var(--teal-dim);
	color: var(--teal);
}

.zstack_AIOS_layer-card-tag--blue {
	background: var(--blue-faint);
	color: var(--blue);
}

.zstack_AIOS_layer-card-body {
	border-top: 1px solid var(--border);
	padding: 24px 32px 28px;
}

.zstack_AIOS_layer-card-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px 28px;
	list-style: none;
}

.zstack_AIOS_layer-card-list li {
	font-size: 13.5px;
	color: var(--t2);
	line-height: 1.65;
	padding-left: 14px;
	position: relative;
}

.zstack_AIOS_layer-card-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 8px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--blue);
}

.zstack_AIOS_layer-card-list li strong {
	color: var(--t1);
	font-weight: 600;
}

/* ══════════════════════════════════════
       PRODUCT ADVANTAGES — 5 in a row
    ══════════════════════════════════════ */
.zstack_AIOS_advantages-section {
	background: var(--bg);
}

.zstack_AIOS_advantages-row {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
	margin-top: 56px;
}

.zstack_AIOS_adv-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 24px 20px;
	transition: border-color .2s, transform .25s, box-shadow .25s;
}

.zstack_AIOS_adv-card:hover {
	border-color: var(--border-hi);
	transform: translateY(-3px);
	box-shadow: 0 8px 28px var(--blue-glow);
}

.zstack_AIOS_adv-icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	margin-bottom: 16px;
	background: var(--blue-faint);
	display: grid;
	place-items: center;
}

.zstack_AIOS_adv-title {
	font-size: 14px;
	font-weight: 700;
	color: var(--t1);
	margin-bottom: 8px;
	line-height: 1.4;
}

.zstack_AIOS_adv-body {
	font-size: 13px;
	color: var(--t2);
	line-height: 1.65;
}

/* ══════════════════════════════════════
       USE CASES
    ══════════════════════════════════════ */
.zstack_AIOS_usecases-section {
	background: var(--bg-alt);
}

.zstack_AIOS_usecases-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 56px;
}

.zstack_AIOS_usecase-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 28px;
	display: flex;
	flex-direction: column;
	transition: border-color .2s, transform .25s, box-shadow .25s;
}

.zstack_AIOS_usecase-card:hover {
	border-color: var(--border-hi);
	transform: translateY(-3px);
	box-shadow: 0 8px 28px var(--blue-glow);
}

.zstack_AIOS_usecase-num {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-family: var(--mono);
	color: var(--t3);
	margin-bottom: 12px;
}

.zstack_AIOS_usecase-title {
	font-size: 17px;
	font-weight: 700;
	color: var(--t1);
	margin-bottom: 6px;
}

.zstack_AIOS_usecase-sub {
	font-size: 13px;
	font-weight: 600;
	color: var(--blue);
	margin-bottom: 14px;
}

.zstack_AIOS_usecase-body {
	font-size: 14px;
	color: var(--t2);
	line-height: 1.7;
	flex: 1;
}

.zstack_AIOS_usecase-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 20px;
}

.zstack_AIOS_usecase-tag {
	font-size: 11px;
	font-weight: 600;
	padding: 3px 10px;
	border-radius: 100px;
	background: var(--blue-faint);
	color: var(--blue);
	border: 1px solid var(--border-hi);
}

/* ══════════════════════════════════════
       COMPATIBILITY — symmetric grid
    ══════════════════════════════════════ */
.zstack_AIOS_compat-section {
	background: var(--bg);
}

/* Top-bottom stacked panels */
.zstack_AIOS_compat-panels {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	margin-top: 56px;
}

.zstack_AIOS_compat-panel {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 16px;
	overflow: hidden;
}

.zstack_AIOS_compat-panel-head {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	padding: 26px 32px;
	border-bottom: 1px solid var(--border);
}

.zstack_AIOS_compat-panel-icon {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: var(--blue-faint);
	border: 1px solid var(--border-hi);
	display: grid;
	place-items: center;
	flex-shrink: 0;
}

.zstack_AIOS_compat-panel-title {
	font-size: 17px;
	font-weight: 700;
	color: var(--t1);
	margin-bottom: 5px;
}

.zstack_AIOS_compat-panel-sub {
	font-size: 13px;
	color: var(--t2);
	line-height: 1.65;
}

.zstack_AIOS_compat-panel-body {
	padding: 24px 32px 28px;
}

/* GPU chips — 3 horizontal cards */
.zstack_AIOS_compat-chip-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.zstack_AIOS_compat-chip {
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 20px 18px;
	display: flex;
	align-items: center;
	gap: 16px;
	transition: border-color .18s, background .18s;
	background: var(--bg-alt);
}

.zstack_AIOS_compat-chip:hover {
	border-color: var(--border-hi);
	background: var(--blue-faint);
}

.zstack_AIOS_compat-chip-icon {
	width: 42px;
	height: 42px;
	border-radius: 10px;
	background: var(--blue-faint);
	border: 1px solid var(--border-hi);
	display: grid;
	place-items: center;
	flex-shrink: 0;
	font-size: 11px;
	font-weight: 800;
	color: var(--blue);
	font-family: var(--mono);
	line-height: 1.2;
	text-align: center;
}

.zstack_AIOS_compat-chip-name {
	font-size: 14px;
	font-weight: 700;
	color: var(--t1);
	margin-bottom: 3px;
}

.zstack_AIOS_compat-chip-desc {
	font-size: 12px;
	color: var(--t3);
	line-height: 1.5;
}

.zstack_AIOS_compat-chip-tag {
	display: inline-block;
	margin-top: 6px;
	font-size: 10px;
	font-weight: 700;
	font-family: var(--mono);
	color: var(--blue);
	background: var(--blue-faint);
	border-radius: 4px;
	padding: 2px 7px;
}

/* Platform items — horizontal 4-col row */
.zstack_AIOS_compat-platform-row {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 14px;
}

.zstack_AIOS_compat-platform-item {
	display: flex;
	flex-direction: column;
	gap: 12px;
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 18px 16px;
	transition: border-color .18s, background .18s;
	background: var(--bg-alt);
}

.zstack_AIOS_compat-platform-item:hover {
	border-color: var(--border-hi);
	background: var(--blue-faint);
}

.zstack_AIOS_compat-platform-dot {
	width: 36px;
	height: 36px;
	border-radius: 9px;
	background: var(--blue-faint);
	border: 1px solid var(--border-hi);
	display: grid;
	place-items: center;
	flex-shrink: 0;
}

.zstack_AIOS_compat-platform-name {
	font-size: 13.5px;
	font-weight: 700;
	color: var(--t1);
}

.zstack_AIOS_compat-platform-desc {
	font-size: 12px;
	color: var(--t3);
	line-height: 1.5;
	margin-top: 2px;
}

/* AIOS overlay card */
.zstack_AIOS_compat-aios-item {
	display: flex;
	flex-direction: column;
	gap: 12px;
	border: 1.5px solid var(--border-hi);
	border-radius: 12px;
	padding: 18px 16px;
	background: linear-gradient(135deg, var(--blue-faint), rgba(0, 137, 123, 0.06));
}

.zstack_AIOS_compat-aios-dot {
	width: 36px;
	height: 36px;
	border-radius: 9px;
	background: var(--blue);
	display: grid;
	place-items: center;
	flex-shrink: 0;
}

.zstack_AIOS_compat-aios-name {
	font-size: 13.5px;
	font-weight: 700;
	color: var(--blue);
}

.zstack_AIOS_compat-aios-desc {
	font-size: 12px;
	color: var(--blue-dim);
	line-height: 1.5;
	margin-top: 2px;
}

.zstack_AIOS_compat-note {
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px solid var(--border);
	font-size: 12px;
	color: var(--t3);
	line-height: 1.6;
}

/* ══════════════════════════════════════
       CUSTOMER STORIES — testi card style
    ══════════════════════════════════════ */
.zstack_AIOS_customers-section {
	background: var(--bg);
	padding: 100px 0;
}

.zstack_AIOS_testimonials {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 56px;
}

.zstack_AIOS_testi {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 32px 28px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	transition: border-color .2s, transform .2s;
}

.zstack_AIOS_testi:hover {
	border-color: var(--border-hi);
	transform: translateY(-3px);
}

.zstack_AIOS_testi-industry {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--blue);
	font-family: var(--mono);
}

.zstack_AIOS_testi-quote {
	font-size: 14px;
	color: var(--t2);
	line-height: 1.72;
	flex: 1;
}

.zstack_AIOS_testi-divider {
	height: 1px;
	background: var(--border);
}

.zstack_AIOS_testi-org {
	display: flex;
	align-items: center;
	gap: 14px;
}

.zstack_AIOS_testi-avatar {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	flex-shrink: 0;
	background: linear-gradient(135deg, var(--blue-faint), var(--teal-dim));
	display: grid;
	place-items: center;
	font-size: 16px;
	font-weight: 800;
	color: var(--blue);
}

.zstack_AIOS_testi-name {
	font-size: 14px;
	font-weight: 700;
	color: var(--t1);
}

.zstack_AIOS_testi-type {
	font-size: 12px;
	color: var(--t3);
}

.zstack_AIOS_testi-link {
	font-size: 12px;
	font-weight: 600;
	color: var(--blue);
	display: flex;
	align-items: center;
	gap: 4px;
}

/* ══════════════════════════════════════
       CTA — homepage brand blue style
    ══════════════════════════════════════ */
.zstack_AIOS_cta-section {
	background: linear-gradient(140deg, #003a6e 0%, #00579c 50%, #004a85 100%);
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}

.zstack_AIOS_cta-section::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(ellipse 60% 70% at 70% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 60%);
}

.zstack_AIOS_cta-inner {
	position: relative;
	text-align: center;
}

.zstack_AIOS_cta-title {
	font-size: clamp(28px, 3.5vw, 52px);
	font-weight: 800;
	color: #fff;
	letter-spacing: -0.03em;
	margin: 16px 0 12px;
}

.zstack_AIOS_cta-sub {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.60);
	margin-bottom: 48px;
}

.zstack_AIOS_cta-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	max-width: 800px;
	margin: 0 auto;
}

.zstack_AIOS_cta-card {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--radius);
	padding: 32px;
	text-align: left;
	display: flex;
	flex-direction: column;
	gap: 12px;
	transition: background .2s, border-color .2s;
}

.zstack_AIOS_cta-card:hover {
	background: rgba(255, 255, 255, 0.13);
	border-color: rgba(255, 255, 255, 0.28);
}

.zstack_AIOS_cta-card-label {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-family: var(--mono);
	color: rgba(255, 255, 255, 0.40);
}

.zstack_AIOS_cta-card-title {
	font-size: 18px;
	font-weight: 700;
	color: #fff;
}

.zstack_AIOS_cta-card-body {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.55);
	line-height: 1.65;
	flex: 1;
}

.zstack_AIOS_cta-card-note {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.28);
	font-family: var(--mono);
}

/* ══════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════ */
@media (max-width: 1024px) {
	.zstack_AIOS_advantages-row {
		grid-template-columns: repeat(3, 1fr);
	}

	.zstack_AIOS_compat-chip-row,
	.zstack_AIOS_compat-platform-row {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 900px) {
	.zstack_AIOS_hero-stats {
		grid-template-columns: repeat(2, 1fr);
	}

	.zstack_AIOS_why-grid,
	.zstack_AIOS_usecases-grid,
	.zstack_AIOS_testimonials,
	.zstack_AIOS_cta-cards {
		grid-template-columns: 1fr;
	}

	.zstack_AIOS_compat-chip-row,
	.zstack_AIOS_compat-platform-row {
		grid-template-columns: 1fr;
	}

	.zstack_AIOS_layer-card-list {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.zstack_AIOS_advantages-row {
		grid-template-columns: repeat(2, 1fr);
	}

	.zstack_AIOS_hero-stats {
		grid-template-columns: 1fr 1fr;
	}

	.wrap {
		padding: 0 20px;
	}

	.nav-links {
		display: none;
	}
}

/* ═══════════ zstack-ZVF.html ═══════════ */


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

:root {
	--bg: #ffffff;
	--bg-alt: #f8fafc;
	--bg-card: #ffffff;
	--blue: #00579c;
	--blue-dim: #004a85;
	--blue-glow: rgba(0, 87, 156, 0.22);
	--blue-faint: rgba(0, 87, 156, 0.07);
	--blue-mid: rgba(0, 87, 156, 0.14);
	--blue-light: rgba(0, 87, 156, 0.10);
	--orange: #e65100;
	--orange-dim: rgba(230, 81, 0, 0.10);
	--teal: #00897b;
	--teal-dim: rgba(0, 137, 123, 0.10);
	--green: #2e7d32;
	--green-dim: rgba(46, 125, 50, 0.10);
	--amber: #b45309;
	--amber-dim: rgba(180, 83, 9, 0.08);
	--border: rgba(148, 163, 184, 0.28);
	--border-hi: rgba(0, 87, 156, 0.20);
	--t1: #0f172a;
	--t2: #475569;
	--t3: #94a3b8;
	--font: 'Inter', system-ui, sans-serif;
	--mono: 'JetBrains Mono', monospace;
	--radius: 14px;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font);
	background: var(--bg);
	color: var(--t1);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

.wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 32px;
}

.wrap-w {
	max-width: 1380px;
	margin: 0 auto;
	padding: 0 32px;
}

/* ── Label chips ── */
.zstack_ZVF_lbl {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	color: var(--blue);
	background: var(--blue-faint);
	border: 1px solid var(--border-hi);
	border-radius: 100px;
	padding: 4px 14px;
}

.zstack_ZVF_lbl--orange {
	color: var(--orange);
	background: var(--orange-dim);
	border-color: rgba(230, 81, 0, 0.25);
}

.zstack_ZVF_lbl--teal {
	color: var(--teal);
	background: var(--teal-dim);
	border-color: rgba(0, 137, 123, 0.25);
}

/* ── Buttons ── */
.zstack_ZVF_btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font);
	font-weight: 700;
	border-radius: 8px;
	border: none;
	cursor: pointer;
	transition: all .2s;
	text-decoration: none;
}

.zstack_ZVF_btn--lg {
	padding: 14px 28px;
	font-size: 16px;
}

.zstack_ZVF_btn--md {
	padding: 11px 22px;
	font-size: 15px;
}

.zstack_ZVF_btn--primary {
	background: var(--blue);
	color: #fff;
}

.zstack_ZVF_btn--primary:hover {
	background: var(--blue-dim);
	box-shadow: 0 0 28px 8px var(--blue-glow);
}

.zstack_ZVF_btn--ghost {
	background: transparent;
	color: var(--t1);
	border: 1.5px solid var(--border);
}

.zstack_ZVF_btn--ghost:hover {
	border-color: var(--blue);
	color: var(--blue);
}

/* On blue-bg (hero / CTA) */
.zstack_ZVF_btn--inv {
	background: #fff;
	color: var(--blue);
	box-shadow: 0 2px 0 rgba(0, 0, 0, 0.14);
}

.zstack_ZVF_btn--inv:hover {
	background: #e8f0fb;
	transform: translateY(-1px);
}

.zstack_ZVF_btn--outline-white {
	background: transparent;
	color: #fff;
	border: 1.5px solid rgba(255, 255, 255, 0.40);
}

.zstack_ZVF_btn--outline-white:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: #fff;
}

/* ── Section headers ── */
.zstack_ZVF_h2 {
	font-size: clamp(28px, 3.8vw, 46px);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.1;
}

.zstack_ZVF_h2 em {
	font-style: normal;
	color: var(--blue);
}

.zstack_ZVF_sec-sub {
	font-size: 17px;
	color: var(--t2);
	line-height: 1.72;
	margin-top: 14px;
}

.zstack_ZVF_sec-header {
	margin-bottom: 56px;
}

.zstack_ZVF_sec-header-c {
	text-align: center;
	margin-bottom: 56px;
}

/* ── Fade ── */
.zstack_ZVF_fade {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .6s ease, transform .6s ease;
}

.zstack_ZVF_fade.zstack_ZVF_in {
	opacity: 1;
	transform: none;
}



/* ══════════════════════════════════════════════
       HERO — #00579c full-bleed
    ══════════════════════════════════════════════ */
.zstack_ZVF_hero {
	min-height: 100vh;
	padding-top: 100px;
	background: var(--blue);
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.zstack_ZVF_hero-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 70% 55% at 50% 0%, rgba(255, 255, 255, 0.09) 0%, transparent 65%),
		radial-gradient(ellipse 55% 45% at 90% 80%, rgba(0, 112, 198, 0.55) 0%, transparent 60%),
		radial-gradient(ellipse 40% 40% at 5% 70%, rgba(0, 36, 72, 0.40) 0%, transparent 60%);
}

.zstack_ZVF_hero-grid-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 20%, transparent 75%);
}

.zstack_ZVF_hero-body {
	position: relative;
	z-index: 1;
	text-align: center;
	/*padding: 80px 32px 80px;*/
}

.zstack_ZVF_hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.90);
	background: rgba(255, 255, 255, 0.13);
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 100px;
	padding: 6px 16px;
	margin-bottom: 32px;
}

.zstack_ZVF_hero-badge-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #4ade80;
	animation: pulse 2s infinite;
}

@keyframes pulse {

	0%,
	100% {
		opacity: 1;
		transform: scale(1)
	}

	50% {
		opacity: .6;
		transform: scale(1.35)
	}
}

.zstack_ZVF_hero-title {
	font-size: clamp(28px, 4.8vw, 66px);
	font-weight: 900;
	letter-spacing: -0.04em;
	line-height: 1.02;
	max-width: 1100px;
	margin: 0 auto 28px;
	white-space: nowrap;
}

.zstack_ZVF_hero-title .zstack_ZVF_line1 {
	display: block;
	color: #fff;
}

.zstack_ZVF_hero-title .zstack_ZVF_line2 {
	display: block;
	background: linear-gradient(125deg, #ffffff 0%, #a8d4ff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

@media (max-width: 1100px) {
	.zstack_ZVF_hero-title {
		white-space: normal;
	}
}

.zstack_ZVF_hero-sub {
	font-size: clamp(15px, 1.5vw, 18px);
	color: rgba(255, 255, 255, 0.65);
	line-height: 1.72;
	max-width: 680px;
	margin: 0 auto 48px;
}

.zstack_ZVF_hero-actions {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 72px;
}

/* Stats bar */
.zstack_ZVF_hero-stats {
	display: flex;
	max-width: 960px;
	margin: 0 auto;
	background: rgba(255, 255, 255, 0.10);
	border: 1px solid rgba(255, 255, 255, 0.20);
	border-radius: var(--radius);
	overflow: hidden;
	backdrop-filter: blur(10px);
}

.zstack_ZVF_hstat {
	flex: 1;
	padding: 28px 30px;
	text-align: left;
	border-right: 1px solid rgba(255, 255, 255, 0.13);
	position: relative;
}

.zstack_ZVF_hstat::before {
	content: '';
	position: absolute;
	left: 0;
	top: 16px;
	bottom: 16px;
	width: 2px;
	background: rgba(255, 255, 255, 0.4);
}

.zstack_ZVF_hstat:last-child {
	border-right: none;
}

.zstack_ZVF_hstat-n {
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: #fff;
	margin-bottom: 5px;
	line-height: 1;
}

.zstack_ZVF_hstat-n span {
	font-size: 12px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.6);
}

.zstack_ZVF_hstat-l {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.6);
	line-height: 1.45;
}


/* ══════════════════════════════════════════════
       TRUST BAR
    ══════════════════════════════════════════════ */
.zstack_ZVF_trust-bar {
	padding: 64px 0;
	background: var(--bg);
	border-bottom: 1px solid var(--border);
}

.zstack_ZVF_trust-bar-lbl {
	text-align: center;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--t3);
	margin-bottom: 44px;
}

.zstack_ZVF_trust-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.zstack_ZVF_tcard {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 28px 30px;
	position: relative;
	overflow: hidden;
	transition: border-color .2s, transform .2s, box-shadow .2s;
}

.zstack_ZVF_tcard:hover {
	border-color: var(--border-hi);
	transform: translateY(-3px);
	box-shadow: 0 12px 32px -8px rgba(0, 87, 156, 0.10);
}

.zstack_ZVF_tcard::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--blue), var(--teal));
}

.zstack_ZVF_tcard-org {
	font-size: 13px;
	font-weight: 800;
	color: var(--blue);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 10px;
	font-family: var(--mono);
}

.zstack_ZVF_tcard-txt {
	font-size: 14px;
	font-weight: 500;
	color: var(--t1);
	line-height: 1.55;
}

.zstack_ZVF_tcard-meta {
	margin-top: 10px;
	font-size: 11px;
	color: var(--t3);
	font-family: var(--mono);
}


/* ══════════════════════════════════════════════
       PAIN — alt bg
    ══════════════════════════════════════════════ */
.zstack_ZVF_pain-section {
	padding: 120px 0;
	background: var(--bg-alt);
}

.zstack_ZVF_pain-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-bottom: 52px;
}

.zstack_ZVF_pcard {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 30px;
	display: flex;
	gap: 18px;
	align-items: flex-start;
	transition: border-color .2s, transform .2s, box-shadow .2s;
}

.zstack_ZVF_pcard:hover {
	border-color: var(--border-hi);
	transform: translateY(-3px);
	box-shadow: 0 10px 28px -6px rgba(0, 87, 156, 0.10);
}

.zstack_ZVF_pcard-icon {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	flex-shrink: 0;
	background: var(--amber-dim);
	border: 1px solid rgba(180, 83, 9, 0.18);
	display: grid;
	place-items: center;
	font-size: 20px;
}
.zstack_ZVF_pcard-icon img{
	width: 30px;
}
.zstack_ZVF_pcard-title {
	font-size: 17px;
	font-weight: 700;
	color: var(--t1);
	margin-bottom: 6px;
	letter-spacing: -0.01em;
}

.zstack_ZVF_pcard-txt {
	font-size: 13.5px;
	color: var(--t2);
	line-height: 1.67;
}

.zstack_ZVF_pain-coda {
	text-align: center;
	padding: 36px 40px;
	border-radius: var(--radius);
	background: var(--blue);
}

.zstack_ZVF_pain-coda p {
	font-size: 20px;
	font-weight: 700;
	color: #fff;
}

.zstack_ZVF_pain-coda p span {
	color: #a8d4ff;
}


/* ══════════════════════════════════════════════
       CAPABILITIES — white
    ══════════════════════════════════════════════ */
.zstack_ZVF_cmp-section {
	padding: 120px 0;
	background: var(--bg);
}

.zstack_ZVF_ctable {
	width: 100%;
	border-collapse: collapse;
	min-width: 700px;
}

.zstack_ZVF_ctable th {
	padding: 12px 22px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--t3);
	text-align: left;
	border-bottom: 2px solid var(--bg-alt);
	font-family: var(--mono);
}

.zstack_ZVF_ctable th.zstack_ZVF_col-z {
	background: var(--blue-faint);
	color: var(--blue);
}

.zstack_ZVF_ctable td {
	padding: 13px 22px;
	font-size: 13.5px;
	color: var(--t2);
	border-bottom: 1px solid var(--bg-alt);
}

.zstack_ZVF_ctable tr:hover td {
	background: var(--blue-faint);
}

.zstack_ZVF_ctable tr:hover td.zstack_ZVF_col-z {
	background: var(--blue-mid);
}

.zstack_ZVF_ctable td.zstack_ZVF_col-f {
	font-weight: 600;
	color: var(--t1);
}

.zstack_ZVF_ctable td.zstack_ZVF_col-z {
	background: var(--blue-faint);
	color: var(--t1);
	font-weight: 500;
}

.zstack_ZVF_chk {
	color: var(--blue);
	font-weight: 800;
}

.zstack_ZVF_crs {
	color: var(--t3);
}

.zstack_ZVF_bdg {
	display: inline-block;
	font-size: 10px;
	font-weight: 700;
	background: var(--blue-faint);
	color: var(--blue);
	border-radius: 4px;
	padding: 2px 8px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	font-family: var(--mono);
}

.zstack_ZVF_bdg--m {
	background: var(--bg-alt);
	color: var(--t3);
}

.zstack_ZVF_beyond-title {
	margin: 56px 0 20px;
}

.zstack_ZVF_bgrid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.zstack_ZVF_bi {
	background: var(--bg-alt);
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 20px;
	display: flex;
	align-items: center;
	gap: 14px;
	transition: border-color .2s;
}

.zstack_ZVF_bi:hover {
	border-color: var(--border-hi);
}

.zstack_ZVF_bi-dot {
	width: 2px;
	height: 36px;
	background: var(--blue);
	border-radius: 2px;
	flex-shrink: 0;
}

.zstack_ZVF_bi-name {
	font-size: 13px;
	font-weight: 600;
	color: var(--t1);
}


/* ══════════════════════════════════════════════
       SIX PILLARS — alt bg
    ══════════════════════════════════════════════ */
.zstack_ZVF_pillars-section {
	padding: 120px 0;
	background: var(--bg-alt);
}

.zstack_ZVF_pgrid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.zstack_ZVF_pl {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 36px 30px;
	position: relative;
	overflow: hidden;
	transition: border-color .25s, box-shadow .25s, transform .25s;
}

.zstack_ZVF_pl:hover {
	border-color: var(--border-hi);
	transform: translateY(-3px);
	box-shadow: 0 12px 32px -8px rgba(0, 87, 156, 0.12);
}

.zstack_ZVF_pl:nth-child(1)::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--blue), #0277bd);
}

.zstack_ZVF_pl:nth-child(2)::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--teal), var(--blue));
}

.zstack_ZVF_pl:nth-child(3)::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--amber), #f59e0b);
}

.zstack_ZVF_pl:nth-child(4)::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #0277bd, var(--teal));
}

.zstack_ZVF_pl:nth-child(5)::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--green), var(--teal));
}

.zstack_ZVF_pl:nth-child(6)::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--blue-dim), var(--blue));
}

.zstack_ZVF_pl-ghost {
	position: absolute;
	top: -14px;
	right: 16px;
	font-size: 96px;
	font-weight: 900;
	line-height: 1;
	color: rgba(0, 87, 156, 0.04);
	pointer-events: none;
	font-family: var(--mono);
}

.zstack_ZVF_pl-num {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--blue);
	font-family: var(--mono);
	margin-bottom: 10px;
	background: var(--blue-faint);
	border: 1px solid var(--border-hi);
	border-radius: 6px;
	padding: 3px 8px;
	display: inline-block;
}

.zstack_ZVF_pl-title {
	font-size: 21px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--t1);
	margin-bottom: 5px;
	margin-top: 8px;
}

.zstack_ZVF_pl-tl {
	font-size: 13px;
	color: var(--t2);
	font-style: italic;
	line-height: 1.55;
	margin-bottom: 22px;
}

.zstack_ZVF_pl-items {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.zstack_ZVF_pl-item {
	display: flex;
	gap: 11px;
	align-items: flex-start;
}

.zstack_ZVF_pl-item-dot {
	width: 2px;
	height: 18px;
	background: var(--border);
	border-radius: 2px;
	flex-shrink: 0;
	margin-top: 4px;
}

.zstack_ZVF_pl-item-txt {
	font-size: 12.5px;
	color: var(--t2);
	line-height: 1.65;
}

.zstack_ZVF_pl-item-txt strong {
	color: var(--t1);
	font-weight: 600;
}

.zstack_ZVF_pl-stat {
	margin-top: 18px;
	display: inline-block;
	font-family: var(--mono);
	font-size: 11px;
	color: var(--blue);
	background: var(--blue-faint);
	border: 1px solid var(--border-hi);
	border-radius: 5px;
	padding: 5px 11px;
}


/* ══════════════════════════════════════════════
       MIGRATION — white
    ══════════════════════════════════════════════ */
.zstack_ZVF_mig-section {
	padding: 120px 0;
	background: var(--bg);
}

.zstack_ZVF_mig-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	margin-bottom: 28px;
	box-shadow: 0 2px 14px rgba(0, 87, 156, 0.06);
}

.zstack_ZVF_ms {
	padding: 48px 38px;
	border-right: 1px solid var(--border);
}

.zstack_ZVF_ms:last-child {
	border-right: none;
}

.zstack_ZVF_ms-num {
	font-family: var(--mono);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--t3);
	margin-bottom: 20px;
}

.zstack_ZVF_ms-icon {
	width: 52px;
	height: 52px;
	border-radius: 10px;
	margin-bottom: 22px;
	display: grid;
	place-items: center;
	font-size: 24px;
}
.zstack_ZVF_ms-icon img{
	width: 30px;
}
.zstack_ZVF_ms:nth-child(1) .zstack_ZVF_ms-icon {
	background: var(--blue-faint);
}

.zstack_ZVF_ms:nth-child(2) .zstack_ZVF_ms-icon {
	background: var(--blue-faint);
}

.zstack_ZVF_ms:nth-child(3) .zstack_ZVF_ms-icon {
	background: var(--blue-faint);
}

.zstack_ZVF_ms-title {
	font-size: 19px;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--t1);
	margin-bottom: 12px;
}

.zstack_ZVF_ms-txt {
	font-size: 13.5px;
	color: var(--t2);
	line-height: 1.72;
}

.zstack_ZVF_mig-footer {
	text-align: center;
	font-size: 12px;
	color: var(--t3);
	font-family: var(--mono);
}

.zstack_ZVF_mig-footer span {
	color: var(--green);
	font-weight: 700;
}


/* ══════════════════════════════════════════════
       USE CASES — alt bg
    ══════════════════════════════════════════════ */
.zstack_ZVF_uc-section {
	padding: 120px 0;
	background: var(--bg-alt);
}

.zstack_ZVF_ucgrid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.zstack_ZVF_uc {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 40px 34px;
	transition: border-color .22s, box-shadow .22s, transform .22s;
}

.zstack_ZVF_uc:hover {
	border-color: var(--border-hi);
	box-shadow: 0 10px 28px -6px rgba(0, 87, 156, 0.10);
	transform: translateY(-3px);
}

.zstack_ZVF_uc-num {
	font-family: var(--mono);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--t3);
	margin-bottom: 14px;
}

.zstack_ZVF_uc-title {
	font-size: 21px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--t1);
	margin-bottom: 18px;
}

.zstack_ZVF_uc-tags {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.zstack_ZVF_uc-tag {
	font-size: 12px;
	font-weight: 600;
	background: var(--bg-alt);
	border: 1px solid var(--border);
	border-radius: 5px;
	padding: 4px 12px;
	color: var(--t2);
}

.zstack_ZVF_uc-metric {
	margin-top: 18px;
	font-size: 13px;
	font-weight: 700;
	color: var(--blue);
	font-family: var(--mono);
}


/* ══════════════════════════════════════════════
       COMPAT — white
    ══════════════════════════════════════════════ */
.zstack_ZVF_compat-section {
	padding: 120px 0;
	background: var(--bg);
}

.zstack_ZVF_arch-row {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 52px;
}

.zstack_ZVF_arch-chip {
	font-size: 13px;
	font-weight: 600;
	background: var(--blue-faint);
	color: var(--blue);
	border: 1px solid var(--border-hi);
	border-radius: 7px;
	padding: 8px 18px;
}

.zstack_ZVF_vendors-row {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 28px;
}

.zstack_ZVF_vchip {
	background: var(--bg-alt);
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: 13px 22px;
	font-size: 14px;
	font-weight: 600;
	color: var(--t2);
	transition: all .18s;
}

.zstack_ZVF_vchip:hover {
	background: var(--blue);
	color: #fff;
	border-color: var(--blue);
}

.zstack_ZVF_compat-link {
	text-align: center;
	font-size: 14px;
}

.zstack_ZVF_compat-link a {
	color: var(--blue);
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.zstack_ZVF_compat-link a:hover {
	text-decoration: underline;
}


/* ══════════════════════════════════════════════
       CASES — alt bg
    ══════════════════════════════════════════════ */
.zstack_ZVF_cases-section {
	padding: 120px 0;
	background: var(--bg-alt);
}

.zstack_ZVF_casgrid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.zstack_ZVF_cc {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 34px 28px;
	display: flex;
	flex-direction: column;
	gap: 18px;
	transition: border-color .2s, transform .2s, box-shadow .2s;
}

.zstack_ZVF_cc:hover {
	border-color: var(--border-hi);
	transform: translateY(-3px);
	box-shadow: 0 10px 28px -6px rgba(0, 87, 156, 0.10);
}

.zstack_ZVF_cc-org {
	display: flex;
	align-items: center;
	gap: 14px;
}

.zstack_ZVF_cc-avatar {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	flex-shrink: 0;
	background: var(--blue-faint);
	display: grid;
	place-items: center;
	font-size: 20px;
}

.zstack_ZVF_cc-name {
	font-size: 14px;
	font-weight: 700;
	color: var(--t1);
}

.zstack_ZVF_cc-type {
	font-size: 12px;
	color: var(--t3);
}

.zstack_ZVF_cc-divider {
	height: 1px;
	background: var(--border);
}

.zstack_ZVF_cc-row {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.zstack_ZVF_cc-row-lbl {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--t3);
	font-family: var(--mono);
}

.zstack_ZVF_cc-row-txt {
	font-size: 12.5px;
	color: var(--t2);
	line-height: 1.65;
}

.zstack_ZVF_cc-res {
	background: var(--green-dim);
	border: 1px solid rgba(46, 125, 50, 0.18);
	border-radius: 8px;
	padding: 12px 14px;
}

.zstack_ZVF_cc-res-lbl {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--green);
	font-family: var(--mono);
	margin-bottom: 4px;
}

.zstack_ZVF_cc-res-txt {
	font-size: 12.5px;
	font-weight: 500;
	color: var(--t1);
}


/* ══════════════════════════════════════════════
       FINAL CTA — dark gradient with 3 cards
    ══════════════════════════════════════════════ */
.zstack_ZVF_cta-section {
	padding: 140px 0;
	position: relative;
	overflow: hidden;
	background: linear-gradient(160deg, #00579c 0%, #003a6e 55%, #1a2744 100%);
}

.zstack_ZVF_cta-section::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	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: 48px 48px;
}

.zstack_ZVF_cta-glow {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 55% 60% at 15% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 65%),
		radial-gradient(ellipse 45% 50% at 85% 50%, rgba(230, 81, 0, 0.10) 0%, transparent 65%);
}

.zstack_ZVF_cta-inner {
	position: relative;
	z-index: 1;
}

.zstack_ZVF_cta-title {
    margin-top: 16px;
	font-size: clamp(28px, 3.5vw, 52px);
	font-weight: 900;
	letter-spacing: -0.04em;
	line-height: 1.04;
	text-align: center;
	color: #fff;
	margin-bottom: 12px;
}

.zstack_ZVF_cta-sub {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.72);
	text-align: center;
	line-height: 1.65;
	margin-bottom: 64px;
}

.zstack_ZVF_cta-cards {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.zstack_ZVF_cta-card {
	width: calc((100% - 40px) / 3);
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 16px;
	padding: 36px 30px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	transition: background .2s, border-color .2s, transform .2s;
}

.zstack_ZVF_cta-card:hover {
	background: rgba(255, 255, 255, 0.13);
	border-color: rgba(255, 255, 255, 0.28);
	transform: translateY(-3px);
}

.zstack_ZVF_cta-card--primary {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.30);
}

.zstack_ZVF_cta-card-eyebrow {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
	font-family: var(--mono);
}

.zstack_ZVF_cta-card-title {
	font-size: 20px;
	font-weight: 800;
	color: #fff;
	letter-spacing: -0.02em;
}

.zstack_ZVF_cta-card-txt {
	font-size: 13.5px;
	color: rgba(255, 255, 255, 0.68);
	line-height: 1.65;
	flex: 1;
}


/* ══════════════════════════════════════════════
       CUSTOMER STORIES — white + stats + marquee + testimonials
    ══════════════════════════════════════════════ */
.zstack_ZVF_cases-section {
	padding: 120px 0;
	background: var(--bg);
}

.zstack_ZVF_customer-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin: 56px 0;
}

.zstack_ZVF_cstat {
	text-align: center;
	padding: 32px 20px;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	transition: border-color .2s;
}

.zstack_ZVF_cstat:hover {
	border-color: var(--border-hi);
}

.zstack_ZVF_cstat-n {
	font-size: 42px;
	font-weight: 900;
	letter-spacing: -0.04em;
	color: var(--blue);
	line-height: 1;
	margin-bottom: 8px;
}

.zstack_ZVF_cstat-l {
	font-size: 13px;
	color: var(--t3);
}

/* Marquee */
.zstack_ZVF_marquee-wrap {
	overflow: hidden;
	position: relative;
	margin-bottom: 60px;
}

.zstack_ZVF_marquee-wrap::before,
.zstack_ZVF_marquee-wrap::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 120px;
	z-index: 2;
	pointer-events: none;
}

.zstack_ZVF_marquee-wrap::before {
	left: 0;
	background: linear-gradient(to right, var(--bg), transparent);
}

.zstack_ZVF_marquee-wrap::after {
	right: 0;
	background: linear-gradient(to left, var(--bg), transparent);
}

.zstack_ZVF_marquee-track {
	display: flex;
	gap: 28px;
	width: max-content;
}

.zstack_ZVF_marquee-track:hover {
	animation-play-state: paused;
}

.zstack_ZVF_marquee-row-1 {
	animation: scroll-left 18s linear infinite;
}

.zstack_ZVF_marquee-row-2 {
	animation: scroll-right 24s linear infinite;
}

.zstack_ZVF_marquee-row-3 {
	animation: scroll-left 13s linear infinite;
}

.zstack_ZVF_marquee-track+.zstack_ZVF_marquee-track {
	margin-top: 12px;
}

@keyframes scroll-left {
	from {
		transform: translateX(0)
	}

	to {
		transform: translateX(-50%)
	}
}

@keyframes scroll-right {
	from {
		transform: translateX(-50%)
	}

	to {
		transform: translateX(0)
	}
}

.zstack_ZVF_logo-chip {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: 12px 28px;
	font-size: 14px;
	font-weight: 700;
	color: var(--t2);
	white-space: nowrap;
	flex-shrink: 0;
	transition: color .2s, border-color .2s;
}

.zstack_ZVF_logo-chip:hover {
	color: var(--blue);
	border-color: var(--border-hi);
}

/* Testimonial cards */
.zstack_ZVF_testimonials {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.zstack_ZVF_testi {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 32px 28px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	transition: border-color .2s, transform .2s;
}

.zstack_ZVF_testi:hover {
	border-color: var(--border-hi);
	transform: translateY(-3px);
}

.zstack_ZVF_testi-industry {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--blue);
	font-family: var(--mono);
}

.zstack_ZVF_testi-quote {
	font-size: 14px;
	color: var(--t2);
	line-height: 1.72;
	flex: 1;
}

.zstack_ZVF_testi-divider {
	height: 1px;
	background: var(--border);
}

.zstack_ZVF_testi-org {
	display: flex;
	align-items: center;
	gap: 14px;
}

.zstack_ZVF_testi-avatar {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	flex-shrink: 0;
	background: linear-gradient(135deg, var(--blue-faint), var(--teal-dim));
	display: grid;
	place-items: center;
	font-size: 16px;
	font-weight: 800;
	color: var(--blue);
}

.zstack_ZVF_testi-name {
	font-size: 14px;
	font-weight: 700;
	color: var(--t1);
}

.zstack_ZVF_testi-type {
	font-size: 12px;
	color: var(--t3);
}

.zstack_ZVF_testi-link {
	font-size: 12px;
	font-weight: 600;
	color: var(--blue);
	display: flex;
	align-items: center;
	gap: 4px;
	transition: gap .2s;
}

.zstack_ZVF_testi:hover .zstack_ZVF_testi-link {
	gap: 7px;
}

/* Cases CTA row */
.zstack_ZVF_cases-cta-row {
	display: flex;
	gap: 12px;
	justify-content: center;
	margin-top: 48px;
	flex-wrap: wrap;
}

/* ── Responsive ── */
@media (max-width: 960px) {

	.zstack_ZVF_trust-cards,
	.zstack_ZVF_pgrid,
	.zstack_ZVF_casgrid,
	.zstack_ZVF_cta-cards,
	.zstack_ZVF_testimonials {
		grid-template-columns: 1fr;
	}

	.zstack_ZVF_customer-stats {
		grid-template-columns: 1fr 1fr;
	}

	.zstack_ZVF_mig-steps {
		grid-template-columns: 1fr;
	}

	.zstack_ZVF_ms {
		border-right: none;
		border-bottom: 1px solid var(--border);
	}

	.zstack_ZVF_ms:last-child {
		border-bottom: none;
	}

	.nav-links {
		display: none;
	}
}

@media (max-width: 640px) {

	.zstack_ZVF_pain-grid,
	.zstack_ZVF_ucgrid,
	.zstack_ZVF_bgrid {
		grid-template-columns: 1fr;
	}

	.zstack_ZVF_hero-stats {
		flex-direction: column;
	}

	.zstack_ZVF_hstat {
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	}

	.zstack_ZVF_hstat:last-child {
		border-bottom: none;
	}

	.zstack_ZVF_cta-cards {
		grid-template-columns: 1fr;
	}
}


/* ═══════════ zstack-education.html ═══════════ */
/* ─── Reset ─────────────────────────────────────────── */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	/* Backgrounds */
	--bg: #ffffff;
	--bg-alt: #f8fafc;
	--bg-card: #ffffff;

	/* Primary */
	--blue: #00579c;
	--blue-dim: #004a85;
	--blue-glow: rgba(0, 87, 156, 0.22);
	--blue-faint: rgba(0, 87, 156, 0.07);
	--blue-mid: rgba(0, 87, 156, 0.14);

	/* Accent */
	--orange: #e65100;
	--orange-dim: rgba(230, 81, 0, 0.10);
	--teal: #00897b;
	--teal-dim: rgba(0, 137, 123, 0.10);
	--green: #2e7d32;

	/* Borders */
	--border: rgba(148, 163, 184, 0.28);
	--border-hi: rgba(0, 87, 156, 0.20);

	/* Text */
	--t1: #0f172a;
	--t2: #475569;
	--t3: #94a3b8;

	--font: 'Inter', system-ui, sans-serif;
	--mono: 'JetBrains Mono', monospace;
	--radius: 14px;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font);
	background: var(--bg);
	color: var(--t1);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

/* ─── Fade animation ─────────────────────────────────── */
.zstack_education_fade {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .6s ease, transform .6s ease;
}

.zstack_education_fade.zstack_education_in {
	opacity: 1;
	transform: none;
}

/* ─── Layout ─────────────────────────────────────────── */
.zstack_education_inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 32px;
}

/* ─── Label chip ─────────────────────────────────────── */
.zstack_education_lbl {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	font-family: var(--mono);
	color: var(--blue);
	background: var(--blue-faint);
	border: 1px solid var(--border-hi);
	border-radius: 100px;
	padding: 4px 14px;
}

/* ─── SHARED BUTTONS ──────────────────────────────────── */
/* design.zstack_education_md: btn--primary with glow, btn--ghost */
.zstack_education_btn-p {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font);
	font-size: 15px;
	font-weight: 700;
	background: var(--blue);
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 13px 26px;
	cursor: pointer;
	transition: all .2s;
}

.zstack_education_btn-p:hover {
	background: var(--blue-dim);
	box-shadow: 0 0 28px 8px var(--blue-glow);
}

.zstack_education_btn-s {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font);
	font-size: 15px;
	font-weight: 600;
	background: transparent;
	color: var(--t1);
	border: 1.5px solid var(--border);
	border-radius: 8px;
	padding: 12px 24px;
	cursor: pointer;
	transition: all .2s;
}

.zstack_education_btn-s:hover {
	border-color: var(--blue);
	color: var(--blue);
}

.zstack_education_btn-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font);
	font-size: 14px;
	font-weight: 600;
	background: transparent;
	color: var(--t2);
	border: 1.5px solid var(--border);
	border-radius: 100px;
	padding: 10px 32px;
	cursor: pointer;
	transition: all .2s;
}

.zstack_education_btn-pill:hover {
	border-color: var(--blue);
	color: var(--blue);
}

/* ─── HERO ────────────────────────────────────────────── */
/* design.zstack_education_md: linear-gradient(180deg, #f0f6ff 0%, #ffffff 60%) + grid + glow */
.zstack_education_hero-wrap {
	background: linear-gradient(180deg, #f0f6ff 0%, #ffffff 60%);
	position: relative;
	overflow: hidden;
	padding-top: 100px;
}

/* Grid background */
.zstack_education_hero-wrap::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(0, 87, 156, .06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 87, 156, .06) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 20%, transparent 70%);
}

/* Glow */
.zstack_education_hero-wrap::after {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 55% 45% at 20% 60%, rgba(0, 87, 156, .06) 0%, transparent 65%),
		radial-gradient(ellipse 50% 40% at 80% 40%, rgba(230, 81, 0, .04) 0%, transparent 65%);
}

.zstack_education_hero-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 80px 32px 96px;
	display: grid;
	grid-template-columns: 1fr 460px;
	gap: 72px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.zstack_education_hero-left {
	display: flex;
	flex-direction: column;
}

.zstack_education_hero-bc {
	font-size: 13px;
	font-weight: 600;
	color: var(--blue);
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 24px;
	cursor: pointer;
}

.zstack_education_hero-bc svg {
	width: 14px;
	height: 14px;
	stroke: var(--blue);
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
}

/* design.zstack_education_md 5.7: hero-badge — orange pill with pulse dot */
.zstack_education_hero-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-family: var(--mono);
	color: var(--orange);
	background: var(--orange-dim);
	border: 1px solid rgba(230, 81, 0, .22);
	border-radius: 100px;
	padding: 6px 16px;
	margin-bottom: 22px;
	align-self: flex-start;
}

.zstack_education_hero-label-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--orange);
	flex-shrink: 0;
	animation: pulse 2s infinite;
}

@keyframes pulse {

	0%,
	100% {
		opacity: 1;
		transform: scale(1)
	}

	50% {
		opacity: .6;
		transform: scale(1.35)
	}
}

/* design.zstack_education_md H1: weight 900, first line dark, second line blue gradient */
.zstack_education_hero-h1 {
	font-size: clamp(26px, 3.6vw, 44px);
	font-weight: 900;
	letter-spacing: -0.04em;
	line-height: 1.04;
	margin-bottom: 22px;
	color: var(--t1);
}

/* gradient span for semantic highlight line */
.zstack_education_hero-h1 .zstack_education_h1-accent {
	background: linear-gradient(125deg, var(--blue) 0%, #0277bd 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.zstack_education_hero-p {
	font-size: 17px;
	color: var(--t2);
	line-height: 1.72;
	max-width: 500px;
	margin-bottom: 36px;
}

.zstack_education_hero-btns {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

/* Hero right: trust map */
.zstack_education_hero-right-col {
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 1;
}

.zstack_education_trust-map {
	background: rgba(255, 255, 255, .82);
	border: 1px solid var(--border-hi);
	border-radius: var(--radius) var(--radius) 0 0;
	padding: 20px 16px;
	backdrop-filter: blur(8px);
}

.zstack_education_hero-credibility {
	display: flex;
	align-items: stretch;
	background: var(--bg-card);
	border: 1px solid var(--border-hi);
	border-top: none;
	border-radius: 0 0 var(--radius) var(--radius);
	overflow: hidden;
	box-shadow: 0 4px 16px -4px rgba(0, 87, 156, .12);
}

.zstack_education_hc-item {
	flex: 1;
	padding: 18px 20px;
	text-align: center;
}

/* design.zstack_education_md: stat numbers 32-44px, weight 900, --mono */
.zstack_education_hc-val {
	font-size: 24px;
	font-weight: 900;
	letter-spacing: -0.04em;
	color: var(--blue);
	line-height: 1;
	font-family: var(--mono);
}

.zstack_education_hc-label {
	font-size: 11px;
	color: var(--t3);
	margin-top: 5px;
	line-height: 1.4;
}

.zstack_education_hc-div {
	width: 1px;
	background: var(--border);
	flex-shrink: 0;
}

.zstack_education_hero-divider {
	border: none;
	border-bottom: 1px dashed var(--border);
	margin: 0;
}

/* ─── STICKY SUBNAV（原 chrome-industry.css，仅 education 页）── */
.zstack_education_subnav {
	background: var(--bg);
	border-bottom: 1px solid var(--border);
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	padding: 0 32px;
	z-index: 200;
}

.zstack_education_subnav.zstack_education_stuck {
	position: fixed;
	top: 100px;
	left: 0;
	right: 0;
	box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(0, 0, 0, 0.05);
}

.zstack_education_sn-ph {
	display: none;
	height: 53px;
}

.zstack_education_sn-ph.zstack_education_show {
	display: block;
}

.zstack_education_sn-links-center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.zstack_education_sn-link {
	font-size: 14px;
	color: var(--blue);
	font-weight: 500;
	padding: 16px 22px;
	cursor: pointer;
	position: relative;
	text-decoration: none;
	transition: color 0.15s;
}

.zstack_education_sn-link:hover {
	color: var(--blue-dim);
}

.zstack_education_sn-link.zstack_education_act {
	font-weight: 700;
}

.zstack_education_sn-link.zstack_education_act::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 22px;
	right: 22px;
	height: 2px;
	background: var(--blue);
}

.zstack_education_sn-right {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.zstack_education_btn-sn {
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	background: var(--blue);
	border: none;
	border-radius: 8px;
	padding: 9px 20px;
	cursor: pointer;
	font-family: var(--font);
	transition: background 0.15s;
}

.zstack_education_btn-sn:hover {
	background: var(--blue-dim);
}

/* 行业子导航 zstack-*_subnav（自 chrome-industry 迁入，与 education 子导航布局一致） */
.zstack_energy_subnav,
.zstack_financial_subnav,
.zstack_government_subnav,
.zstack_healthcare_subnav,
.zstack_internet_subnav,
.zstack_manufacturing_subnav,
.zstack_media_subnav,
.zstack_telecom_subnav,
.zstack_transportation_subnav {
	background: var(--bg);
	border-bottom: 1px solid var(--border);
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	padding: 0 32px;
	z-index: 200;
}

.zstack_energy_subnav.zstack_energy_stuck,
.zstack_financial_subnav.zstack_financial_stuck,
.zstack_government_subnav.zstack_government_stuck,
.zstack_healthcare_subnav.zstack_healthcare_stuck,
.zstack_internet_subnav.zstack_internet_stuck,
.zstack_manufacturing_subnav.zstack_manufacturing_stuck,
.zstack_media_subnav.zstack_media_stuck,
.zstack_telecom_subnav.zstack_telecom_stuck,
.zstack_transportation_subnav.zstack_transportation_stuck {
	position: fixed;
	top: 100px;
	left: 0;
	right: 0;
	box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(0, 0, 0, 0.05);
}

.zstack_energy_sn-ph,
.zstack_financial_sn-ph,
.zstack_government_sn-ph,
.zstack_healthcare_sn-ph,
.zstack_internet_sn-ph,
.zstack_manufacturing_sn-ph,
.zstack_media_sn-ph,
.zstack_telecom_sn-ph,
.zstack_transportation_sn-ph {
	display: none;
	height: 53px;
}

.zstack_energy_sn-ph.zstack_energy_show,
.zstack_financial_sn-ph.zstack_financial_show,
.zstack_government_sn-ph.zstack_government_show,
.zstack_healthcare_sn-ph.zstack_healthcare_show,
.zstack_internet_sn-ph.zstack_internet_show,
.zstack_manufacturing_sn-ph.zstack_manufacturing_show,
.zstack_media_sn-ph.zstack_media_show,
.zstack_telecom_sn-ph.zstack_telecom_show,
.zstack_transportation_sn-ph.zstack_transportation_show {
	display: block;
}

.zstack_energy_sn-links-center,
.zstack_financial_sn-links-center,
.zstack_government_sn-links-center,
.zstack_healthcare_sn-links-center,
.zstack_internet_sn-links-center,
.zstack_manufacturing_sn-links-center,
.zstack_media_sn-links-center,
.zstack_telecom_sn-links-center,
.zstack_transportation_sn-links-center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.zstack_energy_sn-link,
.zstack_financial_sn-link,
.zstack_government_sn-link,
.zstack_healthcare_sn-link,
.zstack_internet_sn-link,
.zstack_manufacturing_sn-link,
.zstack_media_sn-link,
.zstack_telecom_sn-link,
.zstack_transportation_sn-link {
	font-size: 14px;
	color: var(--blue);
	font-weight: 500;
	padding: 16px 22px;
	cursor: pointer;
	position: relative;
	text-decoration: none;
	transition: color 0.15s;
}

.zstack_energy_sn-link:hover,
.zstack_financial_sn-link:hover,
.zstack_government_sn-link:hover,
.zstack_healthcare_sn-link:hover,
.zstack_internet_sn-link:hover,
.zstack_manufacturing_sn-link:hover,
.zstack_media_sn-link:hover,
.zstack_telecom_sn-link:hover,
.zstack_transportation_sn-link:hover {
	color: var(--blue-dim);
}

.zstack_energy_sn-link.zstack_energy_act,
.zstack_financial_sn-link.zstack_financial_act,
.zstack_government_sn-link.zstack_government_act,
.zstack_healthcare_sn-link.zstack_healthcare_act,
.zstack_internet_sn-link.zstack_internet_act,
.zstack_manufacturing_sn-link.zstack_manufacturing_act,
.zstack_media_sn-link.zstack_media_act,
.zstack_telecom_sn-link.zstack_telecom_act,
.zstack_transportation_sn-link.zstack_transportation_act {
	font-weight: 700;
}

.zstack_energy_sn-link.zstack_energy_act::after,
.zstack_financial_sn-link.zstack_financial_act::after,
.zstack_government_sn-link.zstack_government_act::after,
.zstack_healthcare_sn-link.zstack_healthcare_act::after,
.zstack_internet_sn-link.zstack_internet_act::after,
.zstack_manufacturing_sn-link.zstack_manufacturing_act::after,
.zstack_media_sn-link.zstack_media_act::after,
.zstack_telecom_sn-link.zstack_telecom_act::after,
.zstack_transportation_sn-link.zstack_transportation_act::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 22px;
	right: 22px;
	height: 2px;
	background: var(--blue);
}

.zstack_energy_sn-right,
.zstack_financial_sn-right,
.zstack_government_sn-right,
.zstack_healthcare_sn-right,
.zstack_internet_sn-right,
.zstack_manufacturing_sn-right,
.zstack_media_sn-right,
.zstack_telecom_sn-right,
.zstack_transportation_sn-right {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.zstack_energy_btn-sn,
.zstack_financial_btn-sn,
.zstack_government_btn-sn,
.zstack_healthcare_btn-sn,
.zstack_internet_btn-sn,
.zstack_manufacturing_btn-sn,
.zstack_media_btn-sn,
.zstack_telecom_btn-sn,
.zstack_transportation_btn-sn {
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	background: var(--blue);
	border: none;
	border-radius: 8px;
	padding: 9px 20px;
	cursor: pointer;
	font-family: var(--font);
	transition: background 0.15s;
}

.zstack_energy_btn-sn:hover,
.zstack_financial_btn-sn:hover,
.zstack_government_btn-sn:hover,
.zstack_healthcare_btn-sn:hover,
.zstack_internet_btn-sn:hover,
.zstack_manufacturing_btn-sn:hover,
.zstack_media_btn-sn:hover,
.zstack_telecom_btn-sn:hover,
.zstack_transportation_btn-sn:hover {
	background: var(--blue-dim);
}

/* ─── SECTION SHARED ──────────────────────────────────── */
/* design.zstack_education_md: H2 clamp(28px, 3.8vw, 46px), weight 800 */
.zstack_education_sec-title {
	font-size: clamp(26px, 3.8vw, 44px);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.1;
	color: var(--t1);
}

.zstack_education_sec-sub {
	font-size: 17px;
	color: var(--t2);
	line-height: 1.72;
}

.zstack_education_eyebrow {
	display: inline-flex;
	align-items: center;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	font-family: var(--mono);
	color: var(--blue);
	background: var(--blue-faint);
	border: 1px solid var(--border-hi);
	border-radius: 100px;
	padding: 4px 14px;
	margin-bottom: 12px;
}

/* ─── BENEFITS A ──────────────────────────────────────── */
/* design.zstack_education_md: --bg section */
.zstack_education_sec-bene-a {
	background: var(--bg);
	padding: 120px 0;
}

.zstack_education_bene-a-hd {
	text-align: center;
	margin-bottom: 72px;
}

.zstack_education_bene-a-hd .zstack_education_sec-title {
	margin-bottom: 18px;
}

.zstack_education_bene-cols {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	text-align: center;
}

.zstack_education_bcol {}

.zstack_education_bcol-icon {
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
}

.zstack_education_bcol-h {
	font-size: 19px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--t1);
	margin-bottom: 12px;
}

.zstack_education_bcol-p {
	font-size: 15px;
	color: var(--t2);
	line-height: 1.7;
}

/* ─── BENEFITS B ──────────────────────────────────────── */
/* design.zstack_education_md: --bg-alt section */
.zstack_education_sec-bene-b {
	background: var(--bg-alt);
	padding: 120px 0;
}

.zstack_education_bene-b-hd {
	text-align: center;
	margin-bottom: 56px;
}

.zstack_education_bene-b-cols {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* design.zstack_education_md: card with top color bar, 14px radius, hover translateY(-3px) */
.zstack_education_bbc {
	display: flex;
	flex-direction: column;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	transition: border-color .2s, transform .2s, box-shadow .2s;
	position: relative;
}

.zstack_education_bbc:hover {
	border-color: var(--border-hi);
	transform: translateY(-3px);
	box-shadow: 0 12px 32px -8px rgba(0, 87, 156, .10);
}

/* top color bar - sequential gradients per design.zstack_education_md */
.zstack_education_bbc:nth-child(1)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--blue), #0277bd);
}

.zstack_education_bbc:nth-child(2)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--teal), var(--blue));
}

.zstack_education_bbc:nth-child(3)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--orange), #ff8a65);
}

.zstack_education_bbc-hd {
	background: var(--blue);
	padding: 28px 26px;
	position: relative;
}

.zstack_education_bbc-hd::after {
	content: '';
	position: absolute;
	bottom: -14px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 14px solid transparent;
	border-right: 14px solid transparent;
	border-top: 15px solid var(--blue);
}

.zstack_education_bbc-hd-title {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	line-height: 1.3;
	text-align: center;
}

.zstack_education_bbc-body {
	background: var(--bg-card);
	padding: 36px 22px 30px;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.zstack_education_bbc-p {
	font-size: 14px;
	color: var(--t2);
	line-height: 1.72;
	flex: 1;
	margin-bottom: 24px;
}

.zstack_education_btn-learn {
	font-family: var(--font);
	font-size: 13px;
	font-weight: 700;
	background: var(--blue);
	color: #fff;
	border: none;
	border-radius: 100px;
	padding: 9px 22px;
	cursor: pointer;
	transition: background .15s;
}

.zstack_education_btn-learn:hover {
	background: var(--blue-dim);
}

/* ─── USE CASES ────────────────────────────────────────── */
/* design.zstack_education_md: --bg section */
.zstack_education_sec-uc {
	background: var(--bg);
	padding: 120px 0;
}

.zstack_education_uc-hd {
	text-align: center;
	margin-bottom: 72px;
}

.zstack_education_uc-layout {
	display: grid;
	grid-template-columns: 1fr 520px;
	gap: 72px;
	align-items: start;
}

.zstack_education_uc-list {
	display: flex;
	flex-direction: column;
}

.zstack_education_uc-item {
	padding: 32px 0;
	border-bottom: 1px solid var(--border);
}

.zstack_education_uc-item:first-child {
	border-top: 1px solid var(--border);
}

.zstack_education_uc-item-h {
	font-size: 18px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--t1);
	margin-bottom: 10px;
}

.zstack_education_uc-item-p {
	font-size: 14px;
	color: var(--t2);
	line-height: 1.72;
	margin-bottom: 12px;
}

.zstack_education_uc-link {
	font-size: 13px;
	font-weight: 700;
	color: var(--blue);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	border-bottom: 1px solid rgba(0, 87, 156, .3);
	transition: border-color .2s;
}

.zstack_education_uc-link svg {
	width: 13px;
	height: 13px;
	stroke: var(--blue);
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
}

.zstack_education_uc-link:hover {
	border-color: var(--blue);
}

/* Mockup */
.zstack_education_uc-mockup {
	position: sticky;
	top: 130px;
}

.zstack_education_mockup-shell {
	background: var(--t1);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(0, 0, 0, .18), 0 0 0 1px rgba(0, 87, 156, .15);
}

.zstack_education_mockup-bar {
	background: #1e2530;
	height: 36px;
	display: flex;
	align-items: center;
	padding: 0 16px;
	gap: 8px;
}

.zstack_education_mockup-dot {
	width: 11px;
	height: 11px;
	border-radius: 50%;
}

.zstack_education_mockup-title {
	font-size: 11px;
	color: rgba(255, 255, 255, .35);
	margin-left: 8px;
}

.zstack_education_mockup-body {
	background: #161b22;
	display: grid;
	grid-template-columns: 190px 1fr;
}

.zstack_education_mockup-sidebar {
	background: #1a1f2e;
	padding: 16px 0;
	border-right: 1px solid rgba(255, 255, 255, .06);
}

.zstack_education_ms-section {
	padding: 8px 16px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .28);
	margin-top: 8px;
}

.zstack_education_ms-item {
	padding: 9px 20px;
	font-size: 12px;
	color: rgba(255, 255, 255, .45);
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: background .15s;
}

.zstack_education_ms-item:hover {
	background: rgba(0, 87, 156, .15);
	color: rgba(255, 255, 255, .8);
}

.zstack_education_ms-item.zstack_education_act {
	background: rgba(0, 87, 156, .25);
	color: #7badd4;
}

.zstack_education_ms-item svg {
	width: 13px;
	height: 13px;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.5;
	opacity: .7;
}

.zstack_education_mockup-main {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.zstack_education_mm-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 4px;
}

.zstack_education_mm-title {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
}

.zstack_education_mm-badge {
	background: rgba(0, 87, 156, .4);
	color: #7badd4;
	font-size: 10px;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 4px;
}

.zstack_education_mm-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
}

.zstack_education_mm-card {
	background: #1e2530;
	padding: 14px;
	border: 1px solid rgba(255, 255, 255, .06);
	border-radius: 6px;
}

.zstack_education_mm-card-label {
	font-size: 9px;
	color: rgba(255, 255, 255, .35);
	margin-bottom: 6px;
	letter-spacing: .05em;
	text-transform: uppercase;
}

.zstack_education_mm-card-val {
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	letter-spacing: -0.02em;
}

.zstack_education_mm-card-sub {
	font-size: 10px;
	color: #4caf50;
	margin-top: 3px;
}

.zstack_education_mm-table {
	background: #1e2530;
	border: 1px solid rgba(255, 255, 255, .06);
	border-radius: 6px;
	overflow: hidden;
}

.zstack_education_mm-table-hd {
	display: grid;
	grid-template-columns: 1fr 60px 70px 60px;
	padding: 8px 12px;
	border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.zstack_education_mm-th {
	font-size: 9px;
	font-weight: 700;
	color: rgba(255, 255, 255, .3);
	letter-spacing: .06em;
	text-transform: uppercase;
}

.zstack_education_mm-row {
	display: grid;
	grid-template-columns: 1fr 60px 70px 60px;
	padding: 9px 12px;
	border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.zstack_education_mm-row:last-child {
	border-bottom: none;
}

.zstack_education_mm-td {
	font-size: 11px;
	color: rgba(255, 255, 255, .6);
}

.zstack_education_mm-td.zstack_education_pri {
	color: #7badd4;
	font-weight: 600;
}

.zstack_education_mm-td.zstack_education_grn {
	color: #4caf50;
}

.zstack_education_mm-td.zstack_education_ora {
	color: #ff9800;
}

/* ─── CUSTOMERS ────────────────────────────────────────── */
/* design.zstack_education_md: --bg-alt section */
.zstack_education_sec-cust {
	background: var(--bg-alt);
	padding: 120px 0;
}

.zstack_education_cust-hd {
	text-align: center;
	margin-bottom: 64px;
}

.zstack_education_cust-hd .zstack_education_sec-title {
	margin-bottom: 16px;
}

.zstack_education_cust-hd-sub {
	font-size: 17px;
	color: var(--t2);
	max-width: 600px;
	margin: 0 auto;
}

.zstack_education_quote-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* design.zstack_education_md: card — white bg, border, 14px radius, hover translateY(-3px) */
.zstack_education_qcard {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding: 34px 28px;
	transition: border-color .2s, transform .2s, box-shadow .2s;
	position: relative;
}

.zstack_education_qcard:hover {
	border-color: var(--border-hi);
	transform: translateY(-3px);
	box-shadow: 0 12px 32px -8px rgba(0, 87, 156, .10);
}

/* top color bar per design.zstack_education_md sequence */
.zstack_education_qcard:nth-child(1)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--blue), #0277bd);
}

.zstack_education_qcard:nth-child(2)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--teal), var(--blue));
}

.zstack_education_qcard:nth-child(3)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--orange), #ff8a65);
}

.zstack_education_qcard-org-row {
	display: flex;
	align-items: center;
	gap: 14px;
}

.zstack_education_qcard-avatar {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	flex-shrink: 0;
	background: linear-gradient(135deg, var(--blue-faint), var(--teal-dim));
	display: grid;
	place-items: center;
	font-size: 22px;
}

.zstack_education_qcard-org-name {
	font-size: 14px;
	font-weight: 700;
	color: var(--t1);
}

.zstack_education_qcard-org-type {
	font-size: 12px;
	color: var(--t3);
}

.zstack_education_qcard-divider {
	height: 1px;
	background: var(--border);
}

.zstack_education_qcard-row {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.zstack_education_qcard-row-lbl {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--t3);
	font-family: var(--mono);
}

.zstack_education_qcard-row-txt {
	font-size: 13px;
	color: var(--t2);
	line-height: 1.65;
}

.zstack_education_qcard-result {
	background: rgba(46, 125, 50, .07);
	border: 1px solid rgba(46, 125, 50, .18);
	border-radius: 8px;
	padding: 14px 16px;
	margin-top: auto;
}

.zstack_education_qcard-result-lbl {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--green);
	font-family: var(--mono);
	margin-bottom: 5px;
}

.zstack_education_qcard-result-txt {
	font-size: 13px;
	font-weight: 500;
	color: var(--t1);
	line-height: 1.55;
}

.zstack_education_cust-more {
	text-align: center;
	margin-top: 48px;
}

/* ─── RESOURCES ────────────────────────────────────────── */
/* design.zstack_education_md: --bg section */
.zstack_education_sec-res {
	background: var(--bg);
	padding: 120px 0;
}

.zstack_education_res-hd {
	text-align: center;
	margin-bottom: 64px;
}

.zstack_education_res-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* design.zstack_education_md: card hover translateY(-3px) */
.zstack_education_rcard {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	text-align: center;
	transition: border-color .2s, transform .2s, box-shadow .2s;
}

.zstack_education_rcard:hover {
	border-color: var(--border-hi);
	transform: translateY(-3px);
	box-shadow: 0 12px 32px -8px rgba(0, 87, 156, .10);
}

.zstack_education_rcard-cover {
	height: 200px;
	background: var(--bg-alt);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	border-bottom: 1px solid var(--border);
}

.zstack_education_rcard-cover::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 70% 70% at 50% 60%, rgba(0, 87, 156, .06) 0%, transparent 70%);
}

.zstack_education_rcard-doc {
	position: relative;
	z-index: 1;
	width: 108px;
	height: 140px;
	border-radius: 4px 8px 8px 4px;
	box-shadow: 4px 8px 24px rgba(0, 0, 0, .15), -2px 2px 8px rgba(0, 0, 0, .08);
	transform: rotate(-4deg) translateY(4px);
	transition: transform .25s;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.zstack_education_rcard:hover .zstack_education_rcard-doc {
	transform: rotate(-2deg) translateY(0);
}

.zstack_education_rcard-doc.zstack_education_doc-blue {
	background: linear-gradient(160deg, var(--blue) 0%, #0277bd 100%);
}

.zstack_education_rcard-doc.zstack_education_doc-dark {
	background: linear-gradient(160deg, #1a2332 0%, #243447 100%);
}

.zstack_education_rcard-doc.zstack_education_doc-navy {
	background: linear-gradient(160deg, #1e3a5f 0%, #2d5a8e 100%);
}

.zstack_education_rcard-doc::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 6px;
	background: rgba(255, 255, 255, .15);
}

.zstack_education_rcard-doc::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 0;
	height: 0;
	border-left: 18px solid rgba(255, 255, 255, .08);
	border-bottom: 18px solid transparent;
	border-top: 18px solid rgba(255, 255, 255, .22);
}

.zstack_education_rcard-doc-inner {
	padding: 14px 12px 12px 16px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex: 1;
}

.zstack_education_rcd-brand {
	font-size: 7px;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .6);
	font-family: var(--mono);
}

.zstack_education_rcd-rule {
	height: 1px;
	background: rgba(255, 255, 255, .18);
}

.zstack_education_rcd-title {
	font-size: 9.5px;
	font-weight: 700;
	color: #fff;
	line-height: 1.4;
	margin-top: 2px;
}

.zstack_education_rcd-sub {
	font-size: 7.5px;
	color: rgba(255, 255, 255, .5);
	line-height: 1.45;
	margin-top: 1px;
}

.zstack_education_rcd-spacer {
	flex: 1;
}

.zstack_education_rcd-footer {
	font-size: 7px;
	color: rgba(255, 255, 255, .35);
	font-family: var(--mono);
	letter-spacing: .04em;
	text-transform: uppercase;
}

.zstack_education_rcard-cover-badge {
	position: absolute;
	bottom: 14px;
	right: 14px;
	background: rgba(255, 255, 255, .15);
	font-size: 9px;
	font-weight: 700;
	color: rgba(255, 255, 255, .85);
	padding: 4px 8px;
	letter-spacing: .06em;
	text-transform: uppercase;
	font-family: var(--mono);
	border-radius: 4px;
}

.zstack_education_rcard-body {
	padding: 24px 24px 28px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.zstack_education_rcard-type {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--blue);
	margin-bottom: 8px;
	font-family: var(--mono);
}

.zstack_education_rcard-h {
	font-size: 17px;
	font-weight: 800;
	color: var(--t1);
	line-height: 1.35;
	margin-bottom: 10px;
	flex: 1;
	letter-spacing: -.01em;
}

.zstack_education_rcard-sub {
	font-size: 13px;
	color: var(--t2);
	line-height: 1.65;
	margin-bottom: 18px;
}

.zstack_education_rcard-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 700;
	color: var(--t1);
	cursor: pointer;
	margin-top: auto;
	transition: color .15s;
}

.zstack_education_rcard-cta svg {
	width: 13px;
	height: 13px;
	stroke: currentColor;
	fill: none;
	stroke-width: 2.5;
	stroke-linecap: round;
}

.zstack_education_rcard-cta:hover {
	color: var(--blue);
}

.zstack_education_res-more {
	text-align: center;
	margin-top: 48px;
}

/* ─── GET STARTED CTA ──────────────────────────────────── */
/* design.zstack_education_md: linear-gradient(160deg, #00579c 0%, #003a6e 55%, #1a2744 100%) + grid overlay */
.zstack_education_sec-gs {
	padding: 140px 32px 120px;
	text-align: center;
	position: relative;
	overflow: hidden;
	background: linear-gradient(160deg, #00579c 0%, #003a6e 55%, #1a2744 100%);
}

.zstack_education_sec-gs::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
	background-size: 48px 48px;
}

.zstack_education_gs-title {
	font-size: clamp(32px, 5vw, 52px);
	font-weight: 900;
	letter-spacing: -0.04em;
	color: #fff;
	margin-bottom: 16px;
	line-height: 1.05;
	position: relative;
	z-index: 1;
}

.zstack_education_gs-sub {
	font-size: 17px;
	color: rgba(255, 255, 255, .72);
	max-width: 540px;
	margin: 0 auto 44px;
	line-height: 1.65;
	position: relative;
	z-index: 1;
}

.zstack_education_gs-btns {
	display: flex;
	gap: 14px;
	justify-content: center;
	margin-bottom: 64px;
	position: relative;
	z-index: 1;
}

/* design.zstack_education_md: outline-white buttons on dark bg */
.zstack_education_btn-gs-p {
	font-family: var(--font);
	font-size: 15px;
	font-weight: 700;
	background: #fff;
	color: var(--blue);
	border: none;
	border-radius: 8px;
	padding: 14px 32px;
	cursor: pointer;
	transition: all .2s;
}

.zstack_education_btn-gs-p:hover {
	box-shadow: 0 0 28px 8px rgba(255, 255, 255, .25);
}

.zstack_education_btn-gs-s {
	font-family: var(--font);
	font-size: 15px;
	font-weight: 600;
	background: transparent;
	color: #fff;
	border: 1.5px solid rgba(255, 255, 255, .4);
	border-radius: 8px;
	padding: 13px 28px;
	cursor: pointer;
	transition: border-color .2s;
}

.zstack_education_btn-gs-s:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, .08);
}

.zstack_education_gs-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	max-width: 720px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

/* design.zstack_education_md: deep-dark bg cards */
.zstack_education_gs-card {
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 16px;
	padding: 32px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	transition: all .2s;
}

.zstack_education_gs-card:hover {
	background: rgba(255, 255, 255, .14);
	transform: translateY(-2px);
}

.zstack_education_gs-card-icon {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.zstack_education_gs-card-icon svg {
	width: 26px;
	height: 26px;
	stroke: rgba(255, 255, 255, .85);
	fill: none;
	stroke-width: 1.5;
	stroke-linecap: round;
}

.zstack_education_gs-card-title {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
}

.zstack_education_gs-card-sub {
	font-size: 12px;
	color: rgba(255, 255, 255, .58);
	text-align: center;
	line-height: 1.5;
}



/* ─── Proof block (replaces trust map for non-map industries) ── */
.zstack_education_proof-block {
	min-height: 220px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(0, 87, 156, .05) 0%, rgba(0, 87, 156, .02) 100%);
}

.zstack_education_proof-inner {
	width: 100%;
	padding: 32px 28px;
}

.zstack_education_proof-title {
	font-size: 17px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--t1);
	line-height: 1.3;
	margin-bottom: 28px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--border);
}

.zstack_education_proof-items {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.zstack_education_proof-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.zstack_education_proof-dot {
	width: 2px;
	height: 20px;
	background: var(--blue);
	border-radius: 2px;
	flex-shrink: 0;
	margin-top: 3px;
}

.zstack_education_proof-text {
	font-size: 15px;
	font-weight: 600;
	color: var(--t2);
	line-height: 1.5;
}

/* ─── Responsive ───────────────────────────────────────── */
@media (max-width: 960px) {

	.zstack_education_hero-inner,
	.zstack_education_uc-layout {
		grid-template-columns: 1fr;
	}

	.zstack_education_bene-cols,
	.zstack_education_bene-b-cols,
	.zstack_education_quote-row,
	.zstack_education_res-row,
	.zstack_education_gs-cards {
		grid-template-columns: 1fr;
	}

	.zstack_education_sf-top {
		grid-template-columns: 1fr;
		gap: 40px;
	}

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

	.nav-links {
		display: none;
	}
}

/* ═══════════ zstack-energy.html ═══════════ */
/* ─── Reset ─────────────────────────────────────────── */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	/* Backgrounds */
	--bg: #ffffff;
	--bg-alt: #f8fafc;
	--bg-card: #ffffff;

	/* Primary */
	--blue: #00579c;
	--blue-dim: #004a85;
	--blue-glow: rgba(0, 87, 156, 0.22);
	--blue-faint: rgba(0, 87, 156, 0.07);
	--blue-mid: rgba(0, 87, 156, 0.14);

	/* Accent */
	--orange: #e65100;
	--orange-dim: rgba(230, 81, 0, 0.10);
	--teal: #00897b;
	--teal-dim: rgba(0, 137, 123, 0.10);
	--green: #2e7d32;

	/* Borders */
	--border: rgba(148, 163, 184, 0.28);
	--border-hi: rgba(0, 87, 156, 0.20);

	/* Text */
	--t1: #0f172a;
	--t2: #475569;
	--t3: #94a3b8;

	--font: 'Inter', system-ui, sans-serif;
	--mono: 'JetBrains Mono', monospace;
	--radius: 14px;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font);
	background: var(--bg);
	color: var(--t1);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

/* ─── Fade animation ─────────────────────────────────── */
.zstack_energy_fade {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .6s ease, transform .6s ease;
}

.zstack_energy_fade.zstack_energy_in {
	opacity: 1;
	transform: none;
}

/* ─── Layout ─────────────────────────────────────────── */
.zstack_energy_inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 32px;
}

/* ─── Label chip ─────────────────────────────────────── */
.zstack_energy_lbl {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	font-family: var(--mono);
	color: var(--blue);
	background: var(--blue-faint);
	border: 1px solid var(--border-hi);
	border-radius: 100px;
	padding: 4px 14px;
}

/* ─── SHARED BUTTONS ──────────────────────────────────── */
/* design.zstack_energy_md: btn--primary with glow, btn--ghost */
.zstack_energy_btn-p {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font);
	font-size: 15px;
	font-weight: 700;
	background: var(--blue);
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 13px 26px;
	cursor: pointer;
	transition: all .2s;
}

.zstack_energy_btn-p:hover {
	background: var(--blue-dim);
	box-shadow: 0 0 28px 8px var(--blue-glow);
}

.zstack_energy_btn-s {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font);
	font-size: 15px;
	font-weight: 600;
	background: transparent;
	color: var(--t1);
	border: 1.5px solid var(--border);
	border-radius: 8px;
	padding: 12px 24px;
	cursor: pointer;
	transition: all .2s;
}

.zstack_energy_btn-s:hover {
	border-color: var(--blue);
	color: var(--blue);
}

.zstack_energy_btn-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font);
	font-size: 14px;
	font-weight: 600;
	background: transparent;
	color: var(--t2);
	border: 1.5px solid var(--border);
	border-radius: 100px;
	padding: 10px 32px;
	cursor: pointer;
	transition: all .2s;
}

.zstack_energy_btn-pill:hover {
	border-color: var(--blue);
	color: var(--blue);
}

/* ─── HERO ────────────────────────────────────────────── */
/* design.zstack_energy_md: linear-gradient(180deg, #f0f6ff 0%, #ffffff 60%) + grid + glow */
.zstack_energy_hero-wrap {
	background: linear-gradient(180deg, #f0f6ff 0%, #ffffff 60%);
	position: relative;
	overflow: hidden;
	padding-top: 100px;
}

/* Grid background */
.zstack_energy_hero-wrap::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(0, 87, 156, .06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 87, 156, .06) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 20%, transparent 70%);
}

/* Glow */
.zstack_energy_hero-wrap::after {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 55% 45% at 20% 60%, rgba(0, 87, 156, .06) 0%, transparent 65%),
		radial-gradient(ellipse 50% 40% at 80% 40%, rgba(230, 81, 0, .04) 0%, transparent 65%);
}

.zstack_energy_hero-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 80px 32px 96px;
	display: grid;
	grid-template-columns: 1fr 460px;
	gap: 72px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.zstack_energy_hero-left {
	display: flex;
	flex-direction: column;
}

.zstack_energy_hero-bc {
	font-size: 13px;
	font-weight: 600;
	color: var(--blue);
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 24px;
	cursor: pointer;
}

.zstack_energy_hero-bc svg {
	width: 14px;
	height: 14px;
	stroke: var(--blue);
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
}

/* design.zstack_energy_md 5.7: hero-badge — orange pill with pulse dot */
.zstack_energy_hero-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-family: var(--mono);
	color: var(--orange);
	background: var(--orange-dim);
	border: 1px solid rgba(230, 81, 0, .22);
	border-radius: 100px;
	padding: 6px 16px;
	margin-bottom: 22px;
	align-self: flex-start;
}

.zstack_energy_hero-label-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--orange);
	flex-shrink: 0;
	animation: pulse 2s infinite;
}

@keyframes pulse {

	0%,
	100% {
		opacity: 1;
		transform: scale(1)
	}

	50% {
		opacity: .6;
		transform: scale(1.35)
	}
}

/* design.zstack_energy_md H1: weight 900, first line dark, second line blue gradient */
.zstack_energy_hero-h1 {
	font-size: clamp(26px, 3.6vw, 44px);
	font-weight: 900;
	letter-spacing: -0.04em;
	line-height: 1.04;
	margin-bottom: 22px;
	color: var(--t1);
}

/* gradient span for semantic highlight line */
.zstack_energy_hero-h1 .zstack_energy_h1-accent {
	background: linear-gradient(125deg, var(--blue) 0%, #0277bd 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.zstack_energy_hero-p {
	font-size: 17px;
	color: var(--t2);
	line-height: 1.72;
	max-width: 500px;
	margin-bottom: 36px;
}

.zstack_energy_hero-btns {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

/* Hero right: trust map */
.zstack_energy_hero-right-col {
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 1;
}

.zstack_energy_trust-map {
	background: rgba(255, 255, 255, .82);
	border: 1px solid var(--border-hi);
	border-radius: var(--radius) var(--radius) 0 0;
	padding: 20px 16px;
	backdrop-filter: blur(8px);
}

.zstack_energy_hero-credibility {
	display: flex;
	align-items: stretch;
	background: var(--bg-card);
	border: 1px solid var(--border-hi);
	border-top: none;
	border-radius: 0 0 var(--radius) var(--radius);
	overflow: hidden;
	box-shadow: 0 4px 16px -4px rgba(0, 87, 156, .12);
}

.zstack_energy_hc-item {
	flex: 1;
	padding: 18px 20px;
	text-align: center;
}

/* design.zstack_energy_md: stat numbers 32-44px, weight 900, --mono */
.zstack_energy_hc-val {
	font-size: 24px;
	font-weight: 900;
	letter-spacing: -0.04em;
	color: var(--blue);
	line-height: 1;
	font-family: var(--mono);
}

.zstack_energy_hc-label {
	font-size: 11px;
	color: var(--t3);
	margin-top: 5px;
	line-height: 1.4;
}

.zstack_energy_hc-div {
	width: 1px;
	background: var(--border);
	flex-shrink: 0;
}

.zstack_energy_hero-divider {
	border: none;
	border-bottom: 1px dashed var(--border);
	margin: 0;
}

/* ─── SECTION SHARED ──────────────────────────────────── */
/* design.zstack_energy_md: H2 clamp(28px, 3.8vw, 46px), weight 800 */
.zstack_energy_sec-title {
	font-size: clamp(26px, 3.8vw, 44px);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.1;
	color: var(--t1);
}

.zstack_energy_sec-sub {
	font-size: 17px;
	color: var(--t2);
	line-height: 1.72;
}

.zstack_energy_eyebrow {
	display: inline-flex;
	align-items: center;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	font-family: var(--mono);
	color: var(--blue);
	background: var(--blue-faint);
	border: 1px solid var(--border-hi);
	border-radius: 100px;
	padding: 4px 14px;
	margin-bottom: 12px;
}

/* ─── BENEFITS A ──────────────────────────────────────── */
/* design.zstack_energy_md: --bg section */
.zstack_energy_sec-bene-a {
	background: var(--bg);
	padding: 120px 0;
}

.zstack_energy_bene-a-hd {
	text-align: center;
	margin-bottom: 72px;
}

.zstack_energy_bene-a-hd .zstack_energy_sec-title {
	margin-bottom: 18px;
}

.zstack_energy_bene-cols {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	text-align: center;
}

.zstack_energy_bcol {}

.zstack_energy_bcol-icon {
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
}

.zstack_energy_bcol-h {
	font-size: 19px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--t1);
	margin-bottom: 12px;
}

.zstack_energy_bcol-p {
	font-size: 15px;
	color: var(--t2);
	line-height: 1.7;
}

/* ─── BENEFITS B ──────────────────────────────────────── */
/* design.zstack_energy_md: --bg-alt section */
.zstack_energy_sec-bene-b {
	background: var(--bg-alt);
	padding: 120px 0;
}

.zstack_energy_bene-b-hd {
	text-align: center;
	margin-bottom: 56px;
}

.zstack_energy_bene-b-cols {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* design.zstack_energy_md: card with top color bar, 14px radius, hover translateY(-3px) */
.zstack_energy_bbc {
	display: flex;
	flex-direction: column;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	transition: border-color .2s, transform .2s, box-shadow .2s;
	position: relative;
}

.zstack_energy_bbc:hover {
	border-color: var(--border-hi);
	transform: translateY(-3px);
	box-shadow: 0 12px 32px -8px rgba(0, 87, 156, .10);
}

/* top color bar - sequential gradients per design.zstack_energy_md */
.zstack_energy_bbc:nth-child(1)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--blue), #0277bd);
}

.zstack_energy_bbc:nth-child(2)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--teal), var(--blue));
}

.zstack_energy_bbc:nth-child(3)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--orange), #ff8a65);
}

.zstack_energy_bbc-hd {
	background: var(--blue);
	padding: 28px 26px;
	position: relative;
}

.zstack_energy_bbc-hd::after {
	content: '';
	position: absolute;
	bottom: -14px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 14px solid transparent;
	border-right: 14px solid transparent;
	border-top: 15px solid var(--blue);
}

.zstack_energy_bbc-hd-title {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	line-height: 1.3;
	text-align: center;
}

.zstack_energy_bbc-body {
	background: var(--bg-card);
	padding: 36px 22px 30px;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.zstack_energy_bbc-p {
	font-size: 14px;
	color: var(--t2);
	line-height: 1.72;
	flex: 1;
	margin-bottom: 24px;
}

.zstack_energy_btn-learn {
	font-family: var(--font);
	font-size: 13px;
	font-weight: 700;
	background: var(--blue);
	color: #fff;
	border: none;
	border-radius: 100px;
	padding: 9px 22px;
	cursor: pointer;
	transition: background .15s;
}

.zstack_energy_btn-learn:hover {
	background: var(--blue-dim);
}

/* ─── USE CASES ────────────────────────────────────────── */
/* design.zstack_energy_md: --bg section */
.zstack_energy_sec-uc {
	background: var(--bg);
	padding: 120px 0;
}

.zstack_energy_uc-hd {
	text-align: center;
	margin-bottom: 72px;
}

.zstack_energy_uc-layout {
	display: grid;
	grid-template-columns: 1fr 520px;
	gap: 72px;
	align-items: start;
}

.zstack_energy_uc-list {
	display: flex;
	flex-direction: column;
}

.zstack_energy_uc-item {
	padding: 32px 0;
	border-bottom: 1px solid var(--border);
}

.zstack_energy_uc-item:first-child {
	border-top: 1px solid var(--border);
}

.zstack_energy_uc-item-h {
	font-size: 18px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--t1);
	margin-bottom: 10px;
}

.zstack_energy_uc-item-p {
	font-size: 14px;
	color: var(--t2);
	line-height: 1.72;
	margin-bottom: 12px;
}

.zstack_energy_uc-link {
	font-size: 13px;
	font-weight: 700;
	color: var(--blue);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	border-bottom: 1px solid rgba(0, 87, 156, .3);
	transition: border-color .2s;
}

.zstack_energy_uc-link svg {
	width: 13px;
	height: 13px;
	stroke: var(--blue);
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
}

.zstack_energy_uc-link:hover {
	border-color: var(--blue);
}

/* Mockup */
.zstack_energy_uc-mockup {
	position: sticky;
	top: 130px;
}

.zstack_energy_mockup-shell {
	background: var(--t1);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(0, 0, 0, .18), 0 0 0 1px rgba(0, 87, 156, .15);
}

.zstack_energy_mockup-bar {
	background: #1e2530;
	height: 36px;
	display: flex;
	align-items: center;
	padding: 0 16px;
	gap: 8px;
}

.zstack_energy_mockup-dot {
	width: 11px;
	height: 11px;
	border-radius: 50%;
}

.zstack_energy_mockup-title {
	font-size: 11px;
	color: rgba(255, 255, 255, .35);
	margin-left: 8px;
}

.zstack_energy_mockup-body {
	background: #161b22;
	display: grid;
	grid-template-columns: 190px 1fr;
}

.zstack_energy_mockup-sidebar {
	background: #1a1f2e;
	padding: 16px 0;
	border-right: 1px solid rgba(255, 255, 255, .06);
}

.zstack_energy_ms-section {
	padding: 8px 16px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .28);
	margin-top: 8px;
}

.zstack_energy_ms-item {
	padding: 9px 20px;
	font-size: 12px;
	color: rgba(255, 255, 255, .45);
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: background .15s;
}

.zstack_energy_ms-item:hover {
	background: rgba(0, 87, 156, .15);
	color: rgba(255, 255, 255, .8);
}

.zstack_energy_ms-item.zstack_energy_act {
	background: rgba(0, 87, 156, .25);
	color: #7badd4;
}

.zstack_energy_ms-item svg {
	width: 13px;
	height: 13px;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.5;
	opacity: .7;
}

.zstack_energy_mockup-main {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.zstack_energy_mm-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 4px;
}

.zstack_energy_mm-title {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
}

.zstack_energy_mm-badge {
	background: rgba(0, 87, 156, .4);
	color: #7badd4;
	font-size: 10px;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 4px;
}

.zstack_energy_mm-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
}

.zstack_energy_mm-card {
	background: #1e2530;
	padding: 14px;
	border: 1px solid rgba(255, 255, 255, .06);
	border-radius: 6px;
}

.zstack_energy_mm-card-label {
	font-size: 9px;
	color: rgba(255, 255, 255, .35);
	margin-bottom: 6px;
	letter-spacing: .05em;
	text-transform: uppercase;
}

.zstack_energy_mm-card-val {
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	letter-spacing: -0.02em;
}

.zstack_energy_mm-card-sub {
	font-size: 10px;
	color: #4caf50;
	margin-top: 3px;
}

.zstack_energy_mm-table {
	background: #1e2530;
	border: 1px solid rgba(255, 255, 255, .06);
	border-radius: 6px;
	overflow: hidden;
}

.zstack_energy_mm-table-hd {
	display: grid;
	grid-template-columns: 1fr 60px 70px 60px;
	padding: 8px 12px;
	border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.zstack_energy_mm-th {
	font-size: 9px;
	font-weight: 700;
	color: rgba(255, 255, 255, .3);
	letter-spacing: .06em;
	text-transform: uppercase;
}

.zstack_energy_mm-row {
	display: grid;
	grid-template-columns: 1fr 60px 70px 60px;
	padding: 9px 12px;
	border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.zstack_energy_mm-row:last-child {
	border-bottom: none;
}

.zstack_energy_mm-td {
	font-size: 11px;
	color: rgba(255, 255, 255, .6);
}

.zstack_energy_mm-td.zstack_energy_pri {
	color: #7badd4;
	font-weight: 600;
}

.zstack_energy_mm-td.zstack_energy_grn {
	color: #4caf50;
}

.zstack_energy_mm-td.zstack_energy_ora {
	color: #ff9800;
}

/* ─── CUSTOMERS ────────────────────────────────────────── */
/* design.zstack_energy_md: --bg-alt section */
.zstack_energy_sec-cust {
	background: var(--bg-alt);
	padding: 120px 0;
}

.zstack_energy_cust-hd {
	text-align: center;
	margin-bottom: 64px;
}

.zstack_energy_cust-hd .zstack_energy_sec-title {
	margin-bottom: 16px;
}

.zstack_energy_cust-hd-sub {
	font-size: 17px;
	color: var(--t2);
	max-width: 600px;
	margin: 0 auto;
}

.zstack_energy_quote-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* design.zstack_energy_md: card — white bg, border, 14px radius, hover translateY(-3px) */
.zstack_energy_qcard {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding: 34px 28px;
	transition: border-color .2s, transform .2s, box-shadow .2s;
	position: relative;
}

.zstack_energy_qcard:hover {
	border-color: var(--border-hi);
	transform: translateY(-3px);
	box-shadow: 0 12px 32px -8px rgba(0, 87, 156, .10);
}

/* top color bar per design.zstack_energy_md sequence */
.zstack_energy_qcard:nth-child(1)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--blue), #0277bd);
}

.zstack_energy_qcard:nth-child(2)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--teal), var(--blue));
}

.zstack_energy_qcard:nth-child(3)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--orange), #ff8a65);
}

.zstack_energy_qcard-org-row {
	display: flex;
	align-items: center;
	gap: 14px;
}

.zstack_energy_qcard-avatar {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	flex-shrink: 0;
	background: linear-gradient(135deg, var(--blue-faint), var(--teal-dim));
	display: grid;
	place-items: center;
	font-size: 22px;
}

.zstack_energy_qcard-org-name {
	font-size: 14px;
	font-weight: 700;
	color: var(--t1);
}

.zstack_energy_qcard-org-type {
	font-size: 12px;
	color: var(--t3);
}

.zstack_energy_qcard-divider {
	height: 1px;
	background: var(--border);
}

.zstack_energy_qcard-row {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.zstack_energy_qcard-row-lbl {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--t3);
	font-family: var(--mono);
}

.zstack_energy_qcard-row-txt {
	font-size: 13px;
	color: var(--t2);
	line-height: 1.65;
}

.zstack_energy_qcard-result {
	background: rgba(46, 125, 50, .07);
	border: 1px solid rgba(46, 125, 50, .18);
	border-radius: 8px;
	padding: 14px 16px;
	margin-top: auto;
}

.zstack_energy_qcard-result-lbl {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--green);
	font-family: var(--mono);
	margin-bottom: 5px;
}

.zstack_energy_qcard-result-txt {
	font-size: 13px;
	font-weight: 500;
	color: var(--t1);
	line-height: 1.55;
}

.zstack_energy_cust-more {
	text-align: center;
	margin-top: 48px;
}

/* ─── RESOURCES ────────────────────────────────────────── */
/* design.zstack_energy_md: --bg section */
.zstack_energy_sec-res {
	background: var(--bg);
	padding: 120px 0;
}

.zstack_energy_res-hd {
	text-align: center;
	margin-bottom: 64px;
}

.zstack_energy_res-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* design.zstack_energy_md: card hover translateY(-3px) */
.zstack_energy_rcard {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	text-align: center;
	transition: border-color .2s, transform .2s, box-shadow .2s;
}

.zstack_energy_rcard:hover {
	border-color: var(--border-hi);
	transform: translateY(-3px);
	box-shadow: 0 12px 32px -8px rgba(0, 87, 156, .10);
}

.zstack_energy_rcard-cover {
	height: 200px;
	background: var(--bg-alt);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	border-bottom: 1px solid var(--border);
}

.zstack_energy_rcard-cover::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 70% 70% at 50% 60%, rgba(0, 87, 156, .06) 0%, transparent 70%);
}

.zstack_energy_rcard-doc {
	position: relative;
	z-index: 1;
	width: 108px;
	height: 140px;
	border-radius: 4px 8px 8px 4px;
	box-shadow: 4px 8px 24px rgba(0, 0, 0, .15), -2px 2px 8px rgba(0, 0, 0, .08);
	transform: rotate(-4deg) translateY(4px);
	transition: transform .25s;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.zstack_energy_rcard:hover .zstack_energy_rcard-doc {
	transform: rotate(-2deg) translateY(0);
}

.zstack_energy_rcard-doc.zstack_energy_doc-blue {
	background: linear-gradient(160deg, var(--blue) 0%, #0277bd 100%);
}

.zstack_energy_rcard-doc.zstack_energy_doc-dark {
	background: linear-gradient(160deg, #1a2332 0%, #243447 100%);
}

.zstack_energy_rcard-doc.zstack_energy_doc-navy {
	background: linear-gradient(160deg, #1e3a5f 0%, #2d5a8e 100%);
}

.zstack_energy_rcard-doc::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 6px;
	background: rgba(255, 255, 255, .15);
}

.zstack_energy_rcard-doc::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 0;
	height: 0;
	border-left: 18px solid rgba(255, 255, 255, .08);
	border-bottom: 18px solid transparent;
	border-top: 18px solid rgba(255, 255, 255, .22);
}

.zstack_energy_rcard-doc-inner {
	padding: 14px 12px 12px 16px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex: 1;
}

.zstack_energy_rcd-brand {
	font-size: 7px;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .6);
	font-family: var(--mono);
}

.zstack_energy_rcd-rule {
	height: 1px;
	background: rgba(255, 255, 255, .18);
}

.zstack_energy_rcd-title {
	font-size: 9.5px;
	font-weight: 700;
	color: #fff;
	line-height: 1.4;
	margin-top: 2px;
}

.zstack_energy_rcd-sub {
	font-size: 7.5px;
	color: rgba(255, 255, 255, .5);
	line-height: 1.45;
	margin-top: 1px;
}

.zstack_energy_rcd-spacer {
	flex: 1;
}

.zstack_energy_rcd-footer {
	font-size: 7px;
	color: rgba(255, 255, 255, .35);
	font-family: var(--mono);
	letter-spacing: .04em;
	text-transform: uppercase;
}

.zstack_energy_rcard-cover-badge {
	position: absolute;
	bottom: 14px;
	right: 14px;
	background: rgba(255, 255, 255, .15);
	font-size: 9px;
	font-weight: 700;
	color: rgba(255, 255, 255, .85);
	padding: 4px 8px;
	letter-spacing: .06em;
	text-transform: uppercase;
	font-family: var(--mono);
	border-radius: 4px;
}

.zstack_energy_rcard-body {
	padding: 24px 24px 28px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.zstack_energy_rcard-type {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--blue);
	margin-bottom: 8px;
	font-family: var(--mono);
}

.zstack_energy_rcard-h {
	font-size: 17px;
	font-weight: 800;
	color: var(--t1);
	line-height: 1.35;
	margin-bottom: 10px;
	flex: 1;
	letter-spacing: -.01em;
}

.zstack_energy_rcard-sub {
	font-size: 13px;
	color: var(--t2);
	line-height: 1.65;
	margin-bottom: 18px;
}

.zstack_energy_rcard-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 700;
	color: var(--t1);
	cursor: pointer;
	margin-top: auto;
	transition: color .15s;
}

.zstack_energy_rcard-cta svg {
	width: 13px;
	height: 13px;
	stroke: currentColor;
	fill: none;
	stroke-width: 2.5;
	stroke-linecap: round;
}

.zstack_energy_rcard-cta:hover {
	color: var(--blue);
}

.zstack_energy_res-more {
	text-align: center;
	margin-top: 48px;
}

/* ─── GET STARTED CTA ──────────────────────────────────── */
/* design.zstack_energy_md: linear-gradient(160deg, #00579c 0%, #003a6e 55%, #1a2744 100%) + grid overlay */
.zstack_energy_sec-gs {
	padding: 140px 32px 120px;
	text-align: center;
	position: relative;
	overflow: hidden;
	background: linear-gradient(160deg, #00579c 0%, #003a6e 55%, #1a2744 100%);
}

.zstack_energy_sec-gs::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
	background-size: 48px 48px;
}

.zstack_energy_gs-title {
	font-size: clamp(32px, 5vw, 52px);
	font-weight: 900;
	letter-spacing: -0.04em;
	color: #fff;
	margin-bottom: 16px;
	line-height: 1.05;
	position: relative;
	z-index: 1;
}

.zstack_energy_gs-sub {
	font-size: 17px;
	color: rgba(255, 255, 255, .72);
	max-width: 540px;
	margin: 0 auto 44px;
	line-height: 1.65;
	position: relative;
	z-index: 1;
}

.zstack_energy_gs-btns {
	display: flex;
	gap: 14px;
	justify-content: center;
	margin-bottom: 64px;
	position: relative;
	z-index: 1;
}

/* design.zstack_energy_md: outline-white buttons on dark bg */
.zstack_energy_btn-gs-p {
	font-family: var(--font);
	font-size: 15px;
	font-weight: 700;
	background: #fff;
	color: var(--blue);
	border: none;
	border-radius: 8px;
	padding: 14px 32px;
	cursor: pointer;
	transition: all .2s;
}

.zstack_energy_btn-gs-p:hover {
	box-shadow: 0 0 28px 8px rgba(255, 255, 255, .25);
}

.zstack_energy_btn-gs-s {
	font-family: var(--font);
	font-size: 15px;
	font-weight: 600;
	background: transparent;
	color: #fff;
	border: 1.5px solid rgba(255, 255, 255, .4);
	border-radius: 8px;
	padding: 13px 28px;
	cursor: pointer;
	transition: border-color .2s;
}

.zstack_energy_btn-gs-s:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, .08);
}

.zstack_energy_gs-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	max-width: 720px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

/* design.zstack_energy_md: deep-dark bg cards */
.zstack_energy_gs-card {
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 16px;
	padding: 32px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	transition: all .2s;
}

.zstack_energy_gs-card:hover {
	background: rgba(255, 255, 255, .14);
	transform: translateY(-2px);
}

.zstack_energy_gs-card-icon {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.zstack_energy_gs-card-icon svg {
	width: 26px;
	height: 26px;
	stroke: rgba(255, 255, 255, .85);
	fill: none;
	stroke-width: 1.5;
	stroke-linecap: round;
}

.zstack_energy_gs-card-title {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
}

.zstack_energy_gs-card-sub {
	font-size: 12px;
	color: rgba(255, 255, 255, .58);
	text-align: center;
	line-height: 1.5;
}



/* ─── Responsive ───────────────────────────────────────── */
@media (max-width: 960px) {

	.zstack_energy_hero-inner,
	.zstack_energy_uc-layout {
		grid-template-columns: 1fr;
	}

	.zstack_energy_bene-cols,
	.zstack_energy_bene-b-cols,
	.zstack_energy_quote-row,
	.zstack_energy_res-row,
	.zstack_energy_gs-cards {
		grid-template-columns: 1fr;
	}

	.zstack_energy_sf-top {
		grid-template-columns: 1fr;
		gap: 40px;
	}

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

	.nav-links {
		display: none;
	}
}

/* ═══════════ zstack-financial.html ═══════════ */
/* ─── Reset ─────────────────────────────────────────── */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	/* Backgrounds */
	--bg: #ffffff;
	--bg-alt: #f8fafc;
	--bg-card: #ffffff;

	/* Primary */
	--blue: #00579c;
	--blue-dim: #004a85;
	--blue-glow: rgba(0, 87, 156, 0.22);
	--blue-faint: rgba(0, 87, 156, 0.07);
	--blue-mid: rgba(0, 87, 156, 0.14);

	/* Accent */
	--orange: #e65100;
	--orange-dim: rgba(230, 81, 0, 0.10);
	--teal: #00897b;
	--teal-dim: rgba(0, 137, 123, 0.10);
	--green: #2e7d32;

	/* Borders */
	--border: rgba(148, 163, 184, 0.28);
	--border-hi: rgba(0, 87, 156, 0.20);

	/* Text */
	--t1: #0f172a;
	--t2: #475569;
	--t3: #94a3b8;

	--font: 'Inter', system-ui, sans-serif;
	--mono: 'JetBrains Mono', monospace;
	--radius: 14px;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font);
	background: var(--bg);
	color: var(--t1);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

/* ─── Fade animation ─────────────────────────────────── */
.zstack_financial_fade {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .6s ease, transform .6s ease;
}

.zstack_financial_fade.zstack_financial_in {
	opacity: 1;
	transform: none;
}

/* ─── Layout ─────────────────────────────────────────── */
.zstack_financial_inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 32px;
}

/* ─── Label chip ─────────────────────────────────────── */
.zstack_financial_lbl {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	font-family: var(--mono);
	color: var(--blue);
	background: var(--blue-faint);
	border: 1px solid var(--border-hi);
	border-radius: 100px;
	padding: 4px 14px;
}

/* ─── SHARED BUTTONS ──────────────────────────────────── */
/* design.zstack_financial_md: btn--primary with glow, btn--ghost */
.zstack_financial_btn-p {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font);
	font-size: 15px;
	font-weight: 700;
	background: var(--blue);
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 13px 26px;
	cursor: pointer;
	transition: all .2s;
}

.zstack_financial_btn-p:hover {
	background: var(--blue-dim);
	box-shadow: 0 0 28px 8px var(--blue-glow);
}

.zstack_financial_btn-s {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font);
	font-size: 15px;
	font-weight: 600;
	background: transparent;
	color: var(--t1);
	border: 1.5px solid var(--border);
	border-radius: 8px;
	padding: 12px 24px;
	cursor: pointer;
	transition: all .2s;
}

.zstack_financial_btn-s:hover {
	border-color: var(--blue);
	color: var(--blue);
}

.zstack_financial_btn-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font);
	font-size: 14px;
	font-weight: 600;
	background: transparent;
	color: var(--t2);
	border: 1.5px solid var(--border);
	border-radius: 100px;
	padding: 10px 32px;
	cursor: pointer;
	transition: all .2s;
}

.zstack_financial_btn-pill:hover {
	border-color: var(--blue);
	color: var(--blue);
}

/* ─── HERO ────────────────────────────────────────────── */
/* design.zstack_financial_md: linear-gradient(180deg, #f0f6ff 0%, #ffffff 60%) + grid + glow */
.zstack_financial_hero-wrap {
	background: linear-gradient(180deg, #f0f6ff 0%, #ffffff 60%);
	position: relative;
	overflow: hidden;
	padding-top: 100px;
}

/* Grid background */
.zstack_financial_hero-wrap::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(0, 87, 156, .06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 87, 156, .06) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 20%, transparent 70%);
}

/* Glow */
.zstack_financial_hero-wrap::after {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 55% 45% at 20% 60%, rgba(0, 87, 156, .06) 0%, transparent 65%),
		radial-gradient(ellipse 50% 40% at 80% 40%, rgba(230, 81, 0, .04) 0%, transparent 65%);
}

.zstack_financial_hero-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 80px 32px 96px;
	display: grid;
	grid-template-columns: 1fr 460px;
	gap: 72px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.zstack_financial_hero-left {
	display: flex;
	flex-direction: column;
}

.zstack_financial_hero-bc {
	font-size: 13px;
	font-weight: 600;
	color: var(--blue);
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 24px;
	cursor: pointer;
}

.zstack_financial_hero-bc svg {
	width: 14px;
	height: 14px;
	stroke: var(--blue);
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
}

/* design.zstack_financial_md 5.7: hero-badge — orange pill with pulse dot */
.zstack_financial_hero-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-family: var(--mono);
	color: var(--orange);
	background: var(--orange-dim);
	border: 1px solid rgba(230, 81, 0, .22);
	border-radius: 100px;
	padding: 6px 16px;
	margin-bottom: 22px;
	align-self: flex-start;
}

.zstack_financial_hero-label-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--orange);
	flex-shrink: 0;
	animation: pulse 2s infinite;
}

@keyframes pulse {

	0%,
	100% {
		opacity: 1;
		transform: scale(1)
	}

	50% {
		opacity: .6;
		transform: scale(1.35)
	}
}

/* design.zstack_financial_md H1: weight 900, first line dark, second line blue gradient */
.zstack_financial_hero-h1 {
	font-size: clamp(26px, 3.6vw, 44px);
	font-weight: 900;
	letter-spacing: -0.04em;
	line-height: 1.04;
	margin-bottom: 22px;
	color: var(--t1);
}

/* gradient span for semantic highlight line */
.zstack_financial_hero-h1 .zstack_financial_h1-accent {
	background: linear-gradient(125deg, var(--blue) 0%, #0277bd 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.zstack_financial_hero-p {
	font-size: 17px;
	color: var(--t2);
	line-height: 1.72;
	max-width: 500px;
	margin-bottom: 36px;
}

.zstack_financial_hero-btns {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

/* Hero right: trust map */
.zstack_financial_hero-right-col {
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 1;
}

.zstack_financial_trust-map {
	background: rgba(255, 255, 255, .82);
	border: 1px solid var(--border-hi);
	border-radius: var(--radius) var(--radius) 0 0;
	padding: 20px 16px;
	backdrop-filter: blur(8px);
}

.zstack_financial_hero-credibility {
	display: flex;
	align-items: stretch;
	background: var(--bg-card);
	border: 1px solid var(--border-hi);
	border-top: none;
	border-radius: 0 0 var(--radius) var(--radius);
	overflow: hidden;
	box-shadow: 0 4px 16px -4px rgba(0, 87, 156, .12);
}

.zstack_financial_hc-item {
	flex: 1;
	padding: 18px 20px;
	text-align: center;
}

/* design.zstack_financial_md: stat numbers 32-44px, weight 900, --mono */
.zstack_financial_hc-val {
	font-size: 24px;
	font-weight: 900;
	letter-spacing: -0.04em;
	color: var(--blue);
	line-height: 1;
	font-family: var(--mono);
}

.zstack_financial_hc-label {
	font-size: 11px;
	color: var(--t3);
	margin-top: 5px;
	line-height: 1.4;
}

.zstack_financial_hc-div {
	width: 1px;
	background: var(--border);
	flex-shrink: 0;
}

.zstack_financial_hero-divider {
	border: none;
	border-bottom: 1px dashed var(--border);
	margin: 0;
}

/* ─── SECTION SHARED ──────────────────────────────────── */
/* design.zstack_financial_md: H2 clamp(28px, 3.8vw, 46px), weight 800 */
.zstack_financial_sec-title {
	font-size: clamp(26px, 3.8vw, 44px);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.1;
	color: var(--t1);
}

.zstack_financial_sec-sub {
	font-size: 17px;
	color: var(--t2);
	line-height: 1.72;
}

.zstack_financial_eyebrow {
	display: inline-flex;
	align-items: center;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	font-family: var(--mono);
	color: var(--blue);
	background: var(--blue-faint);
	border: 1px solid var(--border-hi);
	border-radius: 100px;
	padding: 4px 14px;
	margin-bottom: 12px;
}

/* ─── BENEFITS A ──────────────────────────────────────── */
/* design.zstack_financial_md: --bg section */
.zstack_financial_sec-bene-a {
	background: var(--bg);
	padding: 120px 0;
}

.zstack_financial_bene-a-hd {
	text-align: center;
	margin-bottom: 72px;
}

.zstack_financial_bene-a-hd .zstack_financial_sec-title {
	margin-bottom: 18px;
}

.zstack_financial_bene-cols {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	text-align: center;
}

.zstack_financial_bcol {}

.zstack_financial_bcol-icon {
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
}

.zstack_financial_bcol-h {
	font-size: 19px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--t1);
	margin-bottom: 12px;
}

.zstack_financial_bcol-p {
	font-size: 15px;
	color: var(--t2);
	line-height: 1.7;
}

/* ─── BENEFITS B ──────────────────────────────────────── */
/* design.zstack_financial_md: --bg-alt section */
.zstack_financial_sec-bene-b {
	background: var(--bg-alt);
	padding: 120px 0;
}

.zstack_financial_bene-b-hd {
	text-align: center;
	margin-bottom: 56px;
}

.zstack_financial_bene-b-cols {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* design.zstack_financial_md: card with top color bar, 14px radius, hover translateY(-3px) */
.zstack_financial_bbc {
	display: flex;
	flex-direction: column;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	transition: border-color .2s, transform .2s, box-shadow .2s;
	position: relative;
}

.zstack_financial_bbc:hover {
	border-color: var(--border-hi);
	transform: translateY(-3px);
	box-shadow: 0 12px 32px -8px rgba(0, 87, 156, .10);
}

/* top color bar - sequential gradients per design.zstack_financial_md */
.zstack_financial_bbc:nth-child(1)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--blue), #0277bd);
}

.zstack_financial_bbc:nth-child(2)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--teal), var(--blue));
}

.zstack_financial_bbc:nth-child(3)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--orange), #ff8a65);
}

.zstack_financial_bbc-hd {
	background: var(--blue);
	padding: 28px 26px;
	position: relative;
}

.zstack_financial_bbc-hd::after {
	content: '';
	position: absolute;
	bottom: -14px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 14px solid transparent;
	border-right: 14px solid transparent;
	border-top: 15px solid var(--blue);
}

.zstack_financial_bbc-hd-title {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	line-height: 1.3;
	text-align: center;
}

.zstack_financial_bbc-body {
	background: var(--bg-card);
	padding: 36px 22px 30px;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.zstack_financial_bbc-p {
	font-size: 14px;
	color: var(--t2);
	line-height: 1.72;
	flex: 1;
	margin-bottom: 24px;
}

.zstack_financial_btn-learn {
	font-family: var(--font);
	font-size: 13px;
	font-weight: 700;
	background: var(--blue);
	color: #fff;
	border: none;
	border-radius: 100px;
	padding: 9px 22px;
	cursor: pointer;
	transition: background .15s;
}

.zstack_financial_btn-learn:hover {
	background: var(--blue-dim);
}

/* ─── USE CASES ────────────────────────────────────────── */
/* design.zstack_financial_md: --bg section */
.zstack_financial_sec-uc {
	background: var(--bg);
	padding: 120px 0;
}

.zstack_financial_uc-hd {
	text-align: center;
	margin-bottom: 72px;
}

.zstack_financial_uc-layout {
	display: grid;
	grid-template-columns: 1fr 520px;
	gap: 72px;
	align-items: start;
}

.zstack_financial_uc-list {
	display: flex;
	flex-direction: column;
}

.zstack_financial_uc-item {
	padding: 32px 0;
	border-bottom: 1px solid var(--border);
}

.zstack_financial_uc-item:first-child {
	border-top: 1px solid var(--border);
}

.zstack_financial_uc-item-h {
	font-size: 18px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--t1);
	margin-bottom: 10px;
}

.zstack_financial_uc-item-p {
	font-size: 14px;
	color: var(--t2);
	line-height: 1.72;
	margin-bottom: 12px;
}

.zstack_financial_uc-link {
	font-size: 13px;
	font-weight: 700;
	color: var(--blue);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	border-bottom: 1px solid rgba(0, 87, 156, .3);
	transition: border-color .2s;
}

.zstack_financial_uc-link svg {
	width: 13px;
	height: 13px;
	stroke: var(--blue);
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
}

.zstack_financial_uc-link:hover {
	border-color: var(--blue);
}

/* Mockup */
.zstack_financial_uc-mockup {
	position: sticky;
	top: 130px;
}

.zstack_financial_mockup-shell {
	background: var(--t1);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(0, 0, 0, .18), 0 0 0 1px rgba(0, 87, 156, .15);
}

.zstack_financial_mockup-bar {
	background: #1e2530;
	height: 36px;
	display: flex;
	align-items: center;
	padding: 0 16px;
	gap: 8px;
}

.zstack_financial_mockup-dot {
	width: 11px;
	height: 11px;
	border-radius: 50%;
}

.zstack_financial_mockup-title {
	font-size: 11px;
	color: rgba(255, 255, 255, .35);
	margin-left: 8px;
}

.zstack_financial_mockup-body {
	background: #161b22;
	display: grid;
	grid-template-columns: 190px 1fr;
}

.zstack_financial_mockup-sidebar {
	background: #1a1f2e;
	padding: 16px 0;
	border-right: 1px solid rgba(255, 255, 255, .06);
}

.zstack_financial_ms-section {
	padding: 8px 16px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .28);
	margin-top: 8px;
}

.zstack_financial_ms-item {
	padding: 9px 20px;
	font-size: 12px;
	color: rgba(255, 255, 255, .45);
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: background .15s;
}

.zstack_financial_ms-item:hover {
	background: rgba(0, 87, 156, .15);
	color: rgba(255, 255, 255, .8);
}

.zstack_financial_ms-item.zstack_financial_act {
	background: rgba(0, 87, 156, .25);
	color: #7badd4;
}

.zstack_financial_ms-item svg {
	width: 13px;
	height: 13px;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.5;
	opacity: .7;
}

.zstack_financial_mockup-main {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.zstack_financial_mm-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 4px;
}

.zstack_financial_mm-title {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
}

.zstack_financial_mm-badge {
	background: rgba(0, 87, 156, .4);
	color: #7badd4;
	font-size: 10px;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 4px;
}

.zstack_financial_mm-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
}

.zstack_financial_mm-card {
	background: #1e2530;
	padding: 14px;
	border: 1px solid rgba(255, 255, 255, .06);
	border-radius: 6px;
}

.zstack_financial_mm-card-label {
	font-size: 9px;
	color: rgba(255, 255, 255, .35);
	margin-bottom: 6px;
	letter-spacing: .05em;
	text-transform: uppercase;
}

.zstack_financial_mm-card-val {
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	letter-spacing: -0.02em;
}

.zstack_financial_mm-card-sub {
	font-size: 10px;
	color: #4caf50;
	margin-top: 3px;
}

.zstack_financial_mm-table {
	background: #1e2530;
	border: 1px solid rgba(255, 255, 255, .06);
	border-radius: 6px;
	overflow: hidden;
}

.zstack_financial_mm-table-hd {
	display: grid;
	grid-template-columns: 1fr 60px 70px 60px;
	padding: 8px 12px;
	border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.zstack_financial_mm-th {
	font-size: 9px;
	font-weight: 700;
	color: rgba(255, 255, 255, .3);
	letter-spacing: .06em;
	text-transform: uppercase;
}

.zstack_financial_mm-row {
	display: grid;
	grid-template-columns: 1fr 60px 70px 60px;
	padding: 9px 12px;
	border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.zstack_financial_mm-row:last-child {
	border-bottom: none;
}

.zstack_financial_mm-td {
	font-size: 11px;
	color: rgba(255, 255, 255, .6);
}

.zstack_financial_mm-td.zstack_financial_pri {
	color: #7badd4;
	font-weight: 600;
}

.zstack_financial_mm-td.zstack_financial_grn {
	color: #4caf50;
}

.zstack_financial_mm-td.zstack_financial_ora {
	color: #ff9800;
}

/* ─── CUSTOMERS ────────────────────────────────────────── */
/* design.zstack_financial_md: --bg-alt section */
.zstack_financial_sec-cust {
	background: var(--bg-alt);
	padding: 120px 0;
}

.zstack_financial_cust-hd {
	text-align: center;
	margin-bottom: 64px;
}

.zstack_financial_cust-hd .zstack_financial_sec-title {
	margin-bottom: 16px;
}

.zstack_financial_cust-hd-sub {
	font-size: 17px;
	color: var(--t2);
	max-width: 600px;
	margin: 0 auto;
}

.zstack_financial_quote-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* design.zstack_financial_md: card — white bg, border, 14px radius, hover translateY(-3px) */
.zstack_financial_qcard {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding: 34px 28px;
	transition: border-color .2s, transform .2s, box-shadow .2s;
	position: relative;
}

.zstack_financial_qcard:hover {
	border-color: var(--border-hi);
	transform: translateY(-3px);
	box-shadow: 0 12px 32px -8px rgba(0, 87, 156, .10);
}

/* top color bar per design.zstack_financial_md sequence */
.zstack_financial_qcard:nth-child(1)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--blue), #0277bd);
}

.zstack_financial_qcard:nth-child(2)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--teal), var(--blue));
}

.zstack_financial_qcard:nth-child(3)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--orange), #ff8a65);
}

.zstack_financial_qcard-org-row {
	display: flex;
	align-items: center;
	gap: 14px;
}

.zstack_financial_qcard-avatar {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	flex-shrink: 0;
	background: linear-gradient(135deg, var(--blue-faint), var(--teal-dim));
	display: grid;
	place-items: center;
	font-size: 22px;
}

.zstack_financial_qcard-org-name {
	font-size: 14px;
	font-weight: 700;
	color: var(--t1);
}

.zstack_financial_qcard-org-type {
	font-size: 12px;
	color: var(--t3);
}

.zstack_financial_qcard-divider {
	height: 1px;
	background: var(--border);
}

.zstack_financial_qcard-row {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.zstack_financial_qcard-row-lbl {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--t3);
	font-family: var(--mono);
}

.zstack_financial_qcard-row-txt {
	font-size: 13px;
	color: var(--t2);
	line-height: 1.65;
}

.zstack_financial_qcard-result {
	background: rgba(46, 125, 50, .07);
	border: 1px solid rgba(46, 125, 50, .18);
	border-radius: 8px;
	padding: 14px 16px;
	margin-top: auto;
}

.zstack_financial_qcard-result-lbl {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--green);
	font-family: var(--mono);
	margin-bottom: 5px;
}

.zstack_financial_qcard-result-txt {
	font-size: 13px;
	font-weight: 500;
	color: var(--t1);
	line-height: 1.55;
}

.zstack_financial_cust-more {
	text-align: center;
	margin-top: 48px;
}

/* ─── RESOURCES ────────────────────────────────────────── */
/* design.zstack_financial_md: --bg section */
.zstack_financial_sec-res {
	background: var(--bg);
	padding: 120px 0;
}

.zstack_financial_res-hd {
	text-align: center;
	margin-bottom: 64px;
}

.zstack_financial_res-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* design.zstack_financial_md: card hover translateY(-3px) */
.zstack_financial_rcard {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	text-align: center;
	transition: border-color .2s, transform .2s, box-shadow .2s;
}

.zstack_financial_rcard:hover {
	border-color: var(--border-hi);
	transform: translateY(-3px);
	box-shadow: 0 12px 32px -8px rgba(0, 87, 156, .10);
}

.zstack_financial_rcard-cover {
	height: 200px;
	background: var(--bg-alt);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	border-bottom: 1px solid var(--border);
}

.zstack_financial_rcard-cover::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 70% 70% at 50% 60%, rgba(0, 87, 156, .06) 0%, transparent 70%);
}

.zstack_financial_rcard-doc {
	position: relative;
	z-index: 1;
	width: 108px;
	height: 140px;
	border-radius: 4px 8px 8px 4px;
	box-shadow: 4px 8px 24px rgba(0, 0, 0, .15), -2px 2px 8px rgba(0, 0, 0, .08);
	transform: rotate(-4deg) translateY(4px);
	transition: transform .25s;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.zstack_financial_rcard:hover .zstack_financial_rcard-doc {
	transform: rotate(-2deg) translateY(0);
}

.zstack_financial_rcard-doc.zstack_financial_doc-blue {
	background: linear-gradient(160deg, var(--blue) 0%, #0277bd 100%);
}

.zstack_financial_rcard-doc.zstack_financial_doc-dark {
	background: linear-gradient(160deg, #1a2332 0%, #243447 100%);
}

.zstack_financial_rcard-doc.zstack_financial_doc-navy {
	background: linear-gradient(160deg, #1e3a5f 0%, #2d5a8e 100%);
}

.zstack_financial_rcard-doc::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 6px;
	background: rgba(255, 255, 255, .15);
}

.zstack_financial_rcard-doc::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 0;
	height: 0;
	border-left: 18px solid rgba(255, 255, 255, .08);
	border-bottom: 18px solid transparent;
	border-top: 18px solid rgba(255, 255, 255, .22);
}

.zstack_financial_rcard-doc-inner {
	padding: 14px 12px 12px 16px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex: 1;
}

.zstack_financial_rcd-brand {
	font-size: 7px;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .6);
	font-family: var(--mono);
}

.zstack_financial_rcd-rule {
	height: 1px;
	background: rgba(255, 255, 255, .18);
}

.zstack_financial_rcd-title {
	font-size: 9.5px;
	font-weight: 700;
	color: #fff;
	line-height: 1.4;
	margin-top: 2px;
}

.zstack_financial_rcd-sub {
	font-size: 7.5px;
	color: rgba(255, 255, 255, .5);
	line-height: 1.45;
	margin-top: 1px;
}

.zstack_financial_rcd-spacer {
	flex: 1;
}

.zstack_financial_rcd-footer {
	font-size: 7px;
	color: rgba(255, 255, 255, .35);
	font-family: var(--mono);
	letter-spacing: .04em;
	text-transform: uppercase;
}

.zstack_financial_rcard-cover-badge {
	position: absolute;
	bottom: 14px;
	right: 14px;
	background: rgba(255, 255, 255, .15);
	font-size: 9px;
	font-weight: 700;
	color: rgba(255, 255, 255, .85);
	padding: 4px 8px;
	letter-spacing: .06em;
	text-transform: uppercase;
	font-family: var(--mono);
	border-radius: 4px;
}

.zstack_financial_rcard-body {
	padding: 24px 24px 28px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.zstack_financial_rcard-type {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--blue);
	margin-bottom: 8px;
	font-family: var(--mono);
}

.zstack_financial_rcard-h {
	font-size: 17px;
	font-weight: 800;
	color: var(--t1);
	line-height: 1.35;
	margin-bottom: 10px;
	flex: 1;
	letter-spacing: -.01em;
}

.zstack_financial_rcard-sub {
	font-size: 13px;
	color: var(--t2);
	line-height: 1.65;
	margin-bottom: 18px;
}

.zstack_financial_rcard-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 700;
	color: var(--t1);
	cursor: pointer;
	margin-top: auto;
	transition: color .15s;
}

.zstack_financial_rcard-cta svg {
	width: 13px;
	height: 13px;
	stroke: currentColor;
	fill: none;
	stroke-width: 2.5;
	stroke-linecap: round;
}

.zstack_financial_rcard-cta:hover {
	color: var(--blue);
}

.zstack_financial_res-more {
	text-align: center;
	margin-top: 48px;
}

/* ─── GET STARTED CTA ──────────────────────────────────── */
/* design.zstack_financial_md: linear-gradient(160deg, #00579c 0%, #003a6e 55%, #1a2744 100%) + grid overlay */
.zstack_financial_sec-gs {
	padding: 140px 32px 120px;
	text-align: center;
	position: relative;
	overflow: hidden;
	background: linear-gradient(160deg, #00579c 0%, #003a6e 55%, #1a2744 100%);
}

.zstack_financial_sec-gs::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
	background-size: 48px 48px;
}

.zstack_financial_gs-title {
	font-size: clamp(32px, 5vw, 52px);
	font-weight: 900;
	letter-spacing: -0.04em;
	color: #fff;
	margin-bottom: 16px;
	line-height: 1.05;
	position: relative;
	z-index: 1;
}

.zstack_financial_gs-sub {
	font-size: 17px;
	color: rgba(255, 255, 255, .72);
	max-width: 540px;
	margin: 0 auto 44px;
	line-height: 1.65;
	position: relative;
	z-index: 1;
}

.zstack_financial_gs-btns {
	display: flex;
	gap: 14px;
	justify-content: center;
	margin-bottom: 64px;
	position: relative;
	z-index: 1;
}

/* design.zstack_financial_md: outline-white buttons on dark bg */
.zstack_financial_btn-gs-p {
	font-family: var(--font);
	font-size: 15px;
	font-weight: 700;
	background: #fff;
	color: var(--blue);
	border: none;
	border-radius: 8px;
	padding: 14px 32px;
	cursor: pointer;
	transition: all .2s;
}

.zstack_financial_btn-gs-p:hover {
	box-shadow: 0 0 28px 8px rgba(255, 255, 255, .25);
}

.zstack_financial_btn-gs-s {
	font-family: var(--font);
	font-size: 15px;
	font-weight: 600;
	background: transparent;
	color: #fff;
	border: 1.5px solid rgba(255, 255, 255, .4);
	border-radius: 8px;
	padding: 13px 28px;
	cursor: pointer;
	transition: border-color .2s;
}

.zstack_financial_btn-gs-s:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, .08);
}

.zstack_financial_gs-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	max-width: 720px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

/* design.zstack_financial_md: deep-dark bg cards */
.zstack_financial_gs-card {
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 16px;
	padding: 32px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	transition: all .2s;
}

.zstack_financial_gs-card:hover {
	background: rgba(255, 255, 255, .14);
	transform: translateY(-2px);
}

.zstack_financial_gs-card-icon {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.zstack_financial_gs-card-icon svg {
	width: 26px;
	height: 26px;
	stroke: rgba(255, 255, 255, .85);
	fill: none;
	stroke-width: 1.5;
	stroke-linecap: round;
}

.zstack_financial_gs-card-title {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
}

.zstack_financial_gs-card-sub {
	font-size: 12px;
	color: rgba(255, 255, 255, .58);
	text-align: center;
	line-height: 1.5;
}



/* ─── Proof block (replaces trust map for non-map industries) ── */
.zstack_financial_proof-block {
	min-height: 220px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(0, 87, 156, .05) 0%, rgba(0, 87, 156, .02) 100%);
}

.zstack_financial_proof-inner {
	width: 100%;
	padding: 32px 28px;
}

.zstack_financial_proof-title {
	font-size: 17px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--t1);
	line-height: 1.3;
	margin-bottom: 28px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--border);
}

.zstack_financial_proof-items {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.zstack_financial_proof-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.zstack_financial_proof-dot {
	width: 2px;
	height: 20px;
	background: var(--blue);
	border-radius: 2px;
	flex-shrink: 0;
	margin-top: 3px;
}

.zstack_financial_proof-text {
	font-size: 15px;
	font-weight: 600;
	color: var(--t2);
	line-height: 1.5;
}

/* ─── Responsive ───────────────────────────────────────── */
@media (max-width: 960px) {

	.zstack_financial_hero-inner,
	.zstack_financial_uc-layout {
		grid-template-columns: 1fr;
	}

	.zstack_financial_bene-cols,
	.zstack_financial_bene-b-cols,
	.zstack_financial_quote-row,
	.zstack_financial_res-row,
	.zstack_financial_gs-cards {
		grid-template-columns: 1fr;
	}

	.zstack_financial_sf-top {
		grid-template-columns: 1fr;
		gap: 40px;
	}

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

	.nav-links {
		display: none;
	}
}

/* ═══════════ zstack-government.html ═══════════ */
/* ─── Reset ─────────────────────────────────────────── */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	/* Backgrounds */
	--bg: #ffffff;
	--bg-alt: #f8fafc;
	--bg-card: #ffffff;

	/* Primary */
	--blue: #00579c;
	--blue-dim: #004a85;
	--blue-glow: rgba(0, 87, 156, 0.22);
	--blue-faint: rgba(0, 87, 156, 0.07);
	--blue-mid: rgba(0, 87, 156, 0.14);

	/* Accent */
	--orange: #e65100;
	--orange-dim: rgba(230, 81, 0, 0.10);
	--teal: #00897b;
	--teal-dim: rgba(0, 137, 123, 0.10);
	--green: #2e7d32;

	/* Borders */
	--border: rgba(148, 163, 184, 0.28);
	--border-hi: rgba(0, 87, 156, 0.20);

	/* Text */
	--t1: #0f172a;
	--t2: #475569;
	--t3: #94a3b8;

	--font: 'Inter', system-ui, sans-serif;
	--mono: 'JetBrains Mono', monospace;
	--radius: 14px;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font);
	background: var(--bg);
	color: var(--t1);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

/* ─── Fade animation ─────────────────────────────────── */
.zstack_government_fade {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .6s ease, transform .6s ease;
}

.zstack_government_fade.zstack_government_in {
	opacity: 1;
	transform: none;
}

/* ─── Layout ─────────────────────────────────────────── */
.zstack_government_inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 32px;
}

/* ─── Label chip ─────────────────────────────────────── */
.zstack_government_lbl {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	font-family: var(--mono);
	color: var(--blue);
	background: var(--blue-faint);
	border: 1px solid var(--border-hi);
	border-radius: 100px;
	padding: 4px 14px;
}

/* ─── SHARED BUTTONS ──────────────────────────────────── */
/* design.zstack_government_md: btn--primary with glow, btn--ghost */
.zstack_government_btn-p {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font);
	font-size: 15px;
	font-weight: 700;
	background: var(--blue);
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 13px 26px;
	cursor: pointer;
	transition: all .2s;
}

.zstack_government_btn-p:hover {
	background: var(--blue-dim);
	box-shadow: 0 0 28px 8px var(--blue-glow);
}

.zstack_government_btn-s {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font);
	font-size: 15px;
	font-weight: 600;
	background: transparent;
	color: var(--t1);
	border: 1.5px solid var(--border);
	border-radius: 8px;
	padding: 12px 24px;
	cursor: pointer;
	transition: all .2s;
}

.zstack_government_btn-s:hover {
	border-color: var(--blue);
	color: var(--blue);
}

.zstack_government_btn-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font);
	font-size: 14px;
	font-weight: 600;
	background: transparent;
	color: var(--t2);
	border: 1.5px solid var(--border);
	border-radius: 100px;
	padding: 10px 32px;
	cursor: pointer;
	transition: all .2s;
}

.zstack_government_btn-pill:hover {
	border-color: var(--blue);
	color: var(--blue);
}

/* ─── HERO ────────────────────────────────────────────── */
/* design.zstack_government_md: linear-gradient(180deg, #f0f6ff 0%, #ffffff 60%) + grid + glow */
.zstack_government_hero-wrap {
	background: linear-gradient(180deg, #f0f6ff 0%, #ffffff 60%);
	position: relative;
	overflow: hidden;
	padding-top: 100px;
}

/* Grid background */
.zstack_government_hero-wrap::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(0, 87, 156, .06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 87, 156, .06) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 20%, transparent 70%);
}

/* Glow */
.zstack_government_hero-wrap::after {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 55% 45% at 20% 60%, rgba(0, 87, 156, .06) 0%, transparent 65%),
		radial-gradient(ellipse 50% 40% at 80% 40%, rgba(230, 81, 0, .04) 0%, transparent 65%);
}

.zstack_government_hero-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 80px 32px 96px;
	display: grid;
	grid-template-columns: 1fr 460px;
	gap: 72px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.zstack_government_hero-left {
	display: flex;
	flex-direction: column;
}

.zstack_government_hero-bc {
	font-size: 13px;
	font-weight: 600;
	color: var(--blue);
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 24px;
	cursor: pointer;
}

.zstack_government_hero-bc svg {
	width: 14px;
	height: 14px;
	stroke: var(--blue);
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
}

/* design.zstack_government_md 5.7: hero-badge — orange pill with pulse dot */
.zstack_government_hero-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-family: var(--mono);
	color: var(--orange);
	background: var(--orange-dim);
	border: 1px solid rgba(230, 81, 0, .22);
	border-radius: 100px;
	padding: 6px 16px;
	margin-bottom: 22px;
	align-self: flex-start;
}

.zstack_government_hero-label-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--orange);
	flex-shrink: 0;
	animation: pulse 2s infinite;
}

@keyframes pulse {

	0%,
	100% {
		opacity: 1;
		transform: scale(1)
	}

	50% {
		opacity: .6;
		transform: scale(1.35)
	}
}

/* design.zstack_government_md H1: weight 900, first line dark, second line blue gradient */
.zstack_government_hero-h1 {
	font-size: clamp(26px, 3.6vw, 44px);
	font-weight: 900;
	letter-spacing: -0.04em;
	line-height: 1.04;
	margin-bottom: 22px;
	color: var(--t1);
}

/* gradient span for semantic highlight line */
.zstack_government_hero-h1 .zstack_government_h1-accent {
	background: linear-gradient(125deg, var(--blue) 0%, #0277bd 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.zstack_government_hero-p {
	font-size: 17px;
	color: var(--t2);
	line-height: 1.72;
	max-width: 500px;
	margin-bottom: 36px;
}

.zstack_government_hero-btns {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

/* Hero right: trust map */
.zstack_government_hero-right-col {
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 1;
}

.zstack_government_trust-map {
	background: rgba(255, 255, 255, .82);
	border: 1px solid var(--border-hi);
	border-radius: var(--radius) var(--radius) 0 0;
	padding: 20px 16px;
	backdrop-filter: blur(8px);
}

.zstack_government_hero-credibility {
	display: flex;
	align-items: stretch;
	background: var(--bg-card);
	border: 1px solid var(--border-hi);
	border-top: none;
	border-radius: 0 0 var(--radius) var(--radius);
	overflow: hidden;
	box-shadow: 0 4px 16px -4px rgba(0, 87, 156, .12);
}

.zstack_government_hc-item {
	flex: 1;
	padding: 18px 20px;
	text-align: center;
}

/* design.zstack_government_md: stat numbers 32-44px, weight 900, --mono */
.zstack_government_hc-val {
	font-size: 24px;
	font-weight: 900;
	letter-spacing: -0.04em;
	color: var(--blue);
	line-height: 1;
	font-family: var(--mono);
}

.zstack_government_hc-label {
	font-size: 11px;
	color: var(--t3);
	margin-top: 5px;
	line-height: 1.4;
}

.zstack_government_hc-div {
	width: 1px;
	background: var(--border);
	flex-shrink: 0;
}

.zstack_government_hero-divider {
	border: none;
	border-bottom: 1px dashed var(--border);
	margin: 0;
}

/* ─── SECTION SHARED ──────────────────────────────────── */
/* design.zstack_government_md: H2 clamp(28px, 3.8vw, 46px), weight 800 */
.zstack_government_sec-title {
	font-size: clamp(26px, 3.8vw, 44px);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.1;
	color: var(--t1);
}

.zstack_government_sec-sub {
	font-size: 17px;
	color: var(--t2);
	line-height: 1.72;
}

.zstack_government_eyebrow {
	display: inline-flex;
	align-items: center;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	font-family: var(--mono);
	color: var(--blue);
	background: var(--blue-faint);
	border: 1px solid var(--border-hi);
	border-radius: 100px;
	padding: 4px 14px;
	margin-bottom: 12px;
}

/* ─── BENEFITS A ──────────────────────────────────────── */
/* design.zstack_government_md: --bg section */
.zstack_government_sec-bene-a {
	background: var(--bg);
	padding: 120px 0;
}

.zstack_government_bene-a-hd {
	text-align: center;
	margin-bottom: 72px;
}

.zstack_government_bene-a-hd .zstack_government_sec-title {
	margin-bottom: 18px;
}

.zstack_government_bene-cols {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	text-align: center;
}

.zstack_government_bcol {}

.zstack_government_bcol-icon {
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
}

.zstack_government_bcol-h {
	font-size: 19px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--t1);
	margin-bottom: 12px;
}

.zstack_government_bcol-p {
	font-size: 15px;
	color: var(--t2);
	line-height: 1.7;
}

/* ─── BENEFITS B ──────────────────────────────────────── */
/* design.zstack_government_md: --bg-alt section */
.zstack_government_sec-bene-b {
	background: var(--bg-alt);
	padding: 120px 0;
}

.zstack_government_bene-b-hd {
	text-align: center;
	margin-bottom: 56px;
}

.zstack_government_bene-b-cols {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* design.zstack_government_md: card with top color bar, 14px radius, hover translateY(-3px) */
.zstack_government_bbc {
	display: flex;
	flex-direction: column;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	transition: border-color .2s, transform .2s, box-shadow .2s;
	position: relative;
}

.zstack_government_bbc:hover {
	border-color: var(--border-hi);
	transform: translateY(-3px);
	box-shadow: 0 12px 32px -8px rgba(0, 87, 156, .10);
}

/* top color bar - sequential gradients per design.zstack_government_md */
.zstack_government_bbc:nth-child(1)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--blue), #0277bd);
}

.zstack_government_bbc:nth-child(2)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--teal), var(--blue));
}

.zstack_government_bbc:nth-child(3)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--orange), #ff8a65);
}

.zstack_government_bbc-hd {
	background: var(--blue);
	padding: 28px 26px;
	position: relative;
}

.zstack_government_bbc-hd::after {
	content: '';
	position: absolute;
	bottom: -14px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 14px solid transparent;
	border-right: 14px solid transparent;
	border-top: 15px solid var(--blue);
}

.zstack_government_bbc-hd-title {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	line-height: 1.3;
	text-align: center;
}

.zstack_government_bbc-body {
	background: var(--bg-card);
	padding: 36px 22px 30px;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.zstack_government_bbc-p {
	font-size: 14px;
	color: var(--t2);
	line-height: 1.72;
	flex: 1;
	margin-bottom: 24px;
}

.zstack_government_btn-learn {
	font-family: var(--font);
	font-size: 13px;
	font-weight: 700;
	background: var(--blue);
	color: #fff;
	border: none;
	border-radius: 100px;
	padding: 9px 22px;
	cursor: pointer;
	transition: background .15s;
}

.zstack_government_btn-learn:hover {
	background: var(--blue-dim);
}

/* ─── USE CASES ────────────────────────────────────────── */
/* design.zstack_government_md: --bg section */
.zstack_government_sec-uc {
	background: var(--bg);
	padding: 120px 0;
}

.zstack_government_uc-hd {
	text-align: center;
	margin-bottom: 72px;
}

.zstack_government_uc-layout {
	display: grid;
	grid-template-columns: 1fr 520px;
	gap: 72px;
	align-items: start;
}

.zstack_government_uc-list {
	display: flex;
	flex-direction: column;
}

.zstack_government_uc-item {
	padding: 32px 0;
	border-bottom: 1px solid var(--border);
}

.zstack_government_uc-item:first-child {
	border-top: 1px solid var(--border);
}

.zstack_government_uc-item-h {
	font-size: 18px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--t1);
	margin-bottom: 10px;
}

.zstack_government_uc-item-p {
	font-size: 14px;
	color: var(--t2);
	line-height: 1.72;
	margin-bottom: 12px;
}

.zstack_government_uc-link {
	font-size: 13px;
	font-weight: 700;
	color: var(--blue);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	border-bottom: 1px solid rgba(0, 87, 156, .3);
	transition: border-color .2s;
}

.zstack_government_uc-link svg {
	width: 13px;
	height: 13px;
	stroke: var(--blue);
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
}

.zstack_government_uc-link:hover {
	border-color: var(--blue);
}

/* Mockup */
.zstack_government_uc-mockup {
	position: sticky;
	top: 130px;
}

.zstack_government_mockup-shell {
	background: var(--t1);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(0, 0, 0, .18), 0 0 0 1px rgba(0, 87, 156, .15);
}

.zstack_government_mockup-bar {
	background: #1e2530;
	height: 36px;
	display: flex;
	align-items: center;
	padding: 0 16px;
	gap: 8px;
}

.zstack_government_mockup-dot {
	width: 11px;
	height: 11px;
	border-radius: 50%;
}

.zstack_government_mockup-title {
	font-size: 11px;
	color: rgba(255, 255, 255, .35);
	margin-left: 8px;
}

.zstack_government_mockup-body {
	background: #161b22;
	display: grid;
	grid-template-columns: 190px 1fr;
}

.zstack_government_mockup-sidebar {
	background: #1a1f2e;
	padding: 16px 0;
	border-right: 1px solid rgba(255, 255, 255, .06);
}

.zstack_government_ms-section {
	padding: 8px 16px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .28);
	margin-top: 8px;
}

.zstack_government_ms-item {
	padding: 9px 20px;
	font-size: 12px;
	color: rgba(255, 255, 255, .45);
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: background .15s;
}

.zstack_government_ms-item:hover {
	background: rgba(0, 87, 156, .15);
	color: rgba(255, 255, 255, .8);
}

.zstack_government_ms-item.zstack_government_act {
	background: rgba(0, 87, 156, .25);
	color: #7badd4;
}

.zstack_government_ms-item svg {
	width: 13px;
	height: 13px;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.5;
	opacity: .7;
}

.zstack_government_mockup-main {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.zstack_government_mm-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 4px;
}

.zstack_government_mm-title {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
}

.zstack_government_mm-badge {
	background: rgba(0, 87, 156, .4);
	color: #7badd4;
	font-size: 10px;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 4px;
}

.zstack_government_mm-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
}

.zstack_government_mm-card {
	background: #1e2530;
	padding: 14px;
	border: 1px solid rgba(255, 255, 255, .06);
	border-radius: 6px;
}

.zstack_government_mm-card-label {
	font-size: 9px;
	color: rgba(255, 255, 255, .35);
	margin-bottom: 6px;
	letter-spacing: .05em;
	text-transform: uppercase;
}

.zstack_government_mm-card-val {
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	letter-spacing: -0.02em;
}

.zstack_government_mm-card-sub {
	font-size: 10px;
	color: #4caf50;
	margin-top: 3px;
}

.zstack_government_mm-table {
	background: #1e2530;
	border: 1px solid rgba(255, 255, 255, .06);
	border-radius: 6px;
	overflow: hidden;
}

.zstack_government_mm-table-hd {
	display: grid;
	grid-template-columns: 1fr 60px 70px 60px;
	padding: 8px 12px;
	border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.zstack_government_mm-th {
	font-size: 9px;
	font-weight: 700;
	color: rgba(255, 255, 255, .3);
	letter-spacing: .06em;
	text-transform: uppercase;
}

.zstack_government_mm-row {
	display: grid;
	grid-template-columns: 1fr 60px 70px 60px;
	padding: 9px 12px;
	border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.zstack_government_mm-row:last-child {
	border-bottom: none;
}

.zstack_government_mm-td {
	font-size: 11px;
	color: rgba(255, 255, 255, .6);
}

.zstack_government_mm-td.zstack_government_pri {
	color: #7badd4;
	font-weight: 600;
}

.zstack_government_mm-td.zstack_government_grn {
	color: #4caf50;
}

.zstack_government_mm-td.zstack_government_ora {
	color: #ff9800;
}

/* ─── CUSTOMERS ────────────────────────────────────────── */
/* design.zstack_government_md: --bg-alt section */
.zstack_government_sec-cust {
	background: var(--bg-alt);
	padding: 120px 0;
}

.zstack_government_cust-hd {
	text-align: center;
	margin-bottom: 64px;
}

.zstack_government_cust-hd .zstack_government_sec-title {
	margin-bottom: 16px;
}

.zstack_government_cust-hd-sub {
	font-size: 17px;
	color: var(--t2);
	max-width: 600px;
	margin: 0 auto;
}

.zstack_government_quote-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* design.zstack_government_md: card — white bg, border, 14px radius, hover translateY(-3px) */
.zstack_government_qcard {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding: 34px 28px;
	transition: border-color .2s, transform .2s, box-shadow .2s;
	position: relative;
}

.zstack_government_qcard:hover {
	border-color: var(--border-hi);
	transform: translateY(-3px);
	box-shadow: 0 12px 32px -8px rgba(0, 87, 156, .10);
}

/* top color bar per design.zstack_government_md sequence */
.zstack_government_qcard:nth-child(1)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--blue), #0277bd);
}

.zstack_government_qcard:nth-child(2)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--teal), var(--blue));
}

.zstack_government_qcard:nth-child(3)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--orange), #ff8a65);
}

.zstack_government_qcard-org-row {
	display: flex;
	align-items: center;
	gap: 14px;
}

.zstack_government_qcard-avatar {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	flex-shrink: 0;
	background: linear-gradient(135deg, var(--blue-faint), var(--teal-dim));
	display: grid;
	place-items: center;
	font-size: 22px;
}

.zstack_government_qcard-org-name {
	font-size: 14px;
	font-weight: 700;
	color: var(--t1);
}

.zstack_government_qcard-org-type {
	font-size: 12px;
	color: var(--t3);
}

.zstack_government_qcard-divider {
	height: 1px;
	background: var(--border);
}

.zstack_government_qcard-row {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.zstack_government_qcard-row-lbl {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--t3);
	font-family: var(--mono);
}

.zstack_government_qcard-row-txt {
	font-size: 13px;
	color: var(--t2);
	line-height: 1.65;
}

.zstack_government_qcard-result {
	background: rgba(46, 125, 50, .07);
	border: 1px solid rgba(46, 125, 50, .18);
	border-radius: 8px;
	padding: 14px 16px;
	margin-top: auto;
}

.zstack_government_qcard-result-lbl {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--green);
	font-family: var(--mono);
	margin-bottom: 5px;
}

.zstack_government_qcard-result-txt {
	font-size: 13px;
	font-weight: 500;
	color: var(--t1);
	line-height: 1.55;
}

.zstack_government_cust-more {
	text-align: center;
	margin-top: 48px;
}

/* ─── RESOURCES ────────────────────────────────────────── */
/* design.zstack_government_md: --bg section */
.zstack_government_sec-res {
	background: var(--bg);
	padding: 120px 0;
}

.zstack_government_res-hd {
	text-align: center;
	margin-bottom: 64px;
}

.zstack_government_res-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* design.zstack_government_md: card hover translateY(-3px) */
.zstack_government_rcard {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	text-align: center;
	transition: border-color .2s, transform .2s, box-shadow .2s;
}

.zstack_government_rcard:hover {
	border-color: var(--border-hi);
	transform: translateY(-3px);
	box-shadow: 0 12px 32px -8px rgba(0, 87, 156, .10);
}

.zstack_government_rcard-cover {
	height: 200px;
	background: var(--bg-alt);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	border-bottom: 1px solid var(--border);
}

.zstack_government_rcard-cover::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 70% 70% at 50% 60%, rgba(0, 87, 156, .06) 0%, transparent 70%);
}

.zstack_government_rcard-doc {
	position: relative;
	z-index: 1;
	width: 108px;
	height: 140px;
	border-radius: 4px 8px 8px 4px;
	box-shadow: 4px 8px 24px rgba(0, 0, 0, .15), -2px 2px 8px rgba(0, 0, 0, .08);
	transform: rotate(-4deg) translateY(4px);
	transition: transform .25s;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.zstack_government_rcard:hover .zstack_government_rcard-doc {
	transform: rotate(-2deg) translateY(0);
}

.zstack_government_rcard-doc.zstack_government_doc-blue {
	background: linear-gradient(160deg, var(--blue) 0%, #0277bd 100%);
}

.zstack_government_rcard-doc.zstack_government_doc-dark {
	background: linear-gradient(160deg, #1a2332 0%, #243447 100%);
}

.zstack_government_rcard-doc.zstack_government_doc-navy {
	background: linear-gradient(160deg, #1e3a5f 0%, #2d5a8e 100%);
}

.zstack_government_rcard-doc::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 6px;
	background: rgba(255, 255, 255, .15);
}

.zstack_government_rcard-doc::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 0;
	height: 0;
	border-left: 18px solid rgba(255, 255, 255, .08);
	border-bottom: 18px solid transparent;
	border-top: 18px solid rgba(255, 255, 255, .22);
}

.zstack_government_rcard-doc-inner {
	padding: 14px 12px 12px 16px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex: 1;
}

.zstack_government_rcd-brand {
	font-size: 7px;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .6);
	font-family: var(--mono);
}

.zstack_government_rcd-rule {
	height: 1px;
	background: rgba(255, 255, 255, .18);
}

.zstack_government_rcd-title {
	font-size: 9.5px;
	font-weight: 700;
	color: #fff;
	line-height: 1.4;
	margin-top: 2px;
}

.zstack_government_rcd-sub {
	font-size: 7.5px;
	color: rgba(255, 255, 255, .5);
	line-height: 1.45;
	margin-top: 1px;
}

.zstack_government_rcd-spacer {
	flex: 1;
}

.zstack_government_rcd-footer {
	font-size: 7px;
	color: rgba(255, 255, 255, .35);
	font-family: var(--mono);
	letter-spacing: .04em;
	text-transform: uppercase;
}

.zstack_government_rcard-cover-badge {
	position: absolute;
	bottom: 14px;
	right: 14px;
	background: rgba(255, 255, 255, .15);
	font-size: 9px;
	font-weight: 700;
	color: rgba(255, 255, 255, .85);
	padding: 4px 8px;
	letter-spacing: .06em;
	text-transform: uppercase;
	font-family: var(--mono);
	border-radius: 4px;
}

.zstack_government_rcard-body {
	padding: 24px 24px 28px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.zstack_government_rcard-type {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--blue);
	margin-bottom: 8px;
	font-family: var(--mono);
}

.zstack_government_rcard-h {
	font-size: 17px;
	font-weight: 800;
	color: var(--t1);
	line-height: 1.35;
	margin-bottom: 10px;
	flex: 1;
	letter-spacing: -.01em;
}

.zstack_government_rcard-sub {
	font-size: 13px;
	color: var(--t2);
	line-height: 1.65;
	margin-bottom: 18px;
}

.zstack_government_rcard-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 700;
	color: var(--t1);
	cursor: pointer;
	margin-top: auto;
	transition: color .15s;
}

.zstack_government_rcard-cta svg {
	width: 13px;
	height: 13px;
	stroke: currentColor;
	fill: none;
	stroke-width: 2.5;
	stroke-linecap: round;
}

.zstack_government_rcard-cta:hover {
	color: var(--blue);
}

.zstack_government_res-more {
	text-align: center;
	margin-top: 48px;
}

/* ─── GET STARTED CTA ──────────────────────────────────── */
/* design.zstack_government_md: linear-gradient(160deg, #00579c 0%, #003a6e 55%, #1a2744 100%) + grid overlay */
.zstack_government_sec-gs {
	padding: 140px 32px 120px;
	text-align: center;
	position: relative;
	overflow: hidden;
	background: linear-gradient(160deg, #00579c 0%, #003a6e 55%, #1a2744 100%);
}

.zstack_government_sec-gs::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
	background-size: 48px 48px;
}

.zstack_government_gs-title {
	font-size: clamp(32px, 5vw, 52px);
	font-weight: 900;
	letter-spacing: -0.04em;
	color: #fff;
	margin-bottom: 16px;
	line-height: 1.05;
	position: relative;
	z-index: 1;
}

.zstack_government_gs-sub {
	font-size: 17px;
	color: rgba(255, 255, 255, .72);
	max-width: 540px;
	margin: 0 auto 44px;
	line-height: 1.65;
	position: relative;
	z-index: 1;
}

.zstack_government_gs-btns {
	display: flex;
	gap: 14px;
	justify-content: center;
	margin-bottom: 64px;
	position: relative;
	z-index: 1;
}

/* design.zstack_government_md: outline-white buttons on dark bg */
.zstack_government_btn-gs-p {
	font-family: var(--font);
	font-size: 15px;
	font-weight: 700;
	background: #fff;
	color: var(--blue);
	border: none;
	border-radius: 8px;
	padding: 14px 32px;
	cursor: pointer;
	transition: all .2s;
}

.zstack_government_btn-gs-p:hover {
	box-shadow: 0 0 28px 8px rgba(255, 255, 255, .25);
}

.zstack_government_btn-gs-s {
	font-family: var(--font);
	font-size: 15px;
	font-weight: 600;
	background: transparent;
	color: #fff;
	border: 1.5px solid rgba(255, 255, 255, .4);
	border-radius: 8px;
	padding: 13px 28px;
	cursor: pointer;
	transition: border-color .2s;
}

.zstack_government_btn-gs-s:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, .08);
}

.zstack_government_gs-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	max-width: 720px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

/* design.zstack_government_md: deep-dark bg cards */
.zstack_government_gs-card {
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 16px;
	padding: 32px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	transition: all .2s;
}

.zstack_government_gs-card:hover {
	background: rgba(255, 255, 255, .14);
	transform: translateY(-2px);
}

.zstack_government_gs-card-icon {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.zstack_government_gs-card-icon svg {
	width: 26px;
	height: 26px;
	stroke: rgba(255, 255, 255, .85);
	fill: none;
	stroke-width: 1.5;
	stroke-linecap: round;
}

.zstack_government_gs-card-title {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
}

.zstack_government_gs-card-sub {
	font-size: 12px;
	color: rgba(255, 255, 255, .58);
	text-align: center;
	line-height: 1.5;
}



/* ─── Responsive ───────────────────────────────────────── */
@media (max-width: 960px) {

	.zstack_government_hero-inner,
	.zstack_government_uc-layout {
		grid-template-columns: 1fr;
	}

	.zstack_government_bene-cols,
	.zstack_government_bene-b-cols,
	.zstack_government_quote-row,
	.zstack_government_res-row,
	.zstack_government_gs-cards {
		grid-template-columns: 1fr;
	}

	.zstack_government_sf-top {
		grid-template-columns: 1fr;
		gap: 40px;
	}

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

	.nav-links {
		display: none;
	}
}

/* ═══════════ zstack-hci.html ═══════════ */
*,
:before,
:after {
	--tw-border-spacing-x: 0;
	--tw-border-spacing-y: 0;
	--tw-translate-x: 0;
	--tw-translate-y: 0;
	--tw-rotate: 0;
	--tw-skew-x: 0;
	--tw-skew-y: 0;
	--tw-scale-x: 1;
	--tw-scale-y: 1;
	--tw-pan-x: ;
	--tw-pan-y: ;
	--tw-pinch-zoom: ;
	--tw-scroll-snap-strictness: proximity;
	--tw-gradient-from-position: ;
	--tw-gradient-via-position: ;
	--tw-gradient-to-position: ;
	--tw-ordinal: ;
	--tw-slashed-zero: ;
	--tw-numeric-figure: ;
	--tw-numeric-spacing: ;
	--tw-numeric-fraction: ;
	--tw-ring-inset: ;
	--tw-ring-offset-width: 0px;
	--tw-ring-offset-color: #fff;
	--tw-ring-color: rgb(59 130 246 / .5);
	--tw-ring-offset-shadow: 0 0 #0000;
	--tw-ring-shadow: 0 0 #0000;
	--tw-shadow: 0 0 #0000;
	--tw-shadow-colored: 0 0 #0000;
	--tw-blur: ;
	--tw-brightness: ;
	--tw-contrast: ;
	--tw-grayscale: ;
	--tw-hue-rotate: ;
	--tw-invert: ;
	--tw-saturate: ;
	--tw-sepia: ;
	--tw-drop-shadow: ;
	--tw-backdrop-blur: ;
	--tw-backdrop-brightness: ;
	--tw-backdrop-contrast: ;
	--tw-backdrop-grayscale: ;
	--tw-backdrop-hue-rotate: ;
	--tw-backdrop-invert: ;
	--tw-backdrop-opacity: ;
	--tw-backdrop-saturate: ;
	--tw-backdrop-sepia: ;
	--tw-contain-size: ;
	--tw-contain-layout: ;
	--tw-contain-paint: ;
	--tw-contain-style:
}

::backdrop {
	--tw-border-spacing-x: 0;
	--tw-border-spacing-y: 0;
	--tw-translate-x: 0;
	--tw-translate-y: 0;
	--tw-rotate: 0;
	--tw-skew-x: 0;
	--tw-skew-y: 0;
	--tw-scale-x: 1;
	--tw-scale-y: 1;
	--tw-pan-x: ;
	--tw-pan-y: ;
	--tw-pinch-zoom: ;
	--tw-scroll-snap-strictness: proximity;
	--tw-gradient-from-position: ;
	--tw-gradient-via-position: ;
	--tw-gradient-to-position: ;
	--tw-ordinal: ;
	--tw-slashed-zero: ;
	--tw-numeric-figure: ;
	--tw-numeric-spacing: ;
	--tw-numeric-fraction: ;
	--tw-ring-inset: ;
	--tw-ring-offset-width: 0px;
	--tw-ring-offset-color: #fff;
	--tw-ring-color: rgb(59 130 246 / .5);
	--tw-ring-offset-shadow: 0 0 #0000;
	--tw-ring-shadow: 0 0 #0000;
	--tw-shadow: 0 0 #0000;
	--tw-shadow-colored: 0 0 #0000;
	--tw-blur: ;
	--tw-brightness: ;
	--tw-contrast: ;
	--tw-grayscale: ;
	--tw-hue-rotate: ;
	--tw-invert: ;
	--tw-saturate: ;
	--tw-sepia: ;
	--tw-drop-shadow: ;
	--tw-backdrop-blur: ;
	--tw-backdrop-brightness: ;
	--tw-backdrop-contrast: ;
	--tw-backdrop-grayscale: ;
	--tw-backdrop-hue-rotate: ;
	--tw-backdrop-invert: ;
	--tw-backdrop-opacity: ;
	--tw-backdrop-saturate: ;
	--tw-backdrop-sepia: ;
	--tw-contain-size: ;
	--tw-contain-layout: ;
	--tw-contain-paint: ;
	--tw-contain-style:
}

*,
:before,
:after {
	box-sizing: border-box;
	border-width: 0;
	border-style: solid;
	border-color: #e5e7eb
}

:before,
:after {
	--tw-content: ""
}

html,
:host {
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
	-moz-tab-size: 4;
	-o-tab-size: 4;
	tab-size: 4;
	font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji";
	font-feature-settings: normal;
	font-variation-settings: normal;
	-webkit-tap-highlight-color: transparent
}

body {
	margin: 0;
	line-height: inherit
}

hr {
	height: 0;
	color: inherit;
	border-top-width: 1px
}

abbr:where([title]) {
	-webkit-text-decoration: underline dotted;
	text-decoration: underline dotted
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
	font-weight: inherit
}

a {
	color: inherit;
	text-decoration: inherit
}

b,
strong {
	font-weight: bolder
}

code,
kbd,
samp,
pre {
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
	font-feature-settings: normal;
	font-variation-settings: normal;
	font-size: 1em
}

small {
	font-size: 80%
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline
}

sub {
	bottom: -.25em
}

sup {
	top: -.5em
}

table {
	text-indent: 0;
	border-color: inherit;
	border-collapse: collapse
}

button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-feature-settings: inherit;
	font-variation-settings: inherit;
	font-size: 100%;
	font-weight: inherit;
	line-height: inherit;
	letter-spacing: inherit;
	color: inherit;
	margin: 0;
	padding: 0
}

button,
select {
	text-transform: none
}

button,
input:where([type=button]),
input:where([type=reset]),
input:where([type=submit]) {
	-webkit-appearance: button;
	background-color: transparent;
	background-image: none
}

:-moz-focusring {
	outline: auto
}

:-moz-ui-invalid {
	box-shadow: none
}

progress {
	vertical-align: baseline
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
	height: auto
}

[type=search] {
	-webkit-appearance: textfield;
	outline-offset: -2px
}

::-webkit-search-decoration {
	-webkit-appearance: none
}

::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit
}

summary {
	display: list-item
}

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
	margin: 0
}

fieldset {
	margin: 0;
	padding: 0
}

legend {
	padding: 0
}

ol,
ul,
menu {
	list-style: none;
	margin: 0;
	padding: 0
}

dialog {
	padding: 0
}

textarea {
	resize: vertical
}

input::-moz-placeholder,
textarea::-moz-placeholder {
	opacity: 1;
	color: #9ca3af
}

input::placeholder,
textarea::placeholder {
	opacity: 1;
	color: #9ca3af
}

button,
[role=button] {
	cursor: pointer
}

:disabled {
	cursor: default
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
	display: block;
	vertical-align: middle
}

img,
video {
	max-width: 100%;
	height: auto
}

[hidden]:where(:not([hidden=until-found])) {
	display: none
}

:root {
	--blue: #00579c;
	--blue-dim: #004a85;
	--blue-deep: #003a6e;
	--blue-glow: rgba(0, 87, 156, .22);
	--blue-faint: rgba(0, 87, 156, .07);
	--blue-mid: rgba(0, 87, 156, .14);
	--orange: #e65100;
	--orange-dim: rgba(230, 81, 0, .1);
	--teal: #00897b;
	--teal-dim: rgba(0, 137, 123, .1);
	--bg: #ffffff;
	--bg-alt: #f8fafc;
	--bg-card: #ffffff;
	--border: rgba(148, 163, 184, .28);
	--border-hi: rgba(0, 87, 156, .2);
	--t1: #0f172a;
	--t2: #475569;
	--t3: #94a3b8;
	--radius: 14px;
	--font: "Inter", system-ui, sans-serif;
	--mono: "JetBrains Mono", monospace
}

* {
	box-sizing: border-box
}

html {
	scroll-behavior: smooth
}

body {
	font-family: var(--font);
	color: var(--t1);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale
}

.wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 32px
}

@media(max-width:640px) {
	.wrap {
		padding: 0 20px
	}
}

.zstack_hci_lbl {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .11em;
	text-transform: uppercase;
	color: var(--blue);
	background: var(--blue-faint);
	border: 1px solid var(--border-hi);
	border-radius: 100px;
	padding: 5px 16px;
	font-family: var(--font)
}

.zstack_hci_lbl--orange {
	color: var(--orange);
	background: var(--orange-dim);
	border-color: #e6510040
}

.zstack_hci_lbl--white {
	color: #ffffffd9;
	background: #ffffff1a;
	border-color: #ffffff38
}

.zstack_hci_h1 {
	font-size: clamp(28px, 4.6vw, 66px);
	font-weight: 900;
	letter-spacing: -.035em;
	line-height: 1.08
}

.zstack_hci_h2 {
	font-size: clamp(28px, 3.2vw, 52px);
	font-weight: 800;
	letter-spacing: -.03em;
	line-height: 1.12
}

.zstack_hci_sec-sub {
	font-size: 18px;
	color: var(--t2);
	line-height: 1.7;
	margin-top: 14px
}

.zstack_hci_sec-header {
	margin-bottom: 56px;
	text-align: center
}

.zstack_hci_btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font);
	font-weight: 700;
	border-radius: 10px;
	border: none;
	cursor: pointer;
	transition: all .2s;
	text-decoration: none
}

.zstack_hci_btn--lg {
	padding: 14px 28px;
	font-size: 15px
}

.zstack_hci_btn--md {
	padding: 11px 22px;
	font-size: 14px
}

.zstack_hci_btn--primary {
	background: var(--blue);
	color: #fff
}

.zstack_hci_btn--primary:hover {
	background: var(--blue-dim);
	transform: translateY(-1px);
	box-shadow: 0 8px 28px var(--blue-glow)
}

.zstack_hci_btn--ghost {
	background: transparent;
	color: var(--t1);
	border: 1.5px solid var(--border)
}

.zstack_hci_btn--ghost:hover {
	border-color: var(--blue);
	color: var(--blue)
}

.zstack_hci_btn--outline-white {
	background: transparent;
	color: #fff;
	border: 1.5px solid rgba(255, 255, 255, .4)
}

.zstack_hci_btn--outline-white:hover {
	background: #ffffff1f;
	border-color: #fff
}

.zstack_hci_card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 32px 28px;
	position: relative;
	overflow: hidden;
	transition: border-color .2s, transform .2s, box-shadow .2s
}

.zstack_hci_card:hover {
	border-color: var(--border-hi);
	transform: translateY(-3px);
	box-shadow: 0 8px 28px var(--blue-glow)
}

.zstack_hci_cta-card {
	background: #ffffff14;
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 16px;
	padding: 36px 30px;
	transition: background .2s, border-color .2s, transform .2s
}

.zstack_hci_cta-card:hover {
	background: #ffffff21;
	border-color: #ffffff47;
	transform: translateY(-3px)
}

.zstack_hci_fade {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity .6s ease, transform .6s ease
}

.zstack_hci_fade.zstack_hci_in {
	opacity: 1;
	transform: none
}

.zstack_hci_stats-bar {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	background: #ffffff0f;
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 16px;
	overflow: hidden;
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px)
}

.zstack_hci_stat-cell {
	background: #ffffff0a;
	padding: 28px 24px;
	position: relative
}

.zstack_hci_stat-cell:before {
	content: "";
	position: absolute;
	left: 0;
	top: 20%;
	bottom: 20%;
	width: 3px;
	border-radius: 2px
}

.zstack_hci_stat-n {
	font-size: 28px;
	font-weight: 900;
	color: #fff;
	letter-spacing: -.03em;
	line-height: 1;
	margin-bottom: 6px
}

.zstack_hci_stat-l {
	font-size: 13px;
	color: #ffffff8c
}

.footer {
	padding: 64px 0 36px;
	background: #0a1628
}

.zstack_hci_sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0
}

.zstack_hci_pointer-events-none {
	pointer-events: none
}

.zstack_hci_visible {
	visibility: visible
}

.zstack_hci_invisible {
	visibility: hidden
}

.zstack_hci_fixed {
	position: fixed
}

.zstack_hci_absolute {
	position: absolute
}

.zstack_hci_relative {
	position: relative
}

.zstack_hci_inset-0 {
	inset: 0
}

.zstack_hci_inset-x-0 {
	left: 0;
	right: 0
}

.zstack_hci_inset-y-0 {
	top: 0;
	bottom: 0
}

.-bottom-12 {
	bottom: -3rem
}

.-left-12 {
	left: -3rem
}

.-right-12 {
	right: -3rem
}

.-top-12 {
	top: -3rem
}

.zstack_hci_bottom-0 {
	bottom: 0
}

.zstack_hci_left-0 {
	left: 0
}

.zstack_hci_left-1\/2 {
	left: 50%
}

.zstack_hci_left-2 {
	left: .5rem
}

.zstack_hci_left-\[50\%\] {
	left: 50%
}

.zstack_hci_right-0 {
	right: 0
}

.zstack_hci_right-1 {
	right: .25rem
}

.zstack_hci_right-2 {
	right: .5rem
}

.zstack_hci_right-3 {
	right: .75rem
}

.zstack_hci_right-4 {
	right: 1rem
}

.zstack_hci_top-0 {
	top: 0
}

.zstack_hci_top-1\.5 {
	top: .375rem
}

.zstack_hci_top-1\/2 {
	top: 50%
}

.zstack_hci_top-3\.5 {
	top: .875rem
}

.zstack_hci_top-4 {
	top: 1rem
}

.zstack_hci_top-\[1px\] {
	top: 1px
}

.zstack_hci_top-\[50\%\] {
	top: 50%
}

.zstack_hci_top-\[60\%\] {
	top: 60%
}

.zstack_hci_top-full {
	top: 100%
}

.zstack_hci_isolate {
	isolation: isolate
}

.zstack_hci_z-10 {
	z-index: 10
}

.zstack_hci_z-20 {
	z-index: 20
}

.zstack_hci_z-50 {
	z-index: 50
}

.zstack_hci_z-\[1\] {
	z-index: 1
}

.zstack_hci_order-first {
	order: -9999
}

.zstack_hci_order-last {
	order: 9999
}

.zstack_hci_col-start-2 {
	grid-column-start: 2
}

.zstack_hci_row-span-2 {
	grid-row: span 2 / span 2
}

.zstack_hci_row-start-1 {
	grid-row-start: 1
}

.\!m-0 {
	margin: 0 !important
}

.-mx-1 {
	margin-left: -.25rem;
	margin-right: -.25rem
}

.-my-2 {
	margin-top: -.5rem;
	margin-bottom: -.5rem
}

.zstack_hci_mx-2 {
	margin-left: .5rem;
	margin-right: .5rem
}

.zstack_hci_mx-3\.5 {
	margin-left: .875rem;
	margin-right: .875rem
}

.zstack_hci_mx-auto {
	margin-left: auto;
	margin-right: auto
}

.zstack_hci_my-0 {
	margin-top: 0;
	margin-bottom: 0
}

.zstack_hci_my-0\.5 {
	margin-top: .125rem;
	margin-bottom: .125rem
}

.zstack_hci_my-1 {
	margin-top: .25rem;
	margin-bottom: .25rem
}

.-ml-4 {
	margin-left: -1rem
}

.-mt-4 {
	margin-top: -1rem
}

.zstack_hci_mb-2 {
	margin-bottom: .5rem
}

.zstack_hci_mb-3 {
	margin-bottom: .75rem
}

.zstack_hci_ml-1 {
	margin-left: .25rem
}

.zstack_hci_ml-4 {
	margin-left: 1rem
}

.zstack_hci_ml-auto {
	margin-left: auto
}

.zstack_hci_mt-1\.5 {
	margin-top: .375rem
}

.zstack_hci_mt-2 {
	margin-top: .5rem
}

.zstack_hci_mt-4 {
	margin-top: 1rem
}

.zstack_hci_mt-auto {
	margin-top: auto
}

.zstack_hci_line-clamp-1 {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1
}

.zstack_hci_line-clamp-2 {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2
}

.zstack_hci_block {
	display: block
}

.zstack_hci_inline-block {
	display: inline-block
}

.zstack_hci_flex {
	display: flex
}

.zstack_hci_inline-flex {
	display: inline-flex
}

.zstack_hci_table {
	display: table
}

.zstack_hci_table-caption {
	display: table-caption
}

.zstack_hci_table-cell {
	display: table-cell
}

.zstack_hci_table-row {
	display: table-row
}

.zstack_hci_grid {
	display: grid
}

.zstack_hci_hidden {
	display: none
}

.zstack_hci_aspect-square {
	aspect-ratio: 1 / 1
}

.zstack_hci_aspect-video {
	aspect-ratio: 16 / 9
}

.zstack_hci_size-10 {
	width: 2.5rem;
	height: 2.5rem
}

.zstack_hci_size-2 {
	width: .5rem;
	height: .5rem
}

.zstack_hci_size-2\.5 {
	width: .625rem;
	height: .625rem
}

.zstack_hci_size-3 {
	width: .75rem;
	height: .75rem
}

.zstack_hci_size-3\.5 {
	width: .875rem;
	height: .875rem
}

.zstack_hci_size-4 {
	width: 1rem;
	height: 1rem
}

.zstack_hci_size-6 {
	width: 1.5rem;
	height: 1.5rem
}

.zstack_hci_size-7 {
	width: 1.75rem;
	height: 1.75rem
}

.zstack_hci_size-8 {
	width: 2rem;
	height: 2rem
}

.zstack_hci_size-9 {
	width: 2.25rem;
	height: 2.25rem
}

.zstack_hci_size-auto {
	width: auto;
	height: auto
}

.zstack_hci_size-full {
	width: 100%;
	height: 100%
}

.zstack_hci_h-1\.5 {
	height: .375rem
}

.zstack_hci_h-10 {
	height: 2.5rem
}

.zstack_hci_h-12 {
	height: 3rem
}

.zstack_hci_h-2 {
	height: .5rem
}

.zstack_hci_h-2\.5 {
	height: .625rem
}

.zstack_hci_h-4 {
	height: 1rem
}

.zstack_hci_h-5 {
	height: 1.25rem
}

.zstack_hci_h-6 {
	height: 1.5rem
}

.zstack_hci_h-7 {
	height: 1.75rem
}

.zstack_hci_h-8 {
	height: 2rem
}

.zstack_hci_h-9 {
	height: 2.25rem
}

.zstack_hci_h-\[1\.15rem\] {
	height: 1.15rem
}

.zstack_hci_h-\[calc\(100\%-1px\)\] {
	height: calc(100% - 1px)
}

.zstack_hci_h-\[var\(--radix-navigation-menu-viewport-height\)\] {
	height: var(--radix-navigation-menu-viewport-height)
}

.zstack_hci_h-\[var\(--radix-select-trigger-height\)\] {
	height: var(--radix-select-trigger-height)
}

.zstack_hci_h-auto {
	height: auto
}

.zstack_hci_h-full {
	height: 100%
}

.zstack_hci_h-px {
	height: 1px
}

.zstack_hci_h-svh {
	height: 100svh
}

.zstack_hci_max-h-\[300px\] {
	max-height: 300px
}

.zstack_hci_min-h-0 {
	min-height: 0px
}

.zstack_hci_min-h-16 {
	min-height: 4rem
}

.zstack_hci_min-h-4 {
	min-height: 1rem
}

.zstack_hci_min-h-svh {
	min-height: 100svh
}

.zstack_hci_w-0 {
	width: 0px
}

.zstack_hci_w-1 {
	width: .25rem
}

.zstack_hci_w-2 {
	width: .5rem
}

.zstack_hci_w-2\.5 {
	width: .625rem
}

.zstack_hci_w-3 {
	width: .75rem
}

.zstack_hci_w-3\/4 {
	width: 75%
}

.zstack_hci_w-4 {
	width: 1rem
}

.zstack_hci_w-5 {
	width: 1.25rem
}

.zstack_hci_w-64 {
	width: 16rem
}

.zstack_hci_w-72 {
	width: 18rem
}

.zstack_hci_w-8 {
	width: 2rem
}

.zstack_hci_w-9 {
	width: 2.25rem
}

.zstack_hci_w-\[100px\] {
	width: 100px
}

.zstack_hci_w-auto {
	width: auto
}

.zstack_hci_w-fit {
	width: -moz-fit-content;
	width: fit-content
}

.zstack_hci_w-full {
	width: 100%
}

.zstack_hci_w-max {
	width: -moz-max-content;
	width: max-content
}

.zstack_hci_w-px {
	width: 1px
}

.zstack_hci_min-w-0 {
	min-width: 0px
}

.zstack_hci_min-w-10 {
	min-width: 2.5rem
}

.zstack_hci_min-w-5 {
	min-width: 1.25rem
}

.zstack_hci_min-w-8 {
	min-width: 2rem
}

.zstack_hci_min-w-9 {
	min-width: 2.25rem
}

.zstack_hci_min-w-\[12rem\] {
	min-width: 12rem
}

.zstack_hci_min-w-\[8rem\] {
	min-width: 8rem
}

.zstack_hci_min-w-\[var\(--radix-select-trigger-width\)\] {
	min-width: var(--radix-select-trigger-width)
}

.zstack_hci_max-w-\[calc\(100\%-2rem\)\] {
	max-width: calc(100% - 2rem)
}

.zstack_hci_max-w-max {
	max-width: -moz-max-content;
	max-width: max-content
}

.zstack_hci_max-w-sm {
	max-width: 24rem
}

.zstack_hci_flex-1 {
	flex: 1 1 0%
}

.zstack_hci_shrink-0 {
	flex-shrink: 0
}

.zstack_hci_grow {
	flex-grow: 1
}

.zstack_hci_grow-0 {
	flex-grow: 0
}

.zstack_hci_basis-full {
	flex-basis: 100%
}

.zstack_hci_caption-bottom {
	caption-side: bottom
}

.zstack_hci_border-collapse {
	border-collapse: collapse
}

.-translate-x-1\/2 {
	--tw-translate-x: -50%;
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.-translate-x-px {
	--tw-translate-x: -1px;
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.-translate-y-1\/2 {
	--tw-translate-y: -50%;
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.zstack_hci_translate-x-\[-50\%\] {
	--tw-translate-x: -50%;
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.zstack_hci_translate-x-px {
	--tw-translate-x: 1px;
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.zstack_hci_translate-y-0\.5 {
	--tw-translate-y: .125rem;
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.zstack_hci_translate-y-\[-50\%\] {
	--tw-translate-y: -50%;
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.zstack_hci_translate-y-\[calc\(-50\%_-_2px\)\] {
	--tw-translate-y: calc(-50% - 2px);
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.zstack_hci_rotate-45 {
	--tw-rotate: 45deg;
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.zstack_hci_rotate-90 {
	--tw-rotate: 90deg;
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.zstack_hci_transform {
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

@keyframes caret-blink {

	0%,
	70%,
	to {
		opacity: 1
	}

	20%,
	50% {
		opacity: 0
	}
}

.zstack_hci_animate-caret-blink {
	animation: caret-blink 1.25s ease-out infinite
}

@keyframes pulse {
	50% {
		opacity: .5
	}
}

.zstack_hci_animate-pulse {
	animation: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite
}

@keyframes spin {
	to {
		transform: rotate(360deg)
	}
}

.zstack_hci_animate-spin {
	animation: spin 1s linear infinite
}

.zstack_hci_cursor-default {
	cursor: default
}

.zstack_hci_cursor-text {
	cursor: text
}

.zstack_hci_touch-none {
	touch-action: none
}

.zstack_hci_select-none {
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none
}

.zstack_hci_resize-none {
	resize: none
}

.zstack_hci_scroll-my-1 {
	scroll-margin-top: .25rem;
	scroll-margin-bottom: .25rem
}

.zstack_hci_scroll-py-1 {
	scroll-padding-top: .25rem;
	scroll-padding-bottom: .25rem
}

.zstack_hci_list-disc {
	list-style-type: disc
}

.zstack_hci_list-none {
	list-style-type: none
}

.zstack_hci_auto-rows-min {
	grid-auto-rows: min-content
}

.zstack_hci_grid-cols-\[0_1fr\] {
	grid-template-columns: 0 1fr
}

.zstack_hci_grid-rows-\[auto_auto\] {
	grid-template-rows: auto auto
}

.zstack_hci_flex-row {
	flex-direction: row
}

.zstack_hci_flex-col {
	flex-direction: column
}

.zstack_hci_flex-col-reverse {
	flex-direction: column-reverse
}

.zstack_hci_flex-wrap {
	flex-wrap: wrap
}

.zstack_hci_place-content-center {
	place-content: center
}

.zstack_hci_items-start {
	align-items: flex-start
}

.zstack_hci_items-end {
	align-items: flex-end
}

.zstack_hci_items-center {
	align-items: center
}

.zstack_hci_items-stretch {
	align-items: stretch
}

.zstack_hci_justify-start {
	justify-content: flex-start
}

.zstack_hci_justify-center {
	justify-content: center
}

.zstack_hci_justify-between {
	justify-content: space-between
}

.zstack_hci_justify-items-start {
	justify-items: start
}

.zstack_hci_gap-0\.5 {
	gap: .125rem
}

.zstack_hci_gap-1 {
	gap: .25rem
}

.zstack_hci_gap-1\.5 {
	gap: .375rem
}

.zstack_hci_gap-2 {
	gap: .5rem
}

.zstack_hci_gap-2\.5 {
	gap: .625rem
}

.zstack_hci_gap-3 {
	gap: .75rem
}

.zstack_hci_gap-4 {
	gap: 1rem
}

.zstack_hci_gap-6 {
	gap: 1.5rem
}

.zstack_hci_gap-7 {
	gap: 1.75rem
}

.zstack_hci_gap-\[--spacing\(var\(--gap\)\)\] {
	gap: var(--spacing(var(--gap)))
}

.zstack_hci_gap-y-0\.5 {
	row-gap: .125rem
}

.zstack_hci_self-start {
	align-self: flex-start
}

.zstack_hci_self-stretch {
	align-self: stretch
}

.zstack_hci_justify-self-end {
	justify-self: end
}

.zstack_hci_overflow-auto {
	overflow: auto
}

.zstack_hci_overflow-hidden {
	overflow: hidden
}

.zstack_hci_overflow-x-auto {
	overflow-x: auto
}

.zstack_hci_overflow-y-auto {
	overflow-y: auto
}

.zstack_hci_overflow-x-hidden {
	overflow-x: hidden
}

.zstack_hci_whitespace-nowrap {
	white-space: nowrap
}

.zstack_hci_text-balance {
	text-wrap: balance
}

.zstack_hci_break-words {
	overflow-wrap: break-word
}

.zstack_hci_rounded-\[2px\] {
	border-radius: 2px
}

.zstack_hci_rounded-\[4px\] {
	border-radius: 4px
}

.zstack_hci_rounded-\[calc\(var\(--radius\)-5px\)\] {
	border-radius: calc(var(--radius) - 5px)
}

.zstack_hci_rounded-\[inherit\] {
	border-radius: inherit
}

.zstack_hci_rounded-full {
	border-radius: 9999px
}

.zstack_hci_rounded-lg {
	border-radius: var(--radius)
}

.zstack_hci_rounded-md {
	border-radius: calc(var(--radius) - 2px)
}

.zstack_hci_rounded-none {
	border-radius: 0
}

.zstack_hci_rounded-sm {
	border-radius: calc(var(--radius) - 4px)
}

.zstack_hci_rounded-xl {
	border-radius: calc(var(--radius) + 4px)
}

.zstack_hci_rounded-xs {
	border-radius: calc(var(--radius) - 6px)
}

.zstack_hci_rounded-l-md {
	border-top-left-radius: calc(var(--radius) - 2px);
	border-bottom-left-radius: calc(var(--radius) - 2px)
}

.zstack_hci_rounded-r-md {
	border-top-right-radius: calc(var(--radius) - 2px);
	border-bottom-right-radius: calc(var(--radius) - 2px)
}

.zstack_hci_rounded-tl-sm {
	border-top-left-radius: calc(var(--radius) - 4px)
}

.zstack_hci_border {
	border-width: 1px
}

.zstack_hci_border-0 {
	border-width: 0px
}

.zstack_hci_border-\[1\.5px\] {
	border-width: 1.5px
}

.zstack_hci_border-y {
	border-top-width: 1px;
	border-bottom-width: 1px
}

.zstack_hci_border-b {
	border-bottom-width: 1px
}

.zstack_hci_border-l {
	border-left-width: 1px
}

.zstack_hci_border-r {
	border-right-width: 1px
}

.zstack_hci_border-t {
	border-top-width: 1px
}

.zstack_hci_border-dashed {
	border-style: dashed
}

.zstack_hci_border-border {
	border-color: hsl(var(--border))
}

.zstack_hci_border-border\/50 {
	border-color: hsl(var(--border) / .5)
}

.zstack_hci_border-input {
	border-color: hsl(var(--input))
}

.zstack_hci_border-primary {
	border-color: hsl(var(--primary))
}

.zstack_hci_border-sidebar-border {
	border-color: hsl(var(--sidebar-border))
}

.zstack_hci_border-transparent {
	border-color: transparent
}

.zstack_hci_border-l-transparent {
	border-left-color: transparent
}

.zstack_hci_border-t-transparent {
	border-top-color: transparent
}

.zstack_hci_bg-accent {
	background-color: hsl(var(--accent))
}

.zstack_hci_bg-background {
	background-color: hsl(var(--background))
}

.zstack_hci_bg-black\/50 {
	background-color: #00000080
}

.zstack_hci_bg-border {
	background-color: hsl(var(--border))
}

.zstack_hci_bg-card {
	background-color: hsl(var(--card))
}

.zstack_hci_bg-destructive {
	--tw-bg-opacity: 1;
	background-color: hsl(var(--destructive) / var(--tw-bg-opacity, 1))
}

.zstack_hci_bg-foreground {
	background-color: hsl(var(--foreground))
}

.zstack_hci_bg-input {
	background-color: hsl(var(--input))
}

.zstack_hci_bg-muted {
	background-color: hsl(var(--muted))
}

.zstack_hci_bg-muted\/50 {
	background-color: hsl(var(--muted) / .5)
}

.zstack_hci_bg-popover {
	background-color: hsl(var(--popover))
}

.zstack_hci_bg-primary {
	background-color: hsl(var(--primary))
}

.zstack_hci_bg-primary\/20 {
	background-color: hsl(var(--primary) / .2)
}

.zstack_hci_bg-secondary {
	background-color: hsl(var(--secondary))
}

.zstack_hci_bg-sidebar {
	background-color: hsl(var(--sidebar-background))
}

.zstack_hci_bg-sidebar-border {
	background-color: hsl(var(--sidebar-border))
}

.zstack_hci_bg-transparent {
	background-color: transparent
}

.zstack_hci_bg-white {
	--tw-bg-opacity: 1;
	background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1))
}

.zstack_hci_fill-current {
	fill: currentColor
}

.zstack_hci_fill-foreground {
	fill: hsl(var(--foreground))
}

.zstack_hci_fill-primary {
	fill: hsl(var(--primary))
}

.zstack_hci_p-0 {
	padding: 0
}

.zstack_hci_p-1 {
	padding: .25rem
}

.zstack_hci_p-2 {
	padding: .5rem
}

.zstack_hci_p-3 {
	padding: .75rem
}

.zstack_hci_p-4 {
	padding: 1rem
}

.zstack_hci_p-6 {
	padding: 1.5rem
}

.zstack_hci_p-\[3px\] {
	padding: 3px
}

.zstack_hci_p-px {
	padding: 1px
}

.zstack_hci_px-1 {
	padding-left: .25rem;
	padding-right: .25rem
}

.zstack_hci_px-1\.5 {
	padding-left: .375rem;
	padding-right: .375rem
}

.zstack_hci_px-2 {
	padding-left: .5rem;
	padding-right: .5rem
}

.zstack_hci_px-2\.5 {
	padding-left: .625rem;
	padding-right: .625rem
}

.zstack_hci_px-3 {
	padding-left: .75rem;
	padding-right: .75rem
}

.zstack_hci_px-4 {
	padding-left: 1rem;
	padding-right: 1rem
}

.zstack_hci_px-6 {
	padding-left: 1.5rem;
	padding-right: 1.5rem
}

.zstack_hci_py-0\.5 {
	padding-top: .125rem;
	padding-bottom: .125rem
}

.zstack_hci_py-1 {
	padding-top: .25rem;
	padding-bottom: .25rem
}

.zstack_hci_py-1\.5 {
	padding-top: .375rem;
	padding-bottom: .375rem
}

.zstack_hci_py-2 {
	padding-top: .5rem;
	padding-bottom: .5rem
}

.zstack_hci_py-3 {
	padding-top: .75rem;
	padding-bottom: .75rem
}

.zstack_hci_py-4 {
	padding-top: 1rem;
	padding-bottom: 1rem
}

.zstack_hci_py-6 {
	padding-top: 1.5rem;
	padding-bottom: 1.5rem
}

.zstack_hci_pb-3 {
	padding-bottom: .75rem
}

.zstack_hci_pb-4 {
	padding-bottom: 1rem
}

.zstack_hci_pl-2 {
	padding-left: .5rem
}

.zstack_hci_pl-3 {
	padding-left: .75rem
}

.zstack_hci_pl-4 {
	padding-left: 1rem
}

.zstack_hci_pl-8 {
	padding-left: 2rem
}

.zstack_hci_pr-1 {
	padding-right: .25rem
}

.zstack_hci_pr-2 {
	padding-right: .5rem
}

.zstack_hci_pr-2\.5 {
	padding-right: .625rem
}

.zstack_hci_pr-3 {
	padding-right: .75rem
}

.zstack_hci_pr-8 {
	padding-right: 2rem
}

.zstack_hci_pt-0 {
	padding-top: 0
}

.zstack_hci_pt-3 {
	padding-top: .75rem
}

.zstack_hci_pt-4 {
	padding-top: 1rem
}

.zstack_hci_text-left {
	text-align: left
}

.zstack_hci_text-center {
	text-align: center
}

.zstack_hci_align-middle {
	vertical-align: middle
}

.zstack_hci_font-mono {
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace
}

.zstack_hci_font-sans {
	font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji"
}

.zstack_hci_text-\[0\.8rem\] {
	font-size: .8rem
}

.zstack_hci_text-base {
	font-size: 1rem;
	line-height: 1.5rem
}

.zstack_hci_text-lg {
	font-size: 1.125rem;
	line-height: 1.75rem
}

.zstack_hci_text-sm {
	font-size: .875rem;
	line-height: 1.25rem
}

.zstack_hci_text-sm\/relaxed {
	font-size: .875rem;
	line-height: 1.625
}

.zstack_hci_text-xs {
	font-size: .75rem;
	line-height: 1rem
}

.zstack_hci_font-medium {
	font-weight: 500
}

.zstack_hci_font-normal {
	font-weight: 400
}

.zstack_hci_font-semibold {
	font-weight: 600
}

.zstack_hci_uppercase {
	text-transform: uppercase
}

.zstack_hci_tabular-nums {
	--tw-numeric-spacing: tabular-nums;
	font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction)
}

.zstack_hci_leading-none {
	line-height: 1
}

.zstack_hci_leading-normal {
	line-height: 1.5
}

.zstack_hci_leading-snug {
	line-height: 1.375
}

.zstack_hci_tracking-tight {
	letter-spacing: -.025em
}

.zstack_hci_tracking-widest {
	letter-spacing: .1em
}

.zstack_hci_text-accent-foreground {
	color: hsl(var(--accent-foreground))
}

.zstack_hci_text-background {
	color: hsl(var(--background))
}

.zstack_hci_text-card-foreground {
	color: hsl(var(--card-foreground))
}

.zstack_hci_text-current {
	color: currentColor
}

.zstack_hci_text-destructive {
	--tw-text-opacity: 1;
	color: hsl(var(--destructive) / var(--tw-text-opacity, 1))
}

.zstack_hci_text-foreground {
	color: hsl(var(--foreground))
}

.zstack_hci_text-muted-foreground {
	color: hsl(var(--muted-foreground))
}

.zstack_hci_text-popover-foreground {
	color: hsl(var(--popover-foreground))
}

.zstack_hci_text-primary {
	color: hsl(var(--primary))
}

.zstack_hci_text-primary-foreground {
	color: hsl(var(--primary-foreground))
}

.zstack_hci_text-secondary-foreground {
	color: hsl(var(--secondary-foreground))
}

.zstack_hci_text-sidebar-foreground {
	color: hsl(var(--sidebar-foreground))
}

.zstack_hci_text-sidebar-foreground\/70 {
	color: hsl(var(--sidebar-foreground) / .7)
}

.zstack_hci_text-white {
	--tw-text-opacity: 1;
	color: rgb(255 255 255 / var(--tw-text-opacity, 1))
}

.zstack_hci_underline-offset-4 {
	text-underline-offset: 4px
}

.zstack_hci_opacity-0 {
	opacity: 0
}

.zstack_hci_opacity-50 {
	opacity: .5
}

.zstack_hci_opacity-70 {
	opacity: .7
}

.zstack_hci_shadow {
	--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / .1), 0 1px 2px -1px rgb(0 0 0 / .1);
	--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.zstack_hci_shadow-\[0_0_0_1px_hsl\(var\(--sidebar-border\)\)\] {
	--tw-shadow: 0 0 0 1px hsl(var(--sidebar-border));
	--tw-shadow-colored: 0 0 0 1px var(--tw-shadow-color);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.zstack_hci_shadow-lg {
	--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
	--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.zstack_hci_shadow-md {
	--tw-shadow: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);
	--tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.zstack_hci_shadow-none {
	--tw-shadow: 0 0 #0000;
	--tw-shadow-colored: 0 0 #0000;
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.zstack_hci_shadow-sm {
	--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
	--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.zstack_hci_shadow-xl {
	--tw-shadow: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);
	--tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.zstack_hci_shadow-xs {
	--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
	--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.zstack_hci_outline-none {
	outline: 2px solid transparent;
	outline-offset: 2px
}

.zstack_hci_outline {
	outline-style: solid
}

.zstack_hci_ring-0 {
	--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
	--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
	box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)
}

.zstack_hci_ring-ring\/50 {
	--tw-ring-color: hsl(var(--ring) / .5)
}

.zstack_hci_ring-sidebar-ring {
	--tw-ring-color: hsl(var(--sidebar-ring))
}

.zstack_hci_ring-offset-background {
	--tw-ring-offset-color: hsl(var(--background))
}

.zstack_hci_blur {
	--tw-blur: blur(8px);
	filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
}

.zstack_hci_filter {
	filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
}

.zstack_hci_transition {
	transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
	transition-timing-function: cubic-bezier(.4, 0, .2, 1);
	transition-duration: .15s
}

.zstack_hci_transition-\[color\,box-shadow\] {
	transition-property: color, box-shadow;
	transition-timing-function: cubic-bezier(.4, 0, .2, 1);
	transition-duration: .15s
}

.zstack_hci_transition-\[left\,right\,width\] {
	transition-property: left, right, width;
	transition-timing-function: cubic-bezier(.4, 0, .2, 1);
	transition-duration: .15s
}

.zstack_hci_transition-\[margin\,opacity\] {
	transition-property: margin, opacity;
	transition-timing-function: cubic-bezier(.4, 0, .2, 1);
	transition-duration: .15s
}

.zstack_hci_transition-\[width\,height\,padding\] {
	transition-property: width, height, padding;
	transition-timing-function: cubic-bezier(.4, 0, .2, 1);
	transition-duration: .15s
}

.zstack_hci_transition-\[width\] {
	transition-property: width;
	transition-timing-function: cubic-bezier(.4, 0, .2, 1);
	transition-duration: .15s
}

.zstack_hci_transition-all {
	transition-property: all;
	transition-timing-function: cubic-bezier(.4, 0, .2, 1);
	transition-duration: .15s
}

.zstack_hci_transition-colors {
	transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
	transition-timing-function: cubic-bezier(.4, 0, .2, 1);
	transition-duration: .15s
}

.zstack_hci_transition-none {
	transition-property: none
}

.zstack_hci_transition-opacity {
	transition-property: opacity;
	transition-timing-function: cubic-bezier(.4, 0, .2, 1);
	transition-duration: .15s
}

.zstack_hci_transition-shadow {
	transition-property: box-shadow;
	transition-timing-function: cubic-bezier(.4, 0, .2, 1);
	transition-duration: .15s
}

.zstack_hci_transition-transform {
	transition-property: transform;
	transition-timing-function: cubic-bezier(.4, 0, .2, 1);
	transition-duration: .15s
}

.zstack_hci_duration-100 {
	transition-duration: .1s
}

.zstack_hci_duration-1000 {
	transition-duration: 1s
}

.zstack_hci_duration-200 {
	transition-duration: .2s
}

.zstack_hci_duration-300 {
	transition-duration: .3s
}

.zstack_hci_ease-in-out {
	transition-timing-function: cubic-bezier(.4, 0, .2, 1)
}

.zstack_hci_ease-linear {
	transition-timing-function: linear
}

@keyframes enter {
	0% {
		opacity: var(--tw-enter-opacity, 1);
		transform: translate3d(var(--tw-enter-translate-x, 0), var(--tw-enter-translate-y, 0), 0) scale3d(var(--tw-enter-scale, 1), var(--tw-enter-scale, 1), var(--tw-enter-scale, 1)) rotate(var(--tw-enter-rotate, 0))
	}
}

@keyframes exit {
	to {
		opacity: var(--tw-exit-opacity, 1);
		transform: translate3d(var(--tw-exit-translate-x, 0), var(--tw-exit-translate-y, 0), 0) scale3d(var(--tw-exit-scale, 1), var(--tw-exit-scale, 1), var(--tw-exit-scale, 1)) rotate(var(--tw-exit-rotate, 0))
	}
}

.zstack_hci_animate-in {
	animation-name: enter;
	animation-duration: .15s;
	--tw-enter-opacity: initial;
	--tw-enter-scale: initial;
	--tw-enter-rotate: initial;
	--tw-enter-translate-x: initial;
	--tw-enter-translate-y: initial
}

.zstack_hci_fade-in-0 {
	--tw-enter-opacity: 0
}

.zstack_hci_zoom-in-95 {
	--tw-enter-scale: .95
}

.zstack_hci_duration-100 {
	animation-duration: .1s
}

.zstack_hci_duration-1000 {
	animation-duration: 1s
}

.zstack_hci_duration-200 {
	animation-duration: .2s
}

.zstack_hci_duration-300 {
	animation-duration: .3s
}

.zstack_hci_ease-in-out {
	animation-timing-function: cubic-bezier(.4, 0, .2, 1)
}

.zstack_hci_ease-linear {
	animation-timing-function: linear
}

.zstack_hci_running {
	animation-play-state: running
}

.\[--cell-size\:--spacing\(8\)\] {
	--cell-size: var(--spacing(8))
}

::-webkit-scrollbar {
	width: 8px
}

::-webkit-scrollbar-track {
	background: var(--bg-alt)
}

::-webkit-scrollbar-thumb {
	background: var(--t3);
	border-radius: 4px
}

::-webkit-scrollbar-thumb:hover {
	background: var(--t2)
}

.zstack_hci_selection\:bg-primary *::-moz-selection {
	background-color: hsl(var(--primary))
}

.zstack_hci_selection\:bg-primary *::selection {
	background-color: hsl(var(--primary))
}

.zstack_hci_selection\:text-primary-foreground *::-moz-selection {
	color: hsl(var(--primary-foreground))
}

.zstack_hci_selection\:text-primary-foreground *::selection {
	color: hsl(var(--primary-foreground))
}

.zstack_hci_selection\:bg-primary::-moz-selection {
	background-color: hsl(var(--primary))
}

.zstack_hci_selection\:bg-primary::selection {
	background-color: hsl(var(--primary))
}

.zstack_hci_selection\:text-primary-foreground::-moz-selection {
	color: hsl(var(--primary-foreground))
}

.zstack_hci_selection\:text-primary-foreground::selection {
	color: hsl(var(--primary-foreground))
}

.zstack_hci_file\:inline-flex::file-selector-button {
	display: inline-flex
}

.zstack_hci_file\:h-7::file-selector-button {
	height: 1.75rem
}

.zstack_hci_file\:border-0::file-selector-button {
	border-width: 0px
}

.zstack_hci_file\:bg-transparent::file-selector-button {
	background-color: transparent
}

.zstack_hci_file\:text-sm::file-selector-button {
	font-size: .875rem;
	line-height: 1.25rem
}

.zstack_hci_file\:font-medium::file-selector-button {
	font-weight: 500
}

.zstack_hci_file\:text-foreground::file-selector-button {
	color: hsl(var(--foreground))
}

.zstack_hci_placeholder\:text-muted-foreground::-moz-placeholder {
	color: hsl(var(--muted-foreground))
}

.zstack_hci_placeholder\:text-muted-foreground::placeholder {
	color: hsl(var(--muted-foreground))
}

.zstack_hci_after\:absolute:after {
	content: var(--tw-content);
	position: absolute
}

.zstack_hci_after\:-inset-2:after {
	content: var(--tw-content);
	inset: -.5rem
}

.zstack_hci_after\:inset-y-0:after {
	content: var(--tw-content);
	top: 0;
	bottom: 0
}

.zstack_hci_after\:left-1\/2:after {
	content: var(--tw-content);
	left: 50%
}

.zstack_hci_after\:w-1:after {
	content: var(--tw-content);
	width: .25rem
}

.zstack_hci_after\:w-\[2px\]:after {
	content: var(--tw-content);
	width: 2px
}

.zstack_hci_after\:-translate-x-1\/2:after {
	content: var(--tw-content);
	--tw-translate-x: -50%;
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.zstack_hci_first\:rounded-l-md:first-child {
	border-top-left-radius: calc(var(--radius) - 2px);
	border-bottom-left-radius: calc(var(--radius) - 2px)
}

.zstack_hci_first\:border-l:first-child {
	border-left-width: 1px
}

.zstack_hci_last\:mt-0:last-child {
	margin-top: 0
}

.zstack_hci_last\:rounded-r-md:last-child {
	border-top-right-radius: calc(var(--radius) - 2px);
	border-bottom-right-radius: calc(var(--radius) - 2px)
}

.zstack_hci_last\:border-b-0:last-child {
	border-bottom-width: 0px
}

.zstack_hci_hover\:bg-accent:hover {
	background-color: hsl(var(--accent))
}

.zstack_hci_hover\:bg-destructive\/90:hover {
	background-color: hsl(var(--destructive) / .9)
}

.zstack_hci_hover\:bg-muted:hover {
	background-color: hsl(var(--muted))
}

.zstack_hci_hover\:bg-muted\/50:hover {
	background-color: hsl(var(--muted) / .5)
}

.zstack_hci_hover\:bg-primary\/90:hover {
	background-color: hsl(var(--primary) / .9)
}

.zstack_hci_hover\:bg-secondary\/80:hover {
	background-color: hsl(var(--secondary) / .8)
}

.zstack_hci_hover\:bg-sidebar-accent:hover {
	background-color: hsl(var(--sidebar-accent))
}

.zstack_hci_hover\:text-accent-foreground:hover {
	color: hsl(var(--accent-foreground))
}

.zstack_hci_hover\:text-foreground:hover {
	color: hsl(var(--foreground))
}

.zstack_hci_hover\:text-muted-foreground:hover {
	color: hsl(var(--muted-foreground))
}

.zstack_hci_hover\:text-sidebar-accent-foreground:hover {
	color: hsl(var(--sidebar-accent-foreground))
}

.zstack_hci_hover\:underline:hover {
	text-decoration-line: underline
}

.zstack_hci_hover\:opacity-100:hover {
	opacity: 1
}

.zstack_hci_hover\:shadow-\[0_0_0_1px_hsl\(var\(--sidebar-accent\)\)\]:hover {
	--tw-shadow: 0 0 0 1px hsl(var(--sidebar-accent));
	--tw-shadow-colored: 0 0 0 1px var(--tw-shadow-color);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.zstack_hci_hover\:ring-4:hover {
	--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
	--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
	box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)
}

.zstack_hci_hover\:after\:bg-sidebar-border:hover:after {
	content: var(--tw-content);
	background-color: hsl(var(--sidebar-border))
}

.zstack_hci_focus\:z-10:focus {
	z-index: 10
}

.zstack_hci_focus\:bg-accent:focus {
	background-color: hsl(var(--accent))
}

.zstack_hci_focus\:text-accent-foreground:focus {
	color: hsl(var(--accent-foreground))
}

.zstack_hci_focus\:ring-2:focus {
	--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
	--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
	box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)
}

.zstack_hci_focus\:ring-ring:focus {
	--tw-ring-color: hsl(var(--ring))
}

.zstack_hci_focus\:ring-offset-2:focus {
	--tw-ring-offset-width: 2px
}

.zstack_hci_focus-visible\:z-10:focus-visible {
	z-index: 10
}

.zstack_hci_focus-visible\:border-ring:focus-visible {
	border-color: hsl(var(--ring))
}

.zstack_hci_focus-visible\:outline-1:focus-visible {
	outline-width: 1px
}

.zstack_hci_focus-visible\:outline-ring:focus-visible {
	outline-color: hsl(var(--ring))
}

.zstack_hci_focus-visible\:ring-0:focus-visible {
	--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
	--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
	box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)
}

.zstack_hci_focus-visible\:ring-1:focus-visible {
	--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
	--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
	box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)
}

.zstack_hci_focus-visible\:ring-2:focus-visible {
	--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
	--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
	box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)
}

.zstack_hci_focus-visible\:ring-4:focus-visible {
	--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
	--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
	box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)
}

.zstack_hci_focus-visible\:ring-\[3px\]:focus-visible {
	--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
	--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
	box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)
}

.zstack_hci_focus-visible\:ring-destructive\/20:focus-visible {
	--tw-ring-color: hsl(var(--destructive) / .2)
}

.zstack_hci_focus-visible\:ring-ring:focus-visible {
	--tw-ring-color: hsl(var(--ring))
}

.zstack_hci_focus-visible\:ring-ring\/50:focus-visible {
	--tw-ring-color: hsl(var(--ring) / .5)
}

.zstack_hci_focus-visible\:ring-offset-1:focus-visible {
	--tw-ring-offset-width: 1px
}

.active\:bg-sidebar-accent:active {
	background-color: hsl(var(--sidebar-accent))
}

.active\:text-sidebar-accent-foreground:active {
	color: hsl(var(--sidebar-accent-foreground))
}

.zstack_hci_disabled\:pointer-events-none:disabled {
	pointer-events: none
}

.zstack_hci_disabled\:cursor-not-allowed:disabled {
	cursor: not-allowed
}

.zstack_hci_disabled\:opacity-50:disabled {
	opacity: .5
}

.zstack_hci_group\/menu-item:focus-within .zstack_hci_group-focus-within\/menu-item\:opacity-100 {
	opacity: 1
}

.zstack_hci_group\/menu-item:hover .zstack_hci_group-hover\/menu-item\:opacity-100 {
	opacity: 1
}

.zstack_hci_peer\/menu-button:hover~.zstack_hci_peer-hover\/menu-button\:text-sidebar-accent-foreground {
	color: hsl(var(--sidebar-accent-foreground))
}

.zstack_hci_peer:disabled~.zstack_hci_peer-disabled\:cursor-not-allowed {
	cursor: not-allowed
}

.zstack_hci_peer:disabled~.zstack_hci_peer-disabled\:opacity-50 {
	opacity: .5
}

.zstack_hci_has-\[\>button\]\:ml-\[-0\.45rem\]:has(>button) {
	margin-left: -.45rem
}

.zstack_hci_has-\[\>button\]\:mr-\[-0\.45rem\]:has(>button) {
	margin-right: -.45rem
}

.zstack_hci_has-\[\>kbd\]\:ml-\[-0\.35rem\]:has(>kbd) {
	margin-left: -.35rem
}

.zstack_hci_has-\[\>kbd\]\:mr-\[-0\.35rem\]:has(>kbd) {
	margin-right: -.35rem
}

.zstack_hci_has-\[\>\[data-align\=block-end\]\]\:h-auto:has(>[data-align=block-end]) {
	height: auto
}

.zstack_hci_has-\[\>\[data-align\=block-start\]\]\:h-auto:has(>[data-align=block-start]) {
	height: auto
}

.zstack_hci_has-\[\>textarea\]\:h-auto:has(>textarea) {
	height: auto
}

.zstack_hci_has-\[\>\[data-slot\=field\]\]\:w-full:has(>[data-slot=field]) {
	width: 100%
}

.zstack_hci_has-\[\>svg\]\:grid-cols-\[calc\(var\(--spacing\)\*4\)_1fr\]:has(>svg) {
	grid-template-columns: calc(var(--spacing) * 4) 1fr
}

.zstack_hci_has-\[\>\[data-align\=block-end\]\]\:flex-col:has(>[data-align=block-end]) {
	flex-direction: column
}

.zstack_hci_has-\[\>\[data-align\=block-start\]\]\:flex-col:has(>[data-align=block-start]) {
	flex-direction: column
}

.zstack_hci_has-\[\>\[data-slot\=field\]\]\:flex-col:has(>[data-slot=field]) {
	flex-direction: column
}

.zstack_hci_has-\[\>\[data-slot\=field-content\]\]\:items-start:has(>[data-slot=field-content]) {
	align-items: flex-start
}

.zstack_hci_has-\[\>\[data-slot\=button-group\]\]\:gap-2:has(>[data-slot=button-group]) {
	gap: .5rem
}

.zstack_hci_has-\[\>\[data-slot\=checkbox-group\]\]\:gap-3:has(>[data-slot=checkbox-group]) {
	gap: .75rem
}

.zstack_hci_has-\[\>\[data-slot\=radio-group\]\]\:gap-3:has(>[data-slot=radio-group]) {
	gap: .75rem
}

.zstack_hci_has-\[\>svg\]\:gap-x-3:has(>svg) {
	-moz-column-gap: .75rem;
	column-gap: .75rem
}

.zstack_hci_has-\[\>\[data-slot\=field\]\]\:rounded-md:has(>[data-slot=field]) {
	border-radius: calc(var(--radius) - 2px)
}

.zstack_hci_has-\[\>\[data-slot\=field\]\]\:border:has(>[data-slot=field]) {
	border-width: 1px
}

.zstack_hci_has-\[\[data-slot\=input-group-control\]\:focus-visible\]\:border-ring:has([data-slot=input-group-control]:focus-visible) {
	border-color: hsl(var(--ring))
}

.zstack_hci_has-\[\[data-slot\]\[aria-invalid\=true\]\]\:border-destructive:has([data-slot][aria-invalid=true]) {
	--tw-border-opacity: 1;
	border-color: hsl(var(--destructive) / var(--tw-border-opacity, 1))
}

.zstack_hci_has-\[\>svg\]\:p-0:has(>svg) {
	padding: 0
}

.zstack_hci_has-\[\>svg\]\:px-2:has(>svg) {
	padding-left: .5rem;
	padding-right: .5rem
}

.zstack_hci_has-\[\>svg\]\:px-2\.5:has(>svg) {
	padding-left: .625rem;
	padding-right: .625rem
}

.zstack_hci_has-\[\>svg\]\:px-3:has(>svg) {
	padding-left: .75rem;
	padding-right: .75rem
}

.zstack_hci_has-\[\>svg\]\:px-4:has(>svg) {
	padding-left: 1rem;
	padding-right: 1rem
}

.zstack_hci_has-\[\[data-slot\=input-group-control\]\:focus-visible\]\:ring-\[3px\]:has([data-slot=input-group-control]:focus-visible) {
	--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
	--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
	box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)
}

.zstack_hci_has-\[\[data-slot\=input-group-control\]\:focus-visible\]\:ring-ring\/50:has([data-slot=input-group-control]:focus-visible) {
	--tw-ring-color: hsl(var(--ring) / .5)
}

.zstack_hci_has-\[\[data-slot\]\[aria-invalid\=true\]\]\:ring-destructive\/20:has([data-slot][aria-invalid=true]) {
	--tw-ring-color: hsl(var(--destructive) / .2)
}

.zstack_hci_group\/item:has([data-slot=item-description]) .zstack_hci_group-has-\[\[data-slot\=item-description\]\]\/item\:translate-y-0\.5 {
	--tw-translate-y: .125rem;
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.zstack_hci_group\/item:has([data-slot=item-description]) .zstack_hci_group-has-\[\[data-slot\=item-description\]\]\/item\:self-start {
	align-self: flex-start
}

.zstack_hci_group\/field:has([data-orientation=horizontal]) .zstack_hci_group-has-\[\[data-orientation\=horizontal\]\]\/field\:text-balance {
	text-wrap: balance
}

.zstack_hci_group\/input-group:has(>input) .zstack_hci_group-has-\[\>input\]\/input-group\:pb-2\.5 {
	padding-bottom: .625rem
}

.zstack_hci_group\/input-group:has(>input) .zstack_hci_group-has-\[\>input\]\/input-group\:pt-2\.5 {
	padding-top: .625rem
}

.zstack_hci_aria-disabled\:pointer-events-none[aria-disabled=true] {
	pointer-events: none
}

.zstack_hci_aria-disabled\:opacity-50[aria-disabled=true] {
	opacity: .5
}

.zstack_hci_aria-selected\:text-muted-foreground[aria-selected=true] {
	color: hsl(var(--muted-foreground))
}

.zstack_hci_data-\[disabled\=true\]\:pointer-events-none[data-disabled=true],
.zstack_hci_data-\[disabled\]\:pointer-events-none[data-disabled] {
	pointer-events: none
}

.zstack_hci_data-\[vaul-drawer-direction\=bottom\]\:inset-x-0[data-vaul-drawer-direction=bottom] {
	left: 0;
	right: 0
}

.zstack_hci_data-\[vaul-drawer-direction\=left\]\:inset-y-0[data-vaul-drawer-direction=left],
.zstack_hci_data-\[vaul-drawer-direction\=right\]\:inset-y-0[data-vaul-drawer-direction=right] {
	top: 0;
	bottom: 0
}

.zstack_hci_data-\[vaul-drawer-direction\=top\]\:inset-x-0[data-vaul-drawer-direction=top] {
	left: 0;
	right: 0
}

.zstack_hci_data-\[vaul-drawer-direction\=bottom\]\:bottom-0[data-vaul-drawer-direction=bottom] {
	bottom: 0
}

.zstack_hci_data-\[vaul-drawer-direction\=left\]\:left-0[data-vaul-drawer-direction=left] {
	left: 0
}

.zstack_hci_data-\[vaul-drawer-direction\=right\]\:right-0[data-vaul-drawer-direction=right] {
	right: 0
}

.zstack_hci_data-\[vaul-drawer-direction\=top\]\:top-0[data-vaul-drawer-direction=top] {
	top: 0
}

.zstack_hci_data-\[active\=true\]\:z-10[data-active=true] {
	z-index: 10
}

.zstack_hci_data-\[vaul-drawer-direction\=bottom\]\:mt-24[data-vaul-drawer-direction=bottom] {
	margin-top: 6rem
}

.zstack_hci_data-\[vaul-drawer-direction\=top\]\:mb-24[data-vaul-drawer-direction=top] {
	margin-bottom: 6rem
}

.zstack_hci_data-\[orientation\=horizontal\]\:h-1\.5[data-orientation=horizontal] {
	height: .375rem
}

.zstack_hci_data-\[orientation\=horizontal\]\:h-full[data-orientation=horizontal] {
	height: 100%
}

.zstack_hci_data-\[orientation\=horizontal\]\:h-px[data-orientation=horizontal] {
	height: 1px
}

.zstack_hci_data-\[orientation\=vertical\]\:h-auto[data-orientation=vertical] {
	height: auto
}

.zstack_hci_data-\[orientation\=vertical\]\:h-full[data-orientation=vertical] {
	height: 100%
}

.zstack_hci_data-\[panel-group-direction\=vertical\]\:h-px[data-panel-group-direction=vertical] {
	height: 1px
}

.zstack_hci_data-\[size\=default\]\:h-9[data-size=default] {
	height: 2.25rem
}

.zstack_hci_data-\[size\=sm\]\:h-8[data-size=sm] {
	height: 2rem
}

.zstack_hci_data-\[vaul-drawer-direction\=bottom\]\:max-h-\[80vh\][data-vaul-drawer-direction=bottom],
.zstack_hci_data-\[vaul-drawer-direction\=top\]\:max-h-\[80vh\][data-vaul-drawer-direction=top] {
	max-height: 80vh
}

.zstack_hci_data-\[orientation\=vertical\]\:min-h-44[data-orientation=vertical] {
	min-height: 11rem
}

.zstack_hci_data-\[orientation\=horizontal\]\:w-full[data-orientation=horizontal] {
	width: 100%
}

.zstack_hci_data-\[orientation\=vertical\]\:w-1\.5[data-orientation=vertical] {
	width: .375rem
}

.zstack_hci_data-\[orientation\=vertical\]\:w-auto[data-orientation=vertical] {
	width: auto
}

.zstack_hci_data-\[orientation\=vertical\]\:w-full[data-orientation=vertical] {
	width: 100%
}

.zstack_hci_data-\[orientation\=vertical\]\:w-px[data-orientation=vertical] {
	width: 1px
}

.zstack_hci_data-\[panel-group-direction\=vertical\]\:w-full[data-panel-group-direction=vertical] {
	width: 100%
}

.zstack_hci_data-\[vaul-drawer-direction\=left\]\:w-3\/4[data-vaul-drawer-direction=left],
.zstack_hci_data-\[vaul-drawer-direction\=right\]\:w-3\/4[data-vaul-drawer-direction=right] {
	width: 75%
}

.zstack_hci_data-\[side\=bottom\]\:translate-y-1[data-side=bottom] {
	--tw-translate-y: .25rem;
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.zstack_hci_data-\[side\=left\]\:-translate-x-1[data-side=left] {
	--tw-translate-x: -.25rem;
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.zstack_hci_data-\[side\=right\]\:translate-x-1[data-side=right] {
	--tw-translate-x: .25rem;
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.zstack_hci_data-\[side\=top\]\:-translate-y-1[data-side=top] {
	--tw-translate-y: -.25rem;
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.zstack_hci_data-\[state\=checked\]\:translate-x-\[calc\(100\%-2px\)\][data-state=checked] {
	--tw-translate-x: calc(100% - 2px);
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.zstack_hci_data-\[state\=unchecked\]\:translate-x-0[data-state=unchecked] {
	--tw-translate-x: 0px;
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

@keyframes accordion-up {
	0% {
		height: var(--radix-accordion-content-height)
	}

	to {
		height: 0
	}
}

.zstack_hci_data-\[state\=closed\]\:animate-accordion-up[data-state=closed] {
	animation: accordion-up .2s ease-out
}

@keyframes accordion-down {
	0% {
		height: 0
	}

	to {
		height: var(--radix-accordion-content-height)
	}
}

.zstack_hci_data-\[state\=open\]\:animate-accordion-down[data-state=open] {
	animation: accordion-down .2s ease-out
}

.zstack_hci_data-\[orientation\=vertical\]\:flex-col[data-orientation=vertical],
.zstack_hci_data-\[panel-group-direction\=vertical\]\:flex-col[data-panel-group-direction=vertical] {
	flex-direction: column
}

.zstack_hci_data-\[slot\=checkbox-group\]\:gap-3[data-slot=checkbox-group] {
	gap: .75rem
}

.zstack_hci_data-\[range-end\=true\]\:rounded-md[data-range-end=true] {
	border-radius: calc(var(--radius) - 2px)
}

.zstack_hci_data-\[range-middle\=true\]\:rounded-none[data-range-middle=true] {
	border-radius: 0
}

.zstack_hci_data-\[range-start\=true\]\:rounded-md[data-range-start=true] {
	border-radius: calc(var(--radius) - 2px)
}

.zstack_hci_data-\[selected\=true\]\:rounded-none[data-selected=true],
.zstack_hci_data-\[spacing\=0\]\:rounded-none[data-spacing="0"] {
	border-radius: 0
}

.zstack_hci_data-\[range-end\=true\]\:rounded-r-md[data-range-end=true] {
	border-top-right-radius: calc(var(--radius) - 2px);
	border-bottom-right-radius: calc(var(--radius) - 2px)
}

.zstack_hci_data-\[range-start\=true\]\:rounded-l-md[data-range-start=true] {
	border-top-left-radius: calc(var(--radius) - 2px);
	border-bottom-left-radius: calc(var(--radius) - 2px)
}

.zstack_hci_data-\[vaul-drawer-direction\=bottom\]\:rounded-t-lg[data-vaul-drawer-direction=bottom] {
	border-top-left-radius: var(--radius);
	border-top-right-radius: var(--radius)
}

.zstack_hci_data-\[vaul-drawer-direction\=top\]\:rounded-b-lg[data-vaul-drawer-direction=top] {
	border-bottom-right-radius: var(--radius);
	border-bottom-left-radius: var(--radius)
}

.zstack_hci_data-\[spacing\=0\]\:data-\[variant\=outline\]\:border-l-0[data-variant=outline][data-spacing="0"] {
	border-left-width: 0px
}

.zstack_hci_data-\[vaul-drawer-direction\=bottom\]\:border-t[data-vaul-drawer-direction=bottom] {
	border-top-width: 1px
}

.zstack_hci_data-\[vaul-drawer-direction\=left\]\:border-r[data-vaul-drawer-direction=left] {
	border-right-width: 1px
}

.zstack_hci_data-\[vaul-drawer-direction\=right\]\:border-l[data-vaul-drawer-direction=right] {
	border-left-width: 1px
}

.zstack_hci_data-\[vaul-drawer-direction\=top\]\:border-b[data-vaul-drawer-direction=top] {
	border-bottom-width: 1px
}

.zstack_hci_data-\[active\=true\]\:border-ring[data-active=true] {
	border-color: hsl(var(--ring))
}

.zstack_hci_data-\[state\=checked\]\:border-primary[data-state=checked] {
	border-color: hsl(var(--primary))
}

.zstack_hci_data-\[active\=true\]\:bg-accent\/50[data-active=true] {
	background-color: hsl(var(--accent) / .5)
}

.zstack_hci_data-\[active\=true\]\:bg-sidebar-accent[data-active=true] {
	background-color: hsl(var(--sidebar-accent))
}

.zstack_hci_data-\[range-end\=true\]\:bg-primary[data-range-end=true] {
	background-color: hsl(var(--primary))
}

.zstack_hci_data-\[range-middle\=true\]\:bg-accent[data-range-middle=true] {
	background-color: hsl(var(--accent))
}

.zstack_hci_data-\[range-start\=true\]\:bg-primary[data-range-start=true],
.zstack_hci_data-\[selected-single\=true\]\:bg-primary[data-selected-single=true] {
	background-color: hsl(var(--primary))
}

.zstack_hci_data-\[selected\=true\]\:bg-accent[data-selected=true] {
	background-color: hsl(var(--accent))
}

.zstack_hci_data-\[state\=active\]\:bg-background[data-state=active] {
	background-color: hsl(var(--background))
}

.zstack_hci_data-\[state\=checked\]\:bg-primary[data-state=checked] {
	background-color: hsl(var(--primary))
}

.zstack_hci_data-\[state\=on\]\:bg-accent[data-state=on],
.zstack_hci_data-\[state\=open\]\:bg-accent[data-state=open] {
	background-color: hsl(var(--accent))
}

.zstack_hci_data-\[state\=open\]\:bg-accent\/50[data-state=open] {
	background-color: hsl(var(--accent) / .5)
}

.zstack_hci_data-\[state\=open\]\:bg-secondary[data-state=open] {
	background-color: hsl(var(--secondary))
}

.zstack_hci_data-\[state\=selected\]\:bg-muted[data-state=selected] {
	background-color: hsl(var(--muted))
}

.zstack_hci_data-\[state\=unchecked\]\:bg-input[data-state=unchecked] {
	background-color: hsl(var(--input))
}

.zstack_hci_data-\[inset\]\:pl-8[data-inset] {
	padding-left: 2rem
}

.zstack_hci_data-\[variant\=label\]\:text-sm[data-variant=label] {
	font-size: .875rem;
	line-height: 1.25rem
}

.zstack_hci_data-\[variant\=legend\]\:text-base[data-variant=legend] {
	font-size: 1rem;
	line-height: 1.5rem
}

.zstack_hci_data-\[active\=true\]\:font-medium[data-active=true] {
	font-weight: 500
}

.zstack_hci_data-\[active\=true\]\:text-accent-foreground[data-active=true] {
	color: hsl(var(--accent-foreground))
}

.zstack_hci_data-\[active\=true\]\:text-sidebar-accent-foreground[data-active=true] {
	color: hsl(var(--sidebar-accent-foreground))
}

.zstack_hci_data-\[error\=true\]\:text-destructive[data-error=true],
.zstack_hci_data-\[invalid\=true\]\:text-destructive[data-invalid=true] {
	--tw-text-opacity: 1;
	color: hsl(var(--destructive) / var(--tw-text-opacity, 1))
}

.zstack_hci_data-\[placeholder\]\:text-muted-foreground[data-placeholder] {
	color: hsl(var(--muted-foreground))
}

.zstack_hci_data-\[range-end\=true\]\:text-primary-foreground[data-range-end=true] {
	color: hsl(var(--primary-foreground))
}

.zstack_hci_data-\[range-middle\=true\]\:text-accent-foreground[data-range-middle=true] {
	color: hsl(var(--accent-foreground))
}

.zstack_hci_data-\[range-start\=true\]\:text-primary-foreground[data-range-start=true],
.zstack_hci_data-\[selected-single\=true\]\:text-primary-foreground[data-selected-single=true] {
	color: hsl(var(--primary-foreground))
}

.zstack_hci_data-\[selected\=true\]\:text-accent-foreground[data-selected=true] {
	color: hsl(var(--accent-foreground))
}

.zstack_hci_data-\[state\=checked\]\:text-primary-foreground[data-state=checked] {
	color: hsl(var(--primary-foreground))
}

.zstack_hci_data-\[state\=on\]\:text-accent-foreground[data-state=on],
.zstack_hci_data-\[state\=open\]\:text-accent-foreground[data-state=open] {
	color: hsl(var(--accent-foreground))
}

.zstack_hci_data-\[state\=open\]\:text-muted-foreground[data-state=open] {
	color: hsl(var(--muted-foreground))
}

.zstack_hci_data-\[variant\=destructive\]\:text-destructive[data-variant=destructive] {
	--tw-text-opacity: 1;
	color: hsl(var(--destructive) / var(--tw-text-opacity, 1))
}

.zstack_hci_data-\[disabled\=true\]\:opacity-50[data-disabled=true],
.zstack_hci_data-\[disabled\]\:opacity-50[data-disabled] {
	opacity: .5
}

.zstack_hci_data-\[state\=open\]\:opacity-100[data-state=open] {
	opacity: 1
}

.zstack_hci_data-\[spacing\=0\]\:shadow-none[data-spacing="0"] {
	--tw-shadow: 0 0 #0000;
	--tw-shadow-colored: 0 0 #0000;
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.zstack_hci_data-\[spacing\=default\]\:data-\[variant\=outline\]\:shadow-xs[data-variant=outline][data-spacing=default],
.zstack_hci_data-\[state\=active\]\:shadow-sm[data-state=active] {
	--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
	--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.zstack_hci_data-\[active\=true\]\:ring-\[3px\][data-active=true] {
	--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
	--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
	box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)
}

.zstack_hci_data-\[active\=true\]\:ring-ring\/50[data-active=true] {
	--tw-ring-color: hsl(var(--ring) / .5)
}

.zstack_hci_data-\[state\=closed\]\:duration-300[data-state=closed] {
	transition-duration: .3s
}

.zstack_hci_data-\[state\=open\]\:duration-500[data-state=open] {
	transition-duration: .5s
}

.zstack_hci_data-\[motion\^\=from-\]\:animate-in[data-motion^=from-],
.zstack_hci_data-\[state\=open\]\:animate-in[data-state=open],
.zstack_hci_data-\[state\=visible\]\:animate-in[data-state=visible] {
	animation-name: enter;
	animation-duration: .15s;
	--tw-enter-opacity: initial;
	--tw-enter-scale: initial;
	--tw-enter-rotate: initial;
	--tw-enter-translate-x: initial;
	--tw-enter-translate-y: initial
}

.zstack_hci_data-\[motion\^\=to-\]\:animate-out[data-motion^=to-],
.zstack_hci_data-\[state\=closed\]\:animate-out[data-state=closed],
.zstack_hci_data-\[state\=hidden\]\:animate-out[data-state=hidden] {
	animation-name: exit;
	animation-duration: .15s;
	--tw-exit-opacity: initial;
	--tw-exit-scale: initial;
	--tw-exit-rotate: initial;
	--tw-exit-translate-x: initial;
	--tw-exit-translate-y: initial
}

.zstack_hci_data-\[motion\^\=from-\]\:fade-in[data-motion^=from-] {
	--tw-enter-opacity: 0
}

.zstack_hci_data-\[motion\^\=to-\]\:fade-out[data-motion^=to-],
.zstack_hci_data-\[state\=closed\]\:fade-out-0[data-state=closed],
.zstack_hci_data-\[state\=hidden\]\:fade-out[data-state=hidden] {
	--tw-exit-opacity: 0
}

.zstack_hci_data-\[state\=open\]\:fade-in-0[data-state=open],
.zstack_hci_data-\[state\=visible\]\:fade-in[data-state=visible] {
	--tw-enter-opacity: 0
}

.zstack_hci_data-\[state\=closed\]\:zoom-out-95[data-state=closed] {
	--tw-exit-scale: .95
}

.zstack_hci_data-\[state\=open\]\:zoom-in-90[data-state=open] {
	--tw-enter-scale: .9
}

.zstack_hci_data-\[state\=open\]\:zoom-in-95[data-state=open] {
	--tw-enter-scale: .95
}

.zstack_hci_data-\[motion\=from-end\]\:slide-in-from-right-52[data-motion=from-end] {
	--tw-enter-translate-x: 13rem
}

.zstack_hci_data-\[motion\=from-start\]\:slide-in-from-left-52[data-motion=from-start] {
	--tw-enter-translate-x: -13rem
}

.zstack_hci_data-\[motion\=to-end\]\:slide-out-to-right-52[data-motion=to-end] {
	--tw-exit-translate-x: 13rem
}

.zstack_hci_data-\[motion\=to-start\]\:slide-out-to-left-52[data-motion=to-start] {
	--tw-exit-translate-x: -13rem
}

.zstack_hci_data-\[side\=bottom\]\:slide-in-from-top-2[data-side=bottom] {
	--tw-enter-translate-y: -.5rem
}

.zstack_hci_data-\[side\=left\]\:slide-in-from-right-2[data-side=left] {
	--tw-enter-translate-x: .5rem
}

.zstack_hci_data-\[side\=right\]\:slide-in-from-left-2[data-side=right] {
	--tw-enter-translate-x: -.5rem
}

.zstack_hci_data-\[side\=top\]\:slide-in-from-bottom-2[data-side=top] {
	--tw-enter-translate-y: .5rem
}

.zstack_hci_data-\[state\=closed\]\:slide-out-to-bottom[data-state=closed] {
	--tw-exit-translate-y: 100%
}

.zstack_hci_data-\[state\=closed\]\:slide-out-to-left[data-state=closed] {
	--tw-exit-translate-x: -100%
}

.zstack_hci_data-\[state\=closed\]\:slide-out-to-right[data-state=closed] {
	--tw-exit-translate-x: 100%
}

.zstack_hci_data-\[state\=closed\]\:slide-out-to-top[data-state=closed] {
	--tw-exit-translate-y: -100%
}

.zstack_hci_data-\[state\=open\]\:slide-in-from-bottom[data-state=open] {
	--tw-enter-translate-y: 100%
}

.zstack_hci_data-\[state\=open\]\:slide-in-from-left[data-state=open] {
	--tw-enter-translate-x: -100%
}

.zstack_hci_data-\[state\=open\]\:slide-in-from-right[data-state=open] {
	--tw-enter-translate-x: 100%
}

.zstack_hci_data-\[state\=open\]\:slide-in-from-top[data-state=open] {
	--tw-enter-translate-y: -100%
}

.zstack_hci_data-\[state\=closed\]\:duration-300[data-state=closed] {
	animation-duration: .3s
}

.zstack_hci_data-\[state\=open\]\:duration-500[data-state=open] {
	animation-duration: .5s
}

.\*\:data-\[slot\=select-value\]\:line-clamp-1[data-slot=select-value]>* {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1
}

.\*\:data-\[slot\=select-value\]\:flex[data-slot=select-value]>* {
	display: flex
}

.\*\:data-\[slot\=select-value\]\:items-center[data-slot=select-value]>* {
	align-items: center
}

.\*\:data-\[slot\=select-value\]\:gap-2[data-slot=select-value]>* {
	gap: .5rem
}

.\*\:data-\[slot\=alert-description\]\:text-destructive\/90[data-slot=alert-description]>* {
	color: hsl(var(--destructive) / .9)
}

.zstack_hci_data-\[panel-group-direction\=vertical\]\:after\:left-0[data-panel-group-direction=vertical]:after {
	content: var(--tw-content);
	left: 0
}

.zstack_hci_data-\[panel-group-direction\=vertical\]\:after\:h-1[data-panel-group-direction=vertical]:after {
	content: var(--tw-content);
	height: .25rem
}

.zstack_hci_data-\[panel-group-direction\=vertical\]\:after\:w-full[data-panel-group-direction=vertical]:after {
	content: var(--tw-content);
	width: 100%
}

.zstack_hci_data-\[panel-group-direction\=vertical\]\:after\:-translate-y-1\/2[data-panel-group-direction=vertical]:after {
	content: var(--tw-content);
	--tw-translate-y: -50%;
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.zstack_hci_data-\[panel-group-direction\=vertical\]\:after\:translate-x-0[data-panel-group-direction=vertical]:after {
	content: var(--tw-content);
	--tw-translate-x: 0px;
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.zstack_hci_data-\[spacing\=0\]\:first\:rounded-l-md:first-child[data-spacing="0"] {
	border-top-left-radius: calc(var(--radius) - 2px);
	border-bottom-left-radius: calc(var(--radius) - 2px)
}

.zstack_hci_data-\[spacing\=0\]\:data-\[variant\=outline\]\:first\:border-l:first-child[data-variant=outline][data-spacing="0"] {
	border-left-width: 1px
}

.zstack_hci_data-\[spacing\=0\]\:last\:rounded-r-md:last-child[data-spacing="0"] {
	border-top-right-radius: calc(var(--radius) - 2px);
	border-bottom-right-radius: calc(var(--radius) - 2px)
}

.zstack_hci_data-\[active\=true\]\:hover\:bg-accent:hover[data-active=true],
.zstack_hci_data-\[state\=open\]\:hover\:bg-accent:hover[data-state=open] {
	background-color: hsl(var(--accent))
}

.zstack_hci_data-\[state\=open\]\:hover\:bg-sidebar-accent:hover[data-state=open] {
	background-color: hsl(var(--sidebar-accent))
}

.zstack_hci_data-\[state\=open\]\:hover\:text-sidebar-accent-foreground:hover[data-state=open] {
	color: hsl(var(--sidebar-accent-foreground))
}

.zstack_hci_data-\[active\=true\]\:focus\:bg-accent:focus[data-active=true] {
	background-color: hsl(var(--accent))
}

.zstack_hci_data-\[state\=open\]\:focus\:bg-accent:focus[data-state=open] {
	background-color: hsl(var(--accent))
}

.zstack_hci_data-\[variant\=destructive\]\:focus\:bg-destructive\/10:focus[data-variant=destructive] {
	background-color: hsl(var(--destructive) / .1)
}

.zstack_hci_data-\[variant\=destructive\]\:focus\:text-destructive:focus[data-variant=destructive] {
	--tw-text-opacity: 1;
	color: hsl(var(--destructive) / var(--tw-text-opacity, 1))
}

.zstack_hci_group[data-disabled=true] .zstack_hci_group-data-\[disabled\=true\]\:pointer-events-none {
	pointer-events: none
}

.zstack_hci_group\/day[data-focused=true] .zstack_hci_group-data-\[focused\=true\]\/day\:relative {
	position: relative
}

.zstack_hci_group[data-collapsible=offcanvas] .zstack_hci_group-data-\[collapsible\=offcanvas\]\:left-\[calc\(var\(--sidebar-width\)\*-1\)\] {
	left: calc(var(--sidebar-width) * -1)
}

.zstack_hci_group[data-collapsible=offcanvas] .zstack_hci_group-data-\[collapsible\=offcanvas\]\:right-\[calc\(var\(--sidebar-width\)\*-1\)\] {
	right: calc(var(--sidebar-width) * -1)
}

.zstack_hci_group[data-side=left] .zstack_hci_group-data-\[side\=left\]\:-right-4 {
	right: -1rem
}

.zstack_hci_group[data-side=right] .zstack_hci_group-data-\[side\=right\]\:left-0 {
	left: 0
}

.zstack_hci_group\/navigation-menu[data-viewport=false] .zstack_hci_group-data-\[viewport\=false\]\/navigation-menu\:top-full {
	top: 100%
}

.zstack_hci_group\/day[data-focused=true] .zstack_hci_group-data-\[focused\=true\]\/day\:z-10 {
	z-index: 10
}

.zstack_hci_group[data-collapsible=icon] .zstack_hci_group-data-\[collapsible\=icon\]\:-mt-8 {
	margin-top: -2rem
}

.zstack_hci_group\/field-group[data-variant=outline] .zstack_hci_group-data-\[variant\=outline\]\/field-group\:-mb-2 {
	margin-bottom: -.5rem
}

.zstack_hci_group\/navigation-menu[data-viewport=false] .zstack_hci_group-data-\[viewport\=false\]\/navigation-menu\:mt-1\.5 {
	margin-top: .375rem
}

.zstack_hci_group\/drawer-content[data-vaul-drawer-direction=bottom] .zstack_hci_group-data-\[vaul-drawer-direction\=bottom\]\/drawer-content\:block {
	display: block
}

.zstack_hci_group[data-collapsible=icon] .zstack_hci_group-data-\[collapsible\=icon\]\:hidden {
	display: none
}

.zstack_hci_group[data-collapsible=icon] .zstack_hci_group-data-\[collapsible\=icon\]\:w-\[calc\(var\(--sidebar-width-icon\)\+\(--spacing\(4\)\)\)\] {
	width: calc(var(--sidebar-width-icon) + (--spacing(4)))
}

.zstack_hci_group[data-collapsible=icon] .zstack_hci_group-data-\[collapsible\=icon\]\:w-\[calc\(var\(--sidebar-width-icon\)\+\(--spacing\(4\)\)\+2px\)\] {
	width: calc(var(--sidebar-width-icon) + (--spacing(4)) + 2px)
}

.zstack_hci_group[data-collapsible=offcanvas] .zstack_hci_group-data-\[collapsible\=offcanvas\]\:w-0 {
	width: 0px
}

.zstack_hci_group[data-collapsible=offcanvas] .zstack_hci_group-data-\[collapsible\=offcanvas\]\:translate-x-0 {
	--tw-translate-x: 0px;
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.zstack_hci_group[data-side=right] .zstack_hci_group-data-\[side\=right\]\:rotate-180,
.zstack_hci_group[data-state=open] .zstack_hci_group-data-\[state\=open\]\:rotate-180 {
	--tw-rotate: 180deg;
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.zstack_hci_group[data-collapsible=icon] .zstack_hci_group-data-\[collapsible\=icon\]\:overflow-hidden,
.zstack_hci_group\/navigation-menu[data-viewport=false] .zstack_hci_group-data-\[viewport\=false\]\/navigation-menu\:overflow-hidden {
	overflow: hidden
}

.zstack_hci_group[data-variant=floating] .zstack_hci_group-data-\[variant\=floating\]\:rounded-lg {
	border-radius: var(--radius)
}

.zstack_hci_group\/navigation-menu[data-viewport=false] .zstack_hci_group-data-\[viewport\=false\]\/navigation-menu\:rounded-md {
	border-radius: calc(var(--radius) - 2px)
}

.zstack_hci_group[data-variant=floating] .zstack_hci_group-data-\[variant\=floating\]\:border,
.zstack_hci_group\/navigation-menu[data-viewport=false] .zstack_hci_group-data-\[viewport\=false\]\/navigation-menu\:border {
	border-width: 1px
}

.zstack_hci_group[data-side=left] .zstack_hci_group-data-\[side\=left\]\:border-r {
	border-right-width: 1px
}

.zstack_hci_group[data-side=right] .zstack_hci_group-data-\[side\=right\]\:border-l {
	border-left-width: 1px
}

.zstack_hci_group\/day[data-focused=true] .zstack_hci_group-data-\[focused\=true\]\/day\:border-ring {
	border-color: hsl(var(--ring))
}

.zstack_hci_group[data-variant=floating] .zstack_hci_group-data-\[variant\=floating\]\:border-sidebar-border {
	border-color: hsl(var(--sidebar-border))
}

.zstack_hci_group\/navigation-menu[data-viewport=false] .zstack_hci_group-data-\[viewport\=false\]\/navigation-menu\:bg-popover {
	background-color: hsl(var(--popover))
}

.zstack_hci_group\/drawer-content[data-vaul-drawer-direction=bottom] .zstack_hci_group-data-\[vaul-drawer-direction\=bottom\]\/drawer-content\:text-center,
.zstack_hci_group\/drawer-content[data-vaul-drawer-direction=top] .zstack_hci_group-data-\[vaul-drawer-direction\=top\]\/drawer-content\:text-center {
	text-align: center
}

.zstack_hci_group\/navigation-menu[data-viewport=false] .zstack_hci_group-data-\[viewport\=false\]\/navigation-menu\:text-popover-foreground {
	color: hsl(var(--popover-foreground))
}

.zstack_hci_group[data-collapsible=icon] .zstack_hci_group-data-\[collapsible\=icon\]\:opacity-0 {
	opacity: 0
}

.zstack_hci_group\/field[data-disabled=true] .zstack_hci_group-data-\[disabled\=true\]\/field\:opacity-50,
.zstack_hci_group\/input-group[data-disabled=true] .zstack_hci_group-data-\[disabled\=true\]\/input-group\:opacity-50,
.zstack_hci_group[data-disabled=true] .zstack_hci_group-data-\[disabled\=true\]\:opacity-50 {
	opacity: .5
}

.zstack_hci_group[data-variant=floating] .zstack_hci_group-data-\[variant\=floating\]\:shadow-sm {
	--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
	--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.zstack_hci_group\/navigation-menu[data-viewport=false] .zstack_hci_group-data-\[viewport\=false\]\/navigation-menu\:shadow {
	--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / .1), 0 1px 2px -1px rgb(0 0 0 / .1);
	--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
	box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
}

.zstack_hci_group\/day[data-focused=true] .zstack_hci_group-data-\[focused\=true\]\/day\:ring-\[3px\] {
	--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
	--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
	box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)
}

.zstack_hci_group\/day[data-focused=true] .zstack_hci_group-data-\[focused\=true\]\/day\:ring-ring\/50 {
	--tw-ring-color: hsl(var(--ring) / .5)
}

.zstack_hci_group\/navigation-menu[data-viewport=false] .zstack_hci_group-data-\[viewport\=false\]\/navigation-menu\:duration-200 {
	transition-duration: .2s;
	animation-duration: .2s
}

.zstack_hci_group[data-collapsible=offcanvas] .zstack_hci_group-data-\[collapsible\=offcanvas\]\:after\:left-full:after {
	content: var(--tw-content);
	left: 100%
}

.zstack_hci_group[data-collapsible=offcanvas] .zstack_hci_hover\:group-data-\[collapsible\=offcanvas\]\:bg-sidebar:hover {
	background-color: hsl(var(--sidebar-background))
}

.zstack_hci_group\/navigation-menu[data-viewport=false] .zstack_hci_group-data-\[viewport\=false\]\/navigation-menu\:data-\[state\=open\]\:animate-in[data-state=open] {
	animation-name: enter;
	animation-duration: .15s;
	--tw-enter-opacity: initial;
	--tw-enter-scale: initial;
	--tw-enter-rotate: initial;
	--tw-enter-translate-x: initial;
	--tw-enter-translate-y: initial
}

.zstack_hci_group\/navigation-menu[data-viewport=false] .zstack_hci_group-data-\[viewport\=false\]\/navigation-menu\:data-\[state\=closed\]\:animate-out[data-state=closed] {
	animation-name: exit;
	animation-duration: .15s;
	--tw-exit-opacity: initial;
	--tw-exit-scale: initial;
	--tw-exit-rotate: initial;
	--tw-exit-translate-x: initial;
	--tw-exit-translate-y: initial
}

.zstack_hci_group\/navigation-menu[data-viewport=false] .zstack_hci_group-data-\[viewport\=false\]\/navigation-menu\:data-\[state\=closed\]\:fade-out-0[data-state=closed] {
	--tw-exit-opacity: 0
}

.zstack_hci_group\/navigation-menu[data-viewport=false] .zstack_hci_group-data-\[viewport\=false\]\/navigation-menu\:data-\[state\=open\]\:fade-in-0[data-state=open] {
	--tw-enter-opacity: 0
}

.zstack_hci_group\/navigation-menu[data-viewport=false] .zstack_hci_group-data-\[viewport\=false\]\/navigation-menu\:data-\[state\=closed\]\:zoom-out-95[data-state=closed] {
	--tw-exit-scale: .95
}

.zstack_hci_group\/navigation-menu[data-viewport=false] .zstack_hci_group-data-\[viewport\=false\]\/navigation-menu\:data-\[state\=open\]\:zoom-in-95[data-state=open] {
	--tw-enter-scale: .95
}

.zstack_hci_peer\/menu-button[data-size=default]~.zstack_hci_peer-data-\[size\=default\]\/menu-button\:top-1\.5 {
	top: .375rem
}

.zstack_hci_peer\/menu-button[data-size=lg]~.zstack_hci_peer-data-\[size\=lg\]\/menu-button\:top-2\.5 {
	top: .625rem
}

.zstack_hci_peer\/menu-button[data-size=sm]~.zstack_hci_peer-data-\[size\=sm\]\/menu-button\:top-1 {
	top: .25rem
}

.zstack_hci_peer\/menu-button[data-active=true]~.zstack_hci_peer-data-\[active\=true\]\/menu-button\:text-sidebar-accent-foreground {
	color: hsl(var(--sidebar-accent-foreground))
}

.zstack_hci_dark\:border-input:is(.zstack_hci_dark *) {
	border-color: hsl(var(--input))
}

.zstack_hci_dark\:bg-destructive\/60:is(.zstack_hci_dark *) {
	background-color: hsl(var(--destructive) / .6)
}

.zstack_hci_dark\:bg-input\/30:is(.zstack_hci_dark *) {
	background-color: hsl(var(--input) / .3)
}

.zstack_hci_dark\:bg-transparent:is(.zstack_hci_dark *) {
	background-color: transparent
}

.zstack_hci_dark\:text-muted-foreground:is(.zstack_hci_dark *) {
	color: hsl(var(--muted-foreground))
}

.zstack_hci_dark\:hover\:bg-accent\/50:hover:is(.zstack_hci_dark *) {
	background-color: hsl(var(--accent) / .5)
}

.zstack_hci_dark\:hover\:bg-input\/50:hover:is(.zstack_hci_dark *) {
	background-color: hsl(var(--input) / .5)
}

.zstack_hci_dark\:hover\:text-accent-foreground:hover:is(.zstack_hci_dark *) {
	color: hsl(var(--accent-foreground))
}

.zstack_hci_dark\:focus-visible\:ring-destructive\/40:focus-visible:is(.zstack_hci_dark *) {
	--tw-ring-color: hsl(var(--destructive) / .4)
}

.zstack_hci_dark\:has-\[\[data-slot\]\[aria-invalid\=true\]\]\:ring-destructive\/40:has([data-slot][aria-invalid=true]):is(.zstack_hci_dark *) {
	--tw-ring-color: hsl(var(--destructive) / .4)
}

.zstack_hci_dark\:data-\[state\=active\]\:border-input[data-state=active]:is(.zstack_hci_dark *) {
	border-color: hsl(var(--input))
}

.zstack_hci_dark\:data-\[state\=active\]\:bg-input\/30[data-state=active]:is(.zstack_hci_dark *) {
	background-color: hsl(var(--input) / .3)
}

.zstack_hci_dark\:data-\[state\=checked\]\:bg-primary[data-state=checked]:is(.zstack_hci_dark *) {
	background-color: hsl(var(--primary))
}

.zstack_hci_dark\:data-\[state\=checked\]\:bg-primary-foreground[data-state=checked]:is(.zstack_hci_dark *) {
	background-color: hsl(var(--primary-foreground))
}

.zstack_hci_dark\:data-\[state\=unchecked\]\:bg-foreground[data-state=unchecked]:is(.zstack_hci_dark *) {
	background-color: hsl(var(--foreground))
}

.zstack_hci_dark\:data-\[state\=unchecked\]\:bg-input\/80[data-state=unchecked]:is(.zstack_hci_dark *) {
	background-color: hsl(var(--input) / .8)
}

.zstack_hci_dark\:data-\[state\=active\]\:text-foreground[data-state=active]:is(.zstack_hci_dark *) {
	color: hsl(var(--foreground))
}

.zstack_hci_dark\:data-\[variant\=destructive\]\:focus\:bg-destructive\/20:focus[data-variant=destructive]:is(.zstack_hci_dark *) {
	background-color: hsl(var(--destructive) / .2)
}

@media(min-width:640px) {
	.zstack_hci_sm\:block {
		display: block
	}

	.zstack_hci_sm\:flex {
		display: flex
	}

	.zstack_hci_sm\:max-w-lg {
		max-width: 32rem
	}

	.zstack_hci_sm\:max-w-sm {
		max-width: 24rem
	}

	.zstack_hci_sm\:flex-row {
		flex-direction: row
	}

	.zstack_hci_sm\:justify-end {
		justify-content: flex-end
	}

	.zstack_hci_sm\:gap-2\.5 {
		gap: .625rem
	}

	.zstack_hci_sm\:pl-2\.5 {
		padding-left: .625rem
	}

	.zstack_hci_sm\:pr-2\.5 {
		padding-right: .625rem
	}

	.zstack_hci_sm\:text-left {
		text-align: left
	}

	.zstack_hci_data-\[vaul-drawer-direction\=left\]\:sm\:max-w-sm[data-vaul-drawer-direction=left],
	.zstack_hci_data-\[vaul-drawer-direction\=right\]\:sm\:max-w-sm[data-vaul-drawer-direction=right] {
		max-width: 24rem
	}
}

@media(min-width:768px) {
	.zstack_hci_md\:absolute {
		position: absolute
	}

	.zstack_hci_md\:block {
		display: block
	}

	.zstack_hci_md\:flex {
		display: flex
	}

	.zstack_hci_md\:w-\[var\(--radix-navigation-menu-viewport-width\)\] {
		width: var(--radix-navigation-menu-viewport-width)
	}

	.zstack_hci_md\:w-auto {
		width: auto
	}

	.zstack_hci_md\:flex-row {
		flex-direction: row
	}

	.zstack_hci_md\:gap-1\.5 {
		gap: .375rem
	}

	.zstack_hci_md\:p-12 {
		padding: 3rem
	}

	.zstack_hci_md\:text-left {
		text-align: left
	}

	.zstack_hci_md\:text-sm {
		font-size: .875rem;
		line-height: 1.25rem
	}

	.zstack_hci_md\:opacity-0 {
		opacity: 0
	}

	.zstack_hci_md\:after\:hidden:after {
		content: var(--tw-content);
		display: none
	}

	.zstack_hci_peer[data-variant=inset]~.zstack_hci_md\:peer-data-\[variant\=inset\]\:m-2 {
		margin: .5rem
	}

	.zstack_hci_peer[data-variant=inset]~.zstack_hci_md\:peer-data-\[variant\=inset\]\:ml-0 {
		margin-left: 0
	}

	.zstack_hci_peer[data-variant=inset][data-state=collapsed]~.zstack_hci_md\:peer-data-\[variant\=inset\]\:peer-data-\[state\=collapsed\]\:ml-2 {
		margin-left: .5rem
	}

	.zstack_hci_peer[data-variant=inset]~.zstack_hci_md\:peer-data-\[variant\=inset\]\:rounded-xl {
		border-radius: calc(var(--radius) + 4px)
	}

	.zstack_hci_peer[data-variant=inset]~.zstack_hci_md\:peer-data-\[variant\=inset\]\:shadow-sm {
		--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
		--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
		box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)
	}
}

.\[\&\+\[data-slot\=item-content\]\]\:flex-none+[data-slot=item-content] {
	flex: none
}

.\[\&\:first-child\[data-selected\=true\]_button\]\:rounded-l-md:first-child[data-selected=true] button {
	border-top-left-radius: calc(var(--radius) - 2px);
	border-bottom-left-radius: calc(var(--radius) - 2px)
}

.\[\&\:has\(\[role\=checkbox\]\)\]\:pr-0:has([role=checkbox]) {
	padding-right: 0
}

.\[\&\:last-child\[data-selected\=true\]_button\]\:rounded-r-md:last-child[data-selected=true] button {
	border-top-right-radius: calc(var(--radius) - 2px);
	border-bottom-right-radius: calc(var(--radius) - 2px)
}

.\[\&\:nth-child\(2\)\[data-selected\=true\]_button\]\:rounded-l-md:nth-child(2)[data-selected=true] button {
	border-top-left-radius: calc(var(--radius) - 2px);
	border-bottom-left-radius: calc(var(--radius) - 2px)
}

.\[\&\>\*\:not\(\:first-child\)\]\:rounded-l-none>*:not(:first-child) {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0
}

.\[\&\>\*\:not\(\:first-child\)\]\:rounded-t-none>*:not(:first-child) {
	border-top-left-radius: 0;
	border-top-right-radius: 0
}

.\[\&\>\*\:not\(\:first-child\)\]\:border-l-0>*:not(:first-child) {
	border-left-width: 0px
}

.\[\&\>\*\:not\(\:first-child\)\]\:border-t-0>*:not(:first-child) {
	border-top-width: 0px
}

.\[\&\>\*\:not\(\:last-child\)\]\:rounded-b-none>*:not(:last-child) {
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0
}

.\[\&\>\*\:not\(\:last-child\)\]\:rounded-r-none>*:not(:last-child) {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0
}

.\[\&\>\*\]\:w-full>* {
	width: 100%
}

.\[\&\>\*\]\:focus-visible\:relative:focus-visible>* {
	position: relative
}

.\[\&\>\*\]\:focus-visible\:z-10:focus-visible>* {
	z-index: 10
}

.\[\&\>\*\]\:data-\[slot\=field\]\:p-4[data-slot=field]>* {
	padding: 1rem
}

.\[\&\>\.zstack_hci_sr-only\]\:w-auto>.zstack_hci_sr-only {
	width: auto
}

.\[\&\>\[data-slot\=field-group\]\]\:gap-4>[data-slot=field-group] {
	gap: 1rem
}

.\[\&\>\[data-slot\=field-label\]\]\:flex-auto>[data-slot=field-label] {
	flex: 1 1 auto
}

.zstack_hci_has-\[select\[aria-hidden\=true\]\:last-child\]\:\[\&\>\[data-slot\=select-trigger\]\:last-of-type\]\:rounded-r-md>[data-slot=select-trigger]:last-of-type:has(select[aria-hidden=true]:last-child) {
	border-top-right-radius: calc(var(--radius) - 2px);
	border-bottom-right-radius: calc(var(--radius) - 2px)
}

.\[\&\>\[data-slot\=select-trigger\]\:not\(\[class\*\=\'w-\'\]\)\]\:w-fit>[data-slot=select-trigger]:not([class*=w-]) {
	width: -moz-fit-content;
	width: fit-content
}

.\[\&\>\[role\=checkbox\]\]\:translate-y-\[2px\]>[role=checkbox] {
	--tw-translate-y: 2px;
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.\[\&\>a\:hover\]\:text-primary>a:hover {
	color: hsl(var(--primary))
}

.\[\&\>a\]\:underline>a {
	text-decoration-line: underline
}

.\[\&\>a\]\:underline-offset-4>a {
	text-underline-offset: 4px
}

.\[\&\>button\]\:hidden>button {
	display: none
}

.\[\&\>input\]\:flex-1>input {
	flex: 1 1 0%
}

.zstack_hci_has-\[\>\[data-align\=block-end\]\]\:\[\&\>input\]\:pt-3>input:has(>[data-align=block-end]) {
	padding-top: .75rem
}

.zstack_hci_has-\[\>\[data-align\=block-start\]\]\:\[\&\>input\]\:pb-3>input:has(>[data-align=block-start]) {
	padding-bottom: .75rem
}

.zstack_hci_has-\[\>\[data-align\=inline-end\]\]\:\[\&\>input\]\:pr-2>input:has(>[data-align=inline-end]) {
	padding-right: .5rem
}

.zstack_hci_has-\[\>\[data-align\=inline-start\]\]\:\[\&\>input\]\:pl-2>input:has(>[data-align=inline-start]) {
	padding-left: .5rem
}

.\[\&\>kbd\]\:rounded-\[calc\(var\(--radius\)-5px\)\]>kbd {
	border-radius: calc(var(--radius) - 5px)
}

.\[\&\>span\:last-child\]\:truncate>span:last-child {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap
}

.\[\&\>span\]\:text-xs>span {
	font-size: .75rem;
	line-height: 1rem
}

.\[\&\>span\]\:opacity-70>span {
	opacity: .7
}

.\[\&\>svg\:not\(\[class\*\=\'size-\'\]\)\]\:size-3\.5>svg:not([class*=size-]) {
	width: .875rem;
	height: .875rem
}

.\[\&\>svg\:not\(\[class\*\=\'size-\'\]\)\]\:size-4>svg:not([class*=size-]) {
	width: 1rem;
	height: 1rem
}

.\[\&\>svg\]\:pointer-events-none>svg {
	pointer-events: none
}

.\[\&\>svg\]\:size-3>svg {
	width: .75rem;
	height: .75rem
}

.\[\&\>svg\]\:size-3\.5>svg {
	width: .875rem;
	height: .875rem
}

.\[\&\>svg\]\:size-4>svg {
	width: 1rem;
	height: 1rem
}

.\[\&\>svg\]\:h-2\.5>svg {
	height: .625rem
}

.\[\&\>svg\]\:h-3>svg {
	height: .75rem
}

.\[\&\>svg\]\:w-2\.5>svg {
	width: .625rem
}

.\[\&\>svg\]\:w-3>svg {
	width: .75rem
}

.\[\&\>svg\]\:shrink-0>svg {
	flex-shrink: 0
}

.\[\&\>svg\]\:translate-y-0\.5>svg {
	--tw-translate-y: .125rem;
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.\[\&\>svg\]\:text-current>svg {
	color: currentColor
}

.\[\&\>svg\]\:text-muted-foreground>svg {
	color: hsl(var(--muted-foreground))
}

.\[\&\>svg\]\:text-sidebar-accent-foreground>svg {
	color: hsl(var(--sidebar-accent-foreground))
}

.\[\&\>tr\]\:last\:border-b-0:last-child>tr {
	border-bottom-width: 0px
}

.\[\&\[data-panel-group-direction\=vertical\]\>div\]\:rotate-90[data-panel-group-direction=vertical]>div {
	--tw-rotate: 90deg;
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.\[\&\[data-state\=open\]\>svg\]\:rotate-180[data-state=open]>svg {
	--tw-rotate: 180deg;
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.\[\&_\.zstack_hci_recharts-cartesian-axis-tick_text\]\:fill-muted-foreground .zstack_hci_recharts-cartesian-axis-tick text {
	fill: hsl(var(--muted-foreground))
}

.\[\&_\.zstack_hci_recharts-cartesian-grid_line\[stroke\=\'\#ccc\'\]\]\:stroke-border\/50 .zstack_hci_recharts-cartesian-grid line[stroke="#ccc"] {
	stroke: hsl(var(--border) / .5)
}

.\[\&_\.zstack_hci_recharts-curve\.zstack_hci_recharts-tooltip-cursor\]\:stroke-border .zstack_hci_recharts-curve.zstack_hci_recharts-tooltip-cursor {
	stroke: hsl(var(--border))
}

.\[\&_\.zstack_hci_recharts-dot\[stroke\=\'\#fff\'\]\]\:stroke-transparent .zstack_hci_recharts-dot[stroke="#fff"] {
	stroke: transparent
}

.\[\&_\.zstack_hci_recharts-polar-grid_\[stroke\=\'\#ccc\'\]\]\:stroke-border .zstack_hci_recharts-polar-grid [stroke="#ccc"] {
	stroke: hsl(var(--border))
}

.\[\&_\.zstack_hci_recharts-radial-bar-background-sector\]\:fill-muted .zstack_hci_recharts-radial-bar-background-sector,
.\[\&_\.zstack_hci_recharts-rectangle\.zstack_hci_recharts-tooltip-cursor\]\:fill-muted .zstack_hci_recharts-rectangle.zstack_hci_recharts-tooltip-cursor {
	fill: hsl(var(--muted))
}

.\[\&_\.zstack_hci_recharts-reference-line_\[stroke\=\'\#ccc\'\]\]\:stroke-border .zstack_hci_recharts-reference-line [stroke="#ccc"] {
	stroke: hsl(var(--border))
}

.\[\&_\.zstack_hci_recharts-sector\[stroke\=\'\#fff\'\]\]\:stroke-transparent .zstack_hci_recharts-sector[stroke="#fff"] {
	stroke: transparent
}

.\[\&_\[cmdk-group-heading\]\]\:px-2 [cmdk-group-heading] {
	padding-left: .5rem;
	padding-right: .5rem
}

.\[\&_\[cmdk-group-heading\]\]\:py-1\.5 [cmdk-group-heading] {
	padding-top: .375rem;
	padding-bottom: .375rem
}

.\[\&_\[cmdk-group-heading\]\]\:text-xs [cmdk-group-heading] {
	font-size: .75rem;
	line-height: 1rem
}

.\[\&_\[cmdk-group-heading\]\]\:font-medium [cmdk-group-heading] {
	font-weight: 500
}

.\[\&_\[cmdk-group-heading\]\]\:text-muted-foreground [cmdk-group-heading] {
	color: hsl(var(--muted-foreground))
}

.\[\&_\[cmdk-group\]\:not\(\[hidden\]\)_\~\[cmdk-group\]\]\:pt-0 [cmdk-group]:not([hidden])~[cmdk-group] {
	padding-top: 0
}

.\[\&_\[cmdk-group\]\]\:px-2 [cmdk-group] {
	padding-left: .5rem;
	padding-right: .5rem
}

.\[\&_\[cmdk-input-wrapper\]_svg\]\:h-5 [cmdk-input-wrapper] svg {
	height: 1.25rem
}

.\[\&_\[cmdk-input-wrapper\]_svg\]\:w-5 [cmdk-input-wrapper] svg {
	width: 1.25rem
}

.\[\&_\[cmdk-input\]\]\:h-12 [cmdk-input] {
	height: 3rem
}

.\[\&_\[cmdk-item\]\]\:px-2 [cmdk-item] {
	padding-left: .5rem;
	padding-right: .5rem
}

.\[\&_\[cmdk-item\]\]\:py-3 [cmdk-item] {
	padding-top: .75rem;
	padding-bottom: .75rem
}

.\[\&_\[cmdk-item\]_svg\]\:h-5 [cmdk-item] svg {
	height: 1.25rem
}

.\[\&_\[cmdk-item\]_svg\]\:w-5 [cmdk-item] svg {
	width: 1.25rem
}

.\[\&_img\]\:size-full img {
	width: 100%;
	height: 100%
}

.\[\&_img\]\:object-cover img {
	-o-object-fit: cover;
	object-fit: cover
}

.\[\&_p\]\:leading-relaxed p {
	line-height: 1.625
}

.\[\&_svg\:not\(\[class\*\=\'size-\'\]\)\]\:size-3 svg:not([class*=size-]) {
	width: .75rem;
	height: .75rem
}

.\[\&_svg\:not\(\[class\*\=\'size-\'\]\)\]\:size-4 svg:not([class*=size-]) {
	width: 1rem;
	height: 1rem
}

.\[\&_svg\:not\(\[class\*\=\'size-\'\]\)\]\:size-6 svg:not([class*=size-]) {
	width: 1.5rem;
	height: 1.5rem
}

.\[\&_svg\:not\(\[class\*\=\'text-\'\]\)\]\:text-muted-foreground svg:not([class*=text-]) {
	color: hsl(var(--muted-foreground))
}

.\[\&_svg\]\:pointer-events-none svg {
	pointer-events: none
}

.\[\&_svg\]\:shrink-0 svg {
	flex-shrink: 0
}

.\[\&_tr\:last-child\]\:border-0 tr:last-child {
	border-width: 0px
}

.\[\&_tr\]\:border-b tr {
	border-bottom-width: 1px
}

[data-side=left][data-collapsible=offcanvas] .\[\[data-side\=left\]\[data-collapsible\=offcanvas\]_\&\]\:-right-2 {
	right: -.5rem
}

[data-side=left][data-state=collapsed] .\[\[data-side\=left\]\[data-state\=collapsed\]_\&\]\:cursor-e-resize {
	cursor: e-resize
}

[data-side=right][data-collapsible=offcanvas] .\[\[data-side\=right\]\[data-collapsible\=offcanvas\]_\&\]\:-left-2 {
	left: -.5rem
}

[data-side=right][data-state=collapsed] .\[\[data-side\=right\]\[data-state\=collapsed\]_\&\]\:cursor-w-resize {
	cursor: w-resize
}

[data-slot=card-content] .\[\[data-slot\=card-content\]_\&\]\:bg-transparent,
[data-slot=popover-content] .\[\[data-slot\=popover-content\]_\&\]\:bg-transparent {
	background-color: transparent
}

[data-slot=tooltip-content] .\[\[data-slot\=tooltip-content\]_\&\]\:bg-background\/20 {
	background-color: hsl(var(--background) / .2)
}

[data-slot=tooltip-content] .\[\[data-slot\=tooltip-content\]_\&\]\:text-background {
	color: hsl(var(--background))
}

[data-slot=tooltip-content] .zstack_hci_dark\:\[\[data-slot\=tooltip-content\]_\&\]\:bg-background\/10:is(.zstack_hci_dark *) {
	background-color: hsl(var(--background) / .1)
}

[data-variant=legend]+.\[\[data-variant\=legend\]\+\&\]\:-mt-1\.5 {
	margin-top: -.375rem
}

a.\[a\&\]\:hover\:bg-accent:hover {
	background-color: hsl(var(--accent))
}

a.\[a\&\]\:hover\:bg-destructive\/90:hover {
	background-color: hsl(var(--destructive) / .9)
}

a.\[a\&\]\:hover\:bg-primary\/90:hover {
	background-color: hsl(var(--primary) / .9)
}

a.\[a\&\]\:hover\:bg-secondary\/90:hover {
	background-color: hsl(var(--secondary) / .9)
}

a.\[a\&\]\:hover\:text-accent-foreground:hover {
	color: hsl(var(--accent-foreground))
}

/* ═══════════ zstack-healthcare.html ═══════════ */
/* ─── Reset ─────────────────────────────────────────── */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	/* Backgrounds */
	--bg: #ffffff;
	--bg-alt: #f8fafc;
	--bg-card: #ffffff;

	/* Primary */
	--blue: #00579c;
	--blue-dim: #004a85;
	--blue-glow: rgba(0, 87, 156, 0.22);
	--blue-faint: rgba(0, 87, 156, 0.07);
	--blue-mid: rgba(0, 87, 156, 0.14);

	/* Accent */
	--orange: #e65100;
	--orange-dim: rgba(230, 81, 0, 0.10);
	--teal: #00897b;
	--teal-dim: rgba(0, 137, 123, 0.10);
	--green: #2e7d32;

	/* Borders */
	--border: rgba(148, 163, 184, 0.28);
	--border-hi: rgba(0, 87, 156, 0.20);

	/* Text */
	--t1: #0f172a;
	--t2: #475569;
	--t3: #94a3b8;

	--font: 'Inter', system-ui, sans-serif;
	--mono: 'JetBrains Mono', monospace;
	--radius: 14px;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font);
	background: var(--bg);
	color: var(--t1);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

/* ─── Fade animation ─────────────────────────────────── */
.zstack_healthcare_fade {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .6s ease, transform .6s ease;
}

.zstack_healthcare_fade.zstack_healthcare_in {
	opacity: 1;
	transform: none;
}

/* ─── Layout ─────────────────────────────────────────── */
.zstack_healthcare_inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 32px;
}

/* ─── Label chip ─────────────────────────────────────── */
.zstack_healthcare_lbl {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	font-family: var(--mono);
	color: var(--blue);
	background: var(--blue-faint);
	border: 1px solid var(--border-hi);
	border-radius: 100px;
	padding: 4px 14px;
}

/* ─── SHARED BUTTONS ──────────────────────────────────── */
/* design.zstack_healthcare_md: btn--primary with glow, btn--ghost */
.zstack_healthcare_btn-p {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font);
	font-size: 15px;
	font-weight: 700;
	background: var(--blue);
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 13px 26px;
	cursor: pointer;
	transition: all .2s;
}

.zstack_healthcare_btn-p:hover {
	background: var(--blue-dim);
	box-shadow: 0 0 28px 8px var(--blue-glow);
}

.zstack_healthcare_btn-s {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font);
	font-size: 15px;
	font-weight: 600;
	background: transparent;
	color: var(--t1);
	border: 1.5px solid var(--border);
	border-radius: 8px;
	padding: 12px 24px;
	cursor: pointer;
	transition: all .2s;
}

.zstack_healthcare_btn-s:hover {
	border-color: var(--blue);
	color: var(--blue);
}

.zstack_healthcare_btn-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font);
	font-size: 14px;
	font-weight: 600;
	background: transparent;
	color: var(--t2);
	border: 1.5px solid var(--border);
	border-radius: 100px;
	padding: 10px 32px;
	cursor: pointer;
	transition: all .2s;
}

.zstack_healthcare_btn-pill:hover {
	border-color: var(--blue);
	color: var(--blue);
}

/* ─── HERO ────────────────────────────────────────────── */
/* design.zstack_healthcare_md: linear-gradient(180deg, #f0f6ff 0%, #ffffff 60%) + grid + glow */
.zstack_healthcare_hero-wrap {
	background: linear-gradient(180deg, #f0f6ff 0%, #ffffff 60%);
	position: relative;
	overflow: hidden;
	padding-top: 100px;
}

/* Grid background */
.zstack_healthcare_hero-wrap::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(0, 87, 156, .06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 87, 156, .06) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 20%, transparent 70%);
}

/* Glow */
.zstack_healthcare_hero-wrap::after {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 55% 45% at 20% 60%, rgba(0, 87, 156, .06) 0%, transparent 65%),
		radial-gradient(ellipse 50% 40% at 80% 40%, rgba(230, 81, 0, .04) 0%, transparent 65%);
}

.zstack_healthcare_hero-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 80px 32px 96px;
	display: grid;
	grid-template-columns: 1fr 460px;
	gap: 72px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.zstack_healthcare_hero-left {
	display: flex;
	flex-direction: column;
}

.zstack_healthcare_hero-bc {
	font-size: 13px;
	font-weight: 600;
	color: var(--blue);
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 24px;
	cursor: pointer;
}

.zstack_healthcare_hero-bc svg {
	width: 14px;
	height: 14px;
	stroke: var(--blue);
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
}

/* design.zstack_healthcare_md 5.7: hero-badge — orange pill with pulse dot */
.zstack_healthcare_hero-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-family: var(--mono);
	color: var(--orange);
	background: var(--orange-dim);
	border: 1px solid rgba(230, 81, 0, .22);
	border-radius: 100px;
	padding: 6px 16px;
	margin-bottom: 22px;
	align-self: flex-start;
}

.zstack_healthcare_hero-label-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--orange);
	flex-shrink: 0;
	animation: pulse 2s infinite;
}

@keyframes pulse {

	0%,
	100% {
		opacity: 1;
		transform: scale(1)
	}

	50% {
		opacity: .6;
		transform: scale(1.35)
	}
}

/* design.zstack_healthcare_md H1: weight 900, first line dark, second line blue gradient */
.zstack_healthcare_hero-h1 {
	font-size: clamp(26px, 3.6vw, 44px);
	font-weight: 900;
	letter-spacing: -0.04em;
	line-height: 1.04;
	margin-bottom: 22px;
	color: var(--t1);
}

/* gradient span for semantic highlight line */
.zstack_healthcare_hero-h1 .zstack_healthcare_h1-accent {
	background: linear-gradient(125deg, var(--blue) 0%, #0277bd 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.zstack_healthcare_hero-p {
	font-size: 17px;
	color: var(--t2);
	line-height: 1.72;
	max-width: 500px;
	margin-bottom: 36px;
}

.zstack_healthcare_hero-btns {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

/* Hero right: trust map */
.zstack_healthcare_hero-right-col {
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 1;
}

.zstack_healthcare_trust-map {
	background: rgba(255, 255, 255, .82);
	border: 1px solid var(--border-hi);
	border-radius: var(--radius) var(--radius) 0 0;
	padding: 20px 16px;
	backdrop-filter: blur(8px);
}

.zstack_healthcare_hero-credibility {
	display: flex;
	align-items: stretch;
	background: var(--bg-card);
	border: 1px solid var(--border-hi);
	border-top: none;
	border-radius: 0 0 var(--radius) var(--radius);
	overflow: hidden;
	box-shadow: 0 4px 16px -4px rgba(0, 87, 156, .12);
}

.zstack_healthcare_hc-item {
	flex: 1;
	padding: 18px 20px;
	text-align: center;
}

/* design.zstack_healthcare_md: stat numbers 32-44px, weight 900, --mono */
.zstack_healthcare_hc-val {
	font-size: 24px;
	font-weight: 900;
	letter-spacing: -0.04em;
	color: var(--blue);
	line-height: 1;
	font-family: var(--mono);
}

.zstack_healthcare_hc-label {
	font-size: 11px;
	color: var(--t3);
	margin-top: 5px;
	line-height: 1.4;
}

.zstack_healthcare_hc-div {
	width: 1px;
	background: var(--border);
	flex-shrink: 0;
}

.zstack_healthcare_hero-divider {
	border: none;
	border-bottom: 1px dashed var(--border);
	margin: 0;
}

/* ─── SECTION SHARED ──────────────────────────────────── */
/* design.zstack_healthcare_md: H2 clamp(28px, 3.8vw, 46px), weight 800 */
.zstack_healthcare_sec-title {
	font-size: clamp(26px, 3.8vw, 44px);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.1;
	color: var(--t1);
}

.zstack_healthcare_sec-sub {
	font-size: 17px;
	color: var(--t2);
	line-height: 1.72;
}

.zstack_healthcare_eyebrow {
	display: inline-flex;
	align-items: center;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	font-family: var(--mono);
	color: var(--blue);
	background: var(--blue-faint);
	border: 1px solid var(--border-hi);
	border-radius: 100px;
	padding: 4px 14px;
	margin-bottom: 12px;
}

/* ─── BENEFITS A ──────────────────────────────────────── */
/* design.zstack_healthcare_md: --bg section */
.zstack_healthcare_sec-bene-a {
	background: var(--bg);
	padding: 120px 0;
}

.zstack_healthcare_bene-a-hd {
	text-align: center;
	margin-bottom: 72px;
}

.zstack_healthcare_bene-a-hd .zstack_healthcare_sec-title {
	margin-bottom: 18px;
}

.zstack_healthcare_bene-cols {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	text-align: center;
}

.zstack_healthcare_bcol {}

.zstack_healthcare_bcol-icon {
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
}

.zstack_healthcare_bcol-h {
	font-size: 19px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--t1);
	margin-bottom: 12px;
}

.zstack_healthcare_bcol-p {
	font-size: 15px;
	color: var(--t2);
	line-height: 1.7;
}

/* ─── BENEFITS B ──────────────────────────────────────── */
/* design.zstack_healthcare_md: --bg-alt section */
.zstack_healthcare_sec-bene-b {
	background: var(--bg-alt);
	padding: 120px 0;
}

.zstack_healthcare_bene-b-hd {
	text-align: center;
	margin-bottom: 56px;
}

.zstack_healthcare_bene-b-cols {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* design.zstack_healthcare_md: card with top color bar, 14px radius, hover translateY(-3px) */
.zstack_healthcare_bbc {
	display: flex;
	flex-direction: column;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	transition: border-color .2s, transform .2s, box-shadow .2s;
	position: relative;
}

.zstack_healthcare_bbc:hover {
	border-color: var(--border-hi);
	transform: translateY(-3px);
	box-shadow: 0 12px 32px -8px rgba(0, 87, 156, .10);
}

/* top color bar - sequential gradients per design.zstack_healthcare_md */
.zstack_healthcare_bbc:nth-child(1)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--blue), #0277bd);
}

.zstack_healthcare_bbc:nth-child(2)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--teal), var(--blue));
}

.zstack_healthcare_bbc:nth-child(3)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--orange), #ff8a65);
}

.zstack_healthcare_bbc-hd {
	background: var(--blue);
	padding: 28px 26px;
	position: relative;
}

.zstack_healthcare_bbc-hd::after {
	content: '';
	position: absolute;
	bottom: -14px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 14px solid transparent;
	border-right: 14px solid transparent;
	border-top: 15px solid var(--blue);
}

.zstack_healthcare_bbc-hd-title {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	line-height: 1.3;
	text-align: center;
}

.zstack_healthcare_bbc-body {
	background: var(--bg-card);
	padding: 36px 22px 30px;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.zstack_healthcare_bbc-p {
	font-size: 14px;
	color: var(--t2);
	line-height: 1.72;
	flex: 1;
	margin-bottom: 24px;
}

.zstack_healthcare_btn-learn {
	font-family: var(--font);
	font-size: 13px;
	font-weight: 700;
	background: var(--blue);
	color: #fff;
	border: none;
	border-radius: 100px;
	padding: 9px 22px;
	cursor: pointer;
	transition: background .15s;
}

.zstack_healthcare_btn-learn:hover {
	background: var(--blue-dim);
}

/* ─── USE CASES ────────────────────────────────────────── */
/* design.zstack_healthcare_md: --bg section */
.zstack_healthcare_sec-uc {
	background: var(--bg);
	padding: 120px 0;
}

.zstack_healthcare_uc-hd {
	text-align: center;
	margin-bottom: 72px;
}

.zstack_healthcare_uc-layout {
	display: grid;
	grid-template-columns: 1fr 520px;
	gap: 72px;
	align-items: start;
}

.zstack_healthcare_uc-list {
	display: flex;
	flex-direction: column;
}

.zstack_healthcare_uc-item {
	padding: 32px 0;
	border-bottom: 1px solid var(--border);
}

.zstack_healthcare_uc-item:first-child {
	border-top: 1px solid var(--border);
}

.zstack_healthcare_uc-item-h {
	font-size: 18px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--t1);
	margin-bottom: 10px;
}

.zstack_healthcare_uc-item-p {
	font-size: 14px;
	color: var(--t2);
	line-height: 1.72;
	margin-bottom: 12px;
}

.zstack_healthcare_uc-link {
	font-size: 13px;
	font-weight: 700;
	color: var(--blue);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	border-bottom: 1px solid rgba(0, 87, 156, .3);
	transition: border-color .2s;
}

.zstack_healthcare_uc-link svg {
	width: 13px;
	height: 13px;
	stroke: var(--blue);
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
}

.zstack_healthcare_uc-link:hover {
	border-color: var(--blue);
}

/* Mockup */
.zstack_healthcare_uc-mockup {
	position: sticky;
	top: 130px;
}

.zstack_healthcare_mockup-shell {
	background: var(--t1);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(0, 0, 0, .18), 0 0 0 1px rgba(0, 87, 156, .15);
}

.zstack_healthcare_mockup-bar {
	background: #1e2530;
	height: 36px;
	display: flex;
	align-items: center;
	padding: 0 16px;
	gap: 8px;
}

.zstack_healthcare_mockup-dot {
	width: 11px;
	height: 11px;
	border-radius: 50%;
}

.zstack_healthcare_mockup-title {
	font-size: 11px;
	color: rgba(255, 255, 255, .35);
	margin-left: 8px;
}

.zstack_healthcare_mockup-body {
	background: #161b22;
	display: grid;
	grid-template-columns: 190px 1fr;
}

.zstack_healthcare_mockup-sidebar {
	background: #1a1f2e;
	padding: 16px 0;
	border-right: 1px solid rgba(255, 255, 255, .06);
}

.zstack_healthcare_ms-section {
	padding: 8px 16px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .28);
	margin-top: 8px;
}

.zstack_healthcare_ms-item {
	padding: 9px 20px;
	font-size: 12px;
	color: rgba(255, 255, 255, .45);
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: background .15s;
}

.zstack_healthcare_ms-item:hover {
	background: rgba(0, 87, 156, .15);
	color: rgba(255, 255, 255, .8);
}

.zstack_healthcare_ms-item.zstack_healthcare_act {
	background: rgba(0, 87, 156, .25);
	color: #7badd4;
}

.zstack_healthcare_ms-item svg {
	width: 13px;
	height: 13px;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.5;
	opacity: .7;
}

.zstack_healthcare_mockup-main {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.zstack_healthcare_mm-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 4px;
}

.zstack_healthcare_mm-title {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
}

.zstack_healthcare_mm-badge {
	background: rgba(0, 87, 156, .4);
	color: #7badd4;
	font-size: 10px;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 4px;
}

.zstack_healthcare_mm-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
}

.zstack_healthcare_mm-card {
	background: #1e2530;
	padding: 14px;
	border: 1px solid rgba(255, 255, 255, .06);
	border-radius: 6px;
}

.zstack_healthcare_mm-card-label {
	font-size: 9px;
	color: rgba(255, 255, 255, .35);
	margin-bottom: 6px;
	letter-spacing: .05em;
	text-transform: uppercase;
}

.zstack_healthcare_mm-card-val {
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	letter-spacing: -0.02em;
}

.zstack_healthcare_mm-card-sub {
	font-size: 10px;
	color: #4caf50;
	margin-top: 3px;
}

.zstack_healthcare_mm-table {
	background: #1e2530;
	border: 1px solid rgba(255, 255, 255, .06);
	border-radius: 6px;
	overflow: hidden;
}

.zstack_healthcare_mm-table-hd {
	display: grid;
	grid-template-columns: 1fr 60px 70px 60px;
	padding: 8px 12px;
	border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.zstack_healthcare_mm-th {
	font-size: 9px;
	font-weight: 700;
	color: rgba(255, 255, 255, .3);
	letter-spacing: .06em;
	text-transform: uppercase;
}

.zstack_healthcare_mm-row {
	display: grid;
	grid-template-columns: 1fr 60px 70px 60px;
	padding: 9px 12px;
	border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.zstack_healthcare_mm-row:last-child {
	border-bottom: none;
}

.zstack_healthcare_mm-td {
	font-size: 11px;
	color: rgba(255, 255, 255, .6);
}

.zstack_healthcare_mm-td.zstack_healthcare_pri {
	color: #7badd4;
	font-weight: 600;
}

.zstack_healthcare_mm-td.zstack_healthcare_grn {
	color: #4caf50;
}

.zstack_healthcare_mm-td.zstack_healthcare_ora {
	color: #ff9800;
}

/* ─── CUSTOMERS ────────────────────────────────────────── */
/* design.zstack_healthcare_md: --bg-alt section */
.zstack_healthcare_sec-cust {
	background: var(--bg-alt);
	padding: 120px 0;
}

.zstack_healthcare_cust-hd {
	text-align: center;
	margin-bottom: 64px;
}

.zstack_healthcare_cust-hd .zstack_healthcare_sec-title {
	margin-bottom: 16px;
}

.zstack_healthcare_cust-hd-sub {
	font-size: 17px;
	color: var(--t2);
	max-width: 600px;
	margin: 0 auto;
}

.zstack_healthcare_quote-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* design.zstack_healthcare_md: card — white bg, border, 14px radius, hover translateY(-3px) */
.zstack_healthcare_qcard {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding: 34px 28px;
	transition: border-color .2s, transform .2s, box-shadow .2s;
	position: relative;
}

.zstack_healthcare_qcard:hover {
	border-color: var(--border-hi);
	transform: translateY(-3px);
	box-shadow: 0 12px 32px -8px rgba(0, 87, 156, .10);
}

/* top color bar per design.zstack_healthcare_md sequence */
.zstack_healthcare_qcard:nth-child(1)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--blue), #0277bd);
}

.zstack_healthcare_qcard:nth-child(2)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--teal), var(--blue));
}

.zstack_healthcare_qcard:nth-child(3)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--orange), #ff8a65);
}

.zstack_healthcare_qcard-org-row {
	display: flex;
	align-items: center;
	gap: 14px;
}

.zstack_healthcare_qcard-avatar {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	flex-shrink: 0;
	background: linear-gradient(135deg, var(--blue-faint), var(--teal-dim));
	display: grid;
	place-items: center;
	font-size: 22px;
}

.zstack_healthcare_qcard-org-name {
	font-size: 14px;
	font-weight: 700;
	color: var(--t1);
}

.zstack_healthcare_qcard-org-type {
	font-size: 12px;
	color: var(--t3);
}

.zstack_healthcare_qcard-divider {
	height: 1px;
	background: var(--border);
}

.zstack_healthcare_qcard-row {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.zstack_healthcare_qcard-row-lbl {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--t3);
	font-family: var(--mono);
}

.zstack_healthcare_qcard-row-txt {
	font-size: 13px;
	color: var(--t2);
	line-height: 1.65;
}

.zstack_healthcare_qcard-result {
	background: rgba(46, 125, 50, .07);
	border: 1px solid rgba(46, 125, 50, .18);
	border-radius: 8px;
	padding: 14px 16px;
	margin-top: auto;
}

.zstack_healthcare_qcard-result-lbl {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--green);
	font-family: var(--mono);
	margin-bottom: 5px;
}

.zstack_healthcare_qcard-result-txt {
	font-size: 13px;
	font-weight: 500;
	color: var(--t1);
	line-height: 1.55;
}

.zstack_healthcare_cust-more {
	text-align: center;
	margin-top: 48px;
}

/* ─── RESOURCES ────────────────────────────────────────── */
/* design.zstack_healthcare_md: --bg section */
.zstack_healthcare_sec-res {
	background: var(--bg);
	padding: 120px 0;
}

.zstack_healthcare_res-hd {
	text-align: center;
	margin-bottom: 64px;
}

.zstack_healthcare_res-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* design.zstack_healthcare_md: card hover translateY(-3px) */
.zstack_healthcare_rcard {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	text-align: center;
	transition: border-color .2s, transform .2s, box-shadow .2s;
}

.zstack_healthcare_rcard:hover {
	border-color: var(--border-hi);
	transform: translateY(-3px);
	box-shadow: 0 12px 32px -8px rgba(0, 87, 156, .10);
}

.zstack_healthcare_rcard-cover {
	height: 200px;
	background: var(--bg-alt);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	border-bottom: 1px solid var(--border);
}

.zstack_healthcare_rcard-cover::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 70% 70% at 50% 60%, rgba(0, 87, 156, .06) 0%, transparent 70%);
}

.zstack_healthcare_rcard-doc {
	position: relative;
	z-index: 1;
	width: 108px;
	height: 140px;
	border-radius: 4px 8px 8px 4px;
	box-shadow: 4px 8px 24px rgba(0, 0, 0, .15), -2px 2px 8px rgba(0, 0, 0, .08);
	transform: rotate(-4deg) translateY(4px);
	transition: transform .25s;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.zstack_healthcare_rcard:hover .zstack_healthcare_rcard-doc {
	transform: rotate(-2deg) translateY(0);
}

.zstack_healthcare_rcard-doc.zstack_healthcare_doc-blue {
	background: linear-gradient(160deg, var(--blue) 0%, #0277bd 100%);
}

.zstack_healthcare_rcard-doc.zstack_healthcare_doc-dark {
	background: linear-gradient(160deg, #1a2332 0%, #243447 100%);
}

.zstack_healthcare_rcard-doc.zstack_healthcare_doc-navy {
	background: linear-gradient(160deg, #1e3a5f 0%, #2d5a8e 100%);
}

.zstack_healthcare_rcard-doc::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 6px;
	background: rgba(255, 255, 255, .15);
}

.zstack_healthcare_rcard-doc::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 0;
	height: 0;
	border-left: 18px solid rgba(255, 255, 255, .08);
	border-bottom: 18px solid transparent;
	border-top: 18px solid rgba(255, 255, 255, .22);
}

.zstack_healthcare_rcard-doc-inner {
	padding: 14px 12px 12px 16px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex: 1;
}

.zstack_healthcare_rcd-brand {
	font-size: 7px;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .6);
	font-family: var(--mono);
}

.zstack_healthcare_rcd-rule {
	height: 1px;
	background: rgba(255, 255, 255, .18);
}

.zstack_healthcare_rcd-title {
	font-size: 9.5px;
	font-weight: 700;
	color: #fff;
	line-height: 1.4;
	margin-top: 2px;
}

.zstack_healthcare_rcd-sub {
	font-size: 7.5px;
	color: rgba(255, 255, 255, .5);
	line-height: 1.45;
	margin-top: 1px;
}

.zstack_healthcare_rcd-spacer {
	flex: 1;
}

.zstack_healthcare_rcd-footer {
	font-size: 7px;
	color: rgba(255, 255, 255, .35);
	font-family: var(--mono);
	letter-spacing: .04em;
	text-transform: uppercase;
}

.zstack_healthcare_rcard-cover-badge {
	position: absolute;
	bottom: 14px;
	right: 14px;
	background: rgba(255, 255, 255, .15);
	font-size: 9px;
	font-weight: 700;
	color: rgba(255, 255, 255, .85);
	padding: 4px 8px;
	letter-spacing: .06em;
	text-transform: uppercase;
	font-family: var(--mono);
	border-radius: 4px;
}

.zstack_healthcare_rcard-body {
	padding: 24px 24px 28px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.zstack_healthcare_rcard-type {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--blue);
	margin-bottom: 8px;
	font-family: var(--mono);
}

.zstack_healthcare_rcard-h {
	font-size: 17px;
	font-weight: 800;
	color: var(--t1);
	line-height: 1.35;
	margin-bottom: 10px;
	flex: 1;
	letter-spacing: -.01em;
}

.zstack_healthcare_rcard-sub {
	font-size: 13px;
	color: var(--t2);
	line-height: 1.65;
	margin-bottom: 18px;
}

.zstack_healthcare_rcard-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 700;
	color: var(--t1);
	cursor: pointer;
	margin-top: auto;
	transition: color .15s;
}

.zstack_healthcare_rcard-cta svg {
	width: 13px;
	height: 13px;
	stroke: currentColor;
	fill: none;
	stroke-width: 2.5;
	stroke-linecap: round;
}

.zstack_healthcare_rcard-cta:hover {
	color: var(--blue);
}

.zstack_healthcare_res-more {
	text-align: center;
	margin-top: 48px;
}

/* ─── GET STARTED CTA ──────────────────────────────────── */
/* design.zstack_healthcare_md: linear-gradient(160deg, #00579c 0%, #003a6e 55%, #1a2744 100%) + grid overlay */
.zstack_healthcare_sec-gs {
	padding: 140px 32px 120px;
	text-align: center;
	position: relative;
	overflow: hidden;
	background: linear-gradient(160deg, #00579c 0%, #003a6e 55%, #1a2744 100%);
}

.zstack_healthcare_sec-gs::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
	background-size: 48px 48px;
}

.zstack_healthcare_gs-title {
	font-size: clamp(32px, 5vw, 52px);
	font-weight: 900;
	letter-spacing: -0.04em;
	color: #fff;
	margin-bottom: 16px;
	line-height: 1.05;
	position: relative;
	z-index: 1;
}

.zstack_healthcare_gs-sub {
	font-size: 17px;
	color: rgba(255, 255, 255, .72);
	max-width: 540px;
	margin: 0 auto 44px;
	line-height: 1.65;
	position: relative;
	z-index: 1;
}

.zstack_healthcare_gs-btns {
	display: flex;
	gap: 14px;
	justify-content: center;
	margin-bottom: 64px;
	position: relative;
	z-index: 1;
}

/* design.zstack_healthcare_md: outline-white buttons on dark bg */
.zstack_healthcare_btn-gs-p {
	font-family: var(--font);
	font-size: 15px;
	font-weight: 700;
	background: #fff;
	color: var(--blue);
	border: none;
	border-radius: 8px;
	padding: 14px 32px;
	cursor: pointer;
	transition: all .2s;
}

.zstack_healthcare_btn-gs-p:hover {
	box-shadow: 0 0 28px 8px rgba(255, 255, 255, .25);
}

.zstack_healthcare_btn-gs-s {
	font-family: var(--font);
	font-size: 15px;
	font-weight: 600;
	background: transparent;
	color: #fff;
	border: 1.5px solid rgba(255, 255, 255, .4);
	border-radius: 8px;
	padding: 13px 28px;
	cursor: pointer;
	transition: border-color .2s;
}

.zstack_healthcare_btn-gs-s:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, .08);
}

.zstack_healthcare_gs-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	max-width: 720px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

/* design.zstack_healthcare_md: deep-dark bg cards */
.zstack_healthcare_gs-card {
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 16px;
	padding: 32px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	transition: all .2s;
}

.zstack_healthcare_gs-card:hover {
	background: rgba(255, 255, 255, .14);
	transform: translateY(-2px);
}

.zstack_healthcare_gs-card-icon {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.zstack_healthcare_gs-card-icon svg {
	width: 26px;
	height: 26px;
	stroke: rgba(255, 255, 255, .85);
	fill: none;
	stroke-width: 1.5;
	stroke-linecap: round;
}

.zstack_healthcare_gs-card-title {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
}

.zstack_healthcare_gs-card-sub {
	font-size: 12px;
	color: rgba(255, 255, 255, .58);
	text-align: center;
	line-height: 1.5;
}



/* ─── Proof block (replaces trust map for non-map industries) ── */
.zstack_healthcare_proof-block {
	min-height: 220px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(0, 87, 156, .05) 0%, rgba(0, 87, 156, .02) 100%);
}

.zstack_healthcare_proof-inner {
	width: 100%;
	padding: 32px 28px;
}

.zstack_healthcare_proof-title {
	font-size: 17px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--t1);
	line-height: 1.3;
	margin-bottom: 28px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--border);
}

.zstack_healthcare_proof-items {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.zstack_healthcare_proof-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.zstack_healthcare_proof-dot {
	width: 2px;
	height: 20px;
	background: var(--blue);
	border-radius: 2px;
	flex-shrink: 0;
	margin-top: 3px;
}

.zstack_healthcare_proof-text {
	font-size: 15px;
	font-weight: 600;
	color: var(--t2);
	line-height: 1.5;
}

/* ─── Responsive ───────────────────────────────────────── */
@media (max-width: 960px) {

	.zstack_healthcare_hero-inner,
	.zstack_healthcare_uc-layout {
		grid-template-columns: 1fr;
	}

	.zstack_healthcare_bene-cols,
	.zstack_healthcare_bene-b-cols,
	.zstack_healthcare_quote-row,
	.zstack_healthcare_res-row,
	.zstack_healthcare_gs-cards {
		grid-template-columns: 1fr;
	}

	.zstack_healthcare_sf-top {
		grid-template-columns: 1fr;
		gap: 40px;
	}

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

	.nav-links {
		display: none;
	}
}

/* ═══════════ zstack-index.html ═══════════ */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--bg: #ffffff;
	--bg-alt: #f8fafc;
	--bg-card: #ffffff;
	--blue: #00579c;
	--blue-dim: #004a85;
	--blue-glow: rgba(0, 87, 156, 0.22);
	--blue-faint: rgba(0, 87, 156, 0.07);
	--blue-mid: rgba(0, 87, 156, 0.14);
	--orange: #e65100;
	--orange-dim: rgba(230, 81, 0, 0.10);
	--teal: #00897b;
	--teal-dim: rgba(0, 137, 123, 0.10);
	--green: #2e7d32;
	--border: rgba(148, 163, 184, 0.28);
	--border-hi: rgba(0, 87, 156, 0.20);
	--t1: #0f172a;
	--t2: #475569;
	--t3: #94a3b8;
	--font: 'Inter', system-ui, sans-serif;
	--mono: 'JetBrains Mono', monospace;
	--radius: 14px;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font);
	background: var(--bg);
	color: var(--t1);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	display: block;
	max-width: 100%;
}

.wrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 32px;
}

/* ── Utilities ── */
.zstack_index_lbl {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	color: var(--blue);
	background: var(--blue-faint);
	border: 1px solid var(--border-hi);
	border-radius: 100px;
	padding: 4px 14px;
}

.zstack_index_lbl--orange {
	color: var(--orange);
	background: var(--orange-dim);
	border-color: rgba(230, 81, 0, 0.25);
}

.zstack_index_h2 {
	font-size: clamp(28px, 3.8vw, 46px);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.1;
}

.zstack_index_h2 em {
	font-style: normal;
	color: var(--blue);
}

.zstack_index_sec-sub {
	font-size: 17px;
	color: var(--t2);
	line-height: 1.72;
	margin-top: 14px;
}

.zstack_index_btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font);
	font-weight: 700;
	border-radius: 8px;
	border: none;
	cursor: pointer;
	transition: all .2s;
	text-decoration: none;
}

.zstack_index_btn--lg {
	padding: 14px 28px;
	font-size: 16px;
}

.zstack_index_btn--md {
	padding: 11px 22px;
	font-size: 15px;
}

.zstack_index_btn--primary {
	background: var(--blue);
	color: #fff;
}

.zstack_index_btn--primary:hover {
	background: var(--blue-dim);
	box-shadow: 0 0 28px 8px var(--blue-glow);
}

.zstack_index_btn--ghost {
	background: transparent;
	color: var(--t1);
	border: 1.5px solid var(--border);
}

.zstack_index_btn--ghost:hover {
	border-color: var(--blue);
	color: var(--blue);
}

.zstack_index_btn--outline-white {
	background: transparent;
	color: #fff;
	border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.zstack_index_btn--outline-white:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: #fff;
}

.zstack_index_fade {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .6s ease, transform .6s ease;
}

.zstack_index_fade.zstack_index_in {
	opacity: 1;
	transform: none;
}

/* ══════════════════════════════════════════
       NAV
    ══════════════════════════════════════════ */
.nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 500;
	height: 100px;
	background: rgba(255, 255, 255, 0.97);
	backdrop-filter: blur(20px) saturate(160%);
	border-bottom: 1px solid var(--border);
	font-family: var(--font);
}

.nav-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 32px;
	display: flex;
	align-items: center;
}
.langua{
	flex:1;
	text-align: right;
	line-height: 38px;
}
.langua a{
	color: #999;
	margin-left: 20px;
	font-size: 14px;
}
.nav-logo {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 18px;
	font-weight: 800;
	margin-bottom: 8px;
	letter-spacing: -0.04em;
	color: var(--t1);
	margin-right: 32px;
	flex-shrink: 0;
}
.nav-logo img{
    width: 100px;
}
.nav-logo-mark {
	width: 30px;
	height: 30px;
	border-radius: 6px;
	background: linear-gradient(135deg, var(--blue), var(--blue-dim));
	display: grid;
	place-items: center;
	font-size: 15px;
	font-weight: 900;
	color: #fff;
}

.nav-links {
	display: flex;
	align-items: stretch;
	flex: 1;
}

.nav-item {
	position: relative;
	display: flex;
	align-items: center;
}

.nav-link {
	display: flex;
	align-items: center;
	gap: 5px;
	padding: 0 14px;
	height: 62px;
	font-size: 14px;
	font-weight: 500;
	color: var(--t2);
	cursor: pointer;
	white-space: nowrap;
	transition: color .15s;
	user-select: none;
}

.nav-link:hover,
.nav-item.open>.nav-link {
	color: var(--blue);
}

.nav-link svg {
	transition: transform .2s;
	flex-shrink: 0;
}

.nav-item.open>.nav-link svg {
	transform: rotate(180deg);
}

.nav-item.open>.nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 14px;
	right: 14px;
	height: 2px;
	background: var(--blue);
	border-radius: 2px 2px 0 0;
}

.nav-right {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-left: auto;
	flex-shrink: 0;
}

.nav-search {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 7px 14px;
	border-radius: 7px;
	background: var(--bg-alt);
	border: 1px solid var(--border);
	font-size: 13px;
	color: var(--t3);
	cursor: pointer;
	transition: border-color .15s;
}

.nav-search:hover {
	border-color: var(--border-hi);
	color: var(--t2);
}

/* 展开前：与原版「图标 + Search...」一致；展开后加宽、仅显示输入框 */
.nav-search--expand {
	width: max-content;
	max-width: 100%;
	transition: min-width 0.28s ease, border-color .2s, box-shadow .2s;
}

.nav-search--expand.is-open {
	min-width: min(240px, 40vw);
	max-width: min(360px, 50vw);
	border-color: var(--border-hi);
	box-shadow: 0 0 0 3px rgba(0, 87, 156, 0.08);
}

.nav-search--expand .nav-search-trigger {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
	margin: 0;
	padding: 0;
	border: none;
	background: transparent;
	cursor: pointer;
	font: inherit;
	font-size: 13px;
	color: inherit;
	text-align: left;
}

.nav-search--expand.is-open .nav-search-trigger {
	display: none;
}

.nav-search--expand .nav-search-input {
	display: none;
	flex: 1 1 0;
	min-width: 0;
	border: none;
	background: transparent;
	font-size: 13px;
	color: var(--t1);
	font-family: var(--font);
	padding: 0;
	outline: none;
}

.nav-search--expand.is-open .nav-search-input {
	display: block;
	flex: 1 1 0;
}

.nav-search--expand .nav-search-input::placeholder {
	color: var(--t3);
}

.nav-lang {
	display: flex;
	align-items: center;
	gap: 5px;
	position: relative;
	padding: 7px 12px;
	border-radius: 7px;
	font-size: 13px;
	font-weight: 600;
	color: var(--t2);
	cursor: pointer;
	transition: color .15s, border-color .15s;
	border: 1px solid transparent;
}

.nav-lang:hover,
.nav-lang:focus-within {
	color: var(--blue);
	border-color: var(--border);
}

.nav-lang-label {
	white-space: nowrap;
}

.nav-lang-chevron {
	flex-shrink: 0;
	transition: transform .2s;
}

.nav-lang:hover .nav-lang-chevron,
.nav-lang:focus-within .nav-lang-chevron {
	transform: rotate(180deg);
}

/* 触发区与菜单之间的悬停桥接，避免移入菜单时闪烁关闭 */
.nav-lang::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	height: 10px;
}

.nav-lang-dropdown {
	position: absolute;
	top: calc(100% + 6px);
	right: 0;
	min-width: 168px;
	padding: 8px;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 10px;
	box-shadow: 0 16px 40px -8px rgba(0, 87, 156, 0.12);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(-4px);
	transition: opacity .18s ease, transform .18s ease, visibility .18s;
	z-index: 450;
}

.nav-lang:hover .nav-lang-dropdown,
.nav-lang:focus-within .nav-lang-dropdown {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.nav-lang-item {
	display: block;
	padding: 9px 12px;
	border-radius: 7px;
	font-size: 13.5px;
	font-weight: 500;
	color: var(--t2);
	text-decoration: none;
	transition: background .15s, color .15s;
}

.nav-lang-item:hover {
	background: var(--blue-faint);
	color: var(--blue);
}
.nav-contact-btn {
	padding: 8px 18px;
	border-radius: 7px;
	background: var(--blue);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	transition: background .15s;
	border: none;
	font-family: var(--font);
}

.nav-contact-btn:hover {
	background: var(--blue-dim);
}

/* ── Mega menu ── */
/* Full-width alignment: positioned relative to viewport, content constrained to 1280px */
.mega {
	position: fixed;
	top: 100px;
	left: 0;
	right: 0;
	background: #fff;
	border-bottom: 1px solid var(--border);
	box-shadow: 0 24px 64px -12px rgba(0, 87, 156, 0.10), 0 4px 16px -4px rgba(0, 0, 0, 0.06);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(-6px);
	transition: opacity .2s ease, transform .2s ease, visibility .2s;
	z-index: 400;
}

.nav-item.open .mega {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.mega-wrap {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 32px;
}

.mega-body {
	display: flex;
	align-items: stretch;
}

.mega-main {
	flex: 1;
	padding: 28px 0;
	display: flex;
	gap: 32px;
}

.mega-sidebar {
	width: 220px;
	flex-shrink: 0;
	background: var(--bg-alt);
	border-left: 1px solid var(--border);
	padding: 28px 22px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.mega-col {
	flex: 1;
	min-width: 0;
}

.mega-col+.mega-col {
	padding-left: 28px;
	border-left: 1px solid var(--border);
}

.mega-group {
	margin-bottom: 6px;
}

.mega-group:last-child {
	margin-bottom: 0;
}

.mega-group-title {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--t3);
	font-family: var(--mono);
	margin-bottom: 12px;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--border);
}

.mega-group-desc {
	font-size: 12px;
	color: var(--t3);
	margin-bottom: 12px;
	line-height: 1.5;
	font-style: italic;
}

.mega-product {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 10px;
	border-radius: 8px;
	transition: background .15s;
	cursor: pointer;
	margin-bottom: 2px;
}

.mega-product:hover {
	background: var(--blue-faint);
}

.mega-product-icon {
	width: 34px;
	height: 34px;
	border-radius: 7px;
	flex-shrink: 0;
	background: var(--blue-faint);
	border: 1px solid var(--border-hi);
	display: grid;
	place-items: center;
	font-size: 11px;
	font-weight: 800;
	color: var(--blue);
	font-family: var(--mono);
}

.mega-product-name {
	font-size: 13.5px;
	font-weight: 700;
	color: var(--t1);
	margin-bottom: 2px;
}

.mega-product-sub {
	font-size: 11.5px;
	color: var(--t3);
	line-height: 1.45;
}

.mega-product-tags {
	display: flex;
	gap: 5px;
	flex-wrap: wrap;
	margin-top: 5px;
}

.mega-product-tag {
	font-size: 10px;
	font-weight: 600;
	color: var(--blue);
	background: var(--blue-faint);
	border: 1px solid var(--border-hi);
	border-radius: 4px;
	padding: 1px 7px;
	font-family: var(--mono);
	cursor: pointer;
	transition: background .15s;
}

.mega-product-tag:hover {
	background: var(--blue-mid);
}

.mega-link {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 7px 10px;
	border-radius: 7px;
	font-size: 13.5px;
	color: var(--t2);
	font-weight: 500;
	transition: background .15s, color .15s;
	cursor: pointer;
	margin-bottom: 1px;
}

.mega-link:hover {
	background: var(--blue-faint);
	color: var(--blue);
}

.mega-link::before {
	content: '';
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--border-hi);
	flex-shrink: 0;
	transition: background .15s;
}

.mega-link:hover::before {
	background: var(--blue);
}

.mega-industry-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1px;
}

.mega-industry-link {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 7px 8px;
	border-radius: 6px;
	font-size: 13px;
	color: var(--t2);
	font-weight: 500;
	transition: background .15s, color .15s;
	cursor: pointer;
}

.mega-industry-link:hover {
	background: var(--blue-faint);
	color: var(--blue);
}

.mega-industry-link span {
	font-size: 14px;
}

.mega-platform-bar {
	background: linear-gradient(90deg, var(--blue-faint), rgba(0, 137, 123, 0.05));
	border-top: 1px solid var(--border);
	padding: 12px 0;
	display: flex;
	align-items: center;
	gap: 16px;
}

.mega-platform-label {
	font-size: 11px;
	font-weight: 700;
	color: var(--t3);
	font-family: var(--mono);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.mega-platform-text {
	font-size: 12.5px;
	color: var(--t2);
	flex: 1;
}

.mega-platform-text strong {
	color: var(--t1);
}

/* Sidebar */
.sidebar-title {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--t3);
	font-family: var(--mono);
	margin-bottom: 14px;
}

.sidebar-card {
	background: #fff;
	border: 1px solid var(--border-hi);
	border-radius: 10px;
	padding: 16px;
	position: relative;
	overflow: hidden;
}

.sidebar-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--blue), var(--teal));
}

.sidebar-card-name {
	font-size: 13px;
	font-weight: 700;
	color: var(--t1);
	margin-bottom: 5px;
	line-height: 1.4;
}

.sidebar-card-desc {
	font-size: 11.5px;
	color: var(--t3);
	margin-bottom: 14px;
	line-height: 1.5;
}

.sidebar-card-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 700;
	color: #fff;
	background: var(--blue);
	padding: 7px 14px;
	border-radius: 6px;
	transition: background .15s;
	width: 100%;
	justify-content: center;
}

.sidebar-card-btn:hover {
	background: var(--blue-dim);
}

.sidebar-card-link {
	display: block;
	margin-top: 8px;
	text-align: center;
	font-size: 11.5px;
	color: var(--blue);
	font-weight: 600;
}

.sidebar-card-link:hover {
	text-decoration: underline;
}

/* Simple dropdown */
.dropdown {
	position: fixed;
	top: 100px;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 0 0 12px 12px;
	box-shadow: 0 16px 40px -8px rgba(0, 87, 156, 0.10);
	padding: 10px 8px;
	min-width: 200px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(-6px);
	transition: opacity .2s, transform .2s, visibility .2s;
	z-index: 400;
}

.nav-item.open .dropdown {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

.dropdown-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 9px 12px;
	border-radius: 7px;
	font-size: 13.5px;
	color: var(--t2);
	font-weight: 500;
	transition: background .15s, color .15s;
	cursor: pointer;
}

.dropdown-item:hover {
	background: var(--blue-faint);
	color: var(--blue);
}

/* Backdrop */
.nav-backdrop {
	position: fixed;
	inset: 0;
	top: 100px;
	z-index: 390;
	display: none;
}

.nav-backdrop.active {
	display: block;
}

/* ── Mobile drawer navigation ── */
.nav-mobile-actions {
	display: none;
	align-items: center;
	gap: 10px;
	margin-left: auto;
	flex-shrink: 0;
}

.nav-mobile-user,
.nav-mobile-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: none;
	background: transparent;
	color: var(--blue);
	cursor: pointer;
	text-decoration: none;
	-webkit-tap-highlight-color: transparent;
}

.nav-mobile-overlay {
	position: fixed;
	inset: 0;
	z-index: 600;
	display: flex;
	align-items: stretch;
	background: rgba(15, 23, 42, 0.35);
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.28s ease, visibility 0.28s ease;
}

.nav-mobile-overlay.is-open {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}

.nav-mobile-overlay-close {
	position: absolute;
	top: max(12px, env(safe-area-inset-top));
	left: max(12px, env(safe-area-inset-left));
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: none;
	background: transparent;
	color: var(--blue);
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}

.nav-mobile-drawer {
	flex: 1;
	margin-left: 52px;
	max-width: calc(100% - 52px);
	background: #fff;
	box-shadow: -4px 0 24px rgba(15, 23, 42, 0.12);
	display: flex;
	flex-direction: column;
	min-height: 0;
	transform: translateX(100%);
	transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-mobile-overlay.is-open .nav-mobile-drawer {
	transform: translateX(0);
}

.nav-mobile-viewport {
	flex: 1;
	overflow: hidden;
	min-height: 0;
}

.nav-mobile-track {
	position: relative;
	height: 100%;
}

.nav-mobile-panel {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	background: #fff;
	transform: translateX(100%);
	transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 1;
}

.nav-mobile-panel.is-current {
	transform: translateX(0);
	z-index: 3;
}

.nav-mobile-panel.is-behind {
	transform: translateX(-18%);
	z-index: 2;
}

.nav-mobile-panel:not([data-panel="root"]) {
	background: #f7f8fa;
}

.nav-mobile-panel-head {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 12px 48px;
	border-bottom: 1px solid #e5e7eb;
	flex-shrink: 0;
}

.nav-mobile-panel-title {
	font-size: 15px;
	font-weight: 500;
	color: #9ca3af;
	letter-spacing: 0.02em;
}

.nav-mobile-back {
	position: absolute;
	left: max(8px, env(safe-area-inset-left));
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: none;
	background: transparent;
	font-size: 28px;
	line-height: 1;
	font-weight: 300;
	color: #9ca3af;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}

.nav-mobile-search {
	padding: 14px 16px;
	border-bottom: 1px solid #e5e7eb;
	flex-shrink: 0;
}

.nav-mobile-search-wrap {
	position: relative;
}

.nav-mobile-search-input {
	width: 100%;
	box-sizing: border-box;
	height: 44px;
	padding: 0 44px 0 18px;
	border: 1px solid #e5e7eb;
	border-radius: 999px;
	font-size: 15px;
	font-family: var(--font);
	color: var(--t1);
	background: #fff;
	outline: none;
}

.nav-mobile-search-input::placeholder {
	color: #9ca3af;
}

.nav-mobile-search-input:focus {
	border-color: var(--border-hi);
	box-shadow: 0 0 0 3px rgba(0, 87, 156, 0.08);
}

.nav-mobile-search-icon {
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	color: #9ca3af;
	pointer-events: none;
	display: flex;
}

.nav-mobile-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-mobile-menu li {
	border-bottom: 1px solid #e5e7eb;
}

.nav-mobile-menu-btn,
.nav-mobile-menu-link {
	display: flex;
	align-items: stretch;
	width: 100%;
	min-height: 52px;
	margin: 0;
	padding: 0;
	border: none;
	background: transparent;
	font-family: var(--font);
	font-size: 15px;
	font-weight: 500;
	color: #374151;
	text-decoration: none;
	text-align: left;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	transition: background 0.15s;
}

.nav-mobile-menu-btn > span:first-child {
	flex: 1;
	display: flex;
	align-items: center;
	padding: 14px 16px;
	line-height: 1.35;
}

.nav-mobile-menu-link {
	align-items: center;
	padding: 14px 16px;
	line-height: 1.35;
}

.nav-mobile-menu-go {
	flex: 0 0 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-left: 1px solid #e5e7eb;
	font-size: 20px;
	font-weight: 400;
	color: #9ca3af;
	line-height: 1;
}

.nav-mobile-menu-btn:active,
.nav-mobile-menu-link:active,
.nav-mobile-panel.is-current .nav-mobile-menu-btn:active {
	background: #f3f4f6;
}

body.nav-mobile-open {
	overflow: hidden;
}

/* ══════════════════════════════════════════
       HERO
    ══════════════════════════════════════════ */
.zstack_index_hero {
	min-height: 100vh;
	/* .nav 固定约 100px，避免标题区被遮挡 */
	padding-top: 56px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	overflow: hidden;
	background: linear-gradient(180deg, #f0f6ff 0%, #ffffff 60%);
}

.zstack_index_hero-grid {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image: linear-gradient(rgba(0, 87, 156, 0.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 87, 156, 0.06) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 20%, transparent 70%);
}

.zstack_index_hero-glow {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 55% 45% at 20% 60%, rgba(0, 87, 156, 0.06) 0%, transparent 65%),
		radial-gradient(ellipse 50% 40% at 80% 40%, rgba(230, 81, 0, 0.04) 0%, transparent 65%);
}

.zstack_index_hero-body {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: 0 32px 60px;
}

.zstack_index_hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--orange);
	background: var(--orange-dim);
	border: 1px solid rgba(230, 81, 0, 0.22);
	border-radius: 100px;
	padding: 6px 16px;
	margin-bottom: 32px;
}

.zstack_index_hero-badge-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--orange);
	animation: pulse 2s infinite;
}

@keyframes pulse {

	0%,
	100% {
		opacity: 1;
		transform: scale(1)
	}

	50% {
		opacity: .6;
		transform: scale(1.35)
	}
}

.zstack_index_hero-title {
	font-size: clamp(28px, 4.6vw, 66px);
	font-weight: 900;
	letter-spacing: -0.04em;
	line-height: 1.02;
	max-width: 1100px;
	margin: 0 auto 24px;
	white-space: nowrap;
}

.zstack_index_hero-title .zstack_index_line1 {
	display: block;
	color: var(--t1);
}

.zstack_index_hero-title .zstack_index_line2 {
	display: block;
	background: linear-gradient(125deg, var(--blue) 0%, #0277bd 60%, var(--teal) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.zstack_index_hero-sub {
	font-size: clamp(16px, 1.8vw, 19px);
	color: var(--t2);
	line-height: 1.72;
	max-width: 600px;
	margin: 0 auto 44px;
}

.zstack_index_hero-actions {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 64px;
}

/* ── Hero Arch: dark tech style ── */
/* arch intro text above the diagram box */
.zstack_index_arch-intro {
	max-width: 1100px;
	margin: 0 auto 20px;
	text-align: center;
}

.zstack_index_arch-intro-head {
	font-size: clamp(20px, 2.4vw, 28px);
	font-weight: 800;
	letter-spacing: -0.025em;
	color: var(--t1);
	margin-bottom: 8px;
}

.zstack_index_arch-intro-sub {
	font-size: 16px;
	color: var(--t2);
	line-height: 1.6;
}

.zstack_index_hero-arch {
	max-width: 1100px;
	margin: 0 auto;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 32px 80px -16px rgba(14, 52, 148, 0.28), 0 8px 28px -8px rgba(0, 0, 0, 0.12);
}

.zstack_index_hero-arch-inner {
	padding: 32px 36px;
	background: linear-gradient(140deg, #003a6e 0%, #00579c 50%, #004a85 100%);
	position: relative;
	overflow: hidden;
}

/* dot-grid overlay — bright on blue */
.zstack_index_hero-arch-inner::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image: radial-gradient(rgba(255, 255, 255, 0.10) 1px, transparent 1px);
	background-size: 26px 26px;
	mask-image: radial-gradient(ellipse 95% 85% at 50% 50%, black 20%, transparent 100%);
}

/* ambient glow — light cyan left, electric blue right */
.zstack_index_hero-arch-inner::after {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 55% 65% at 5% 50%, rgba(255, 255, 255, 0.07) 0%, transparent 60%),
		radial-gradient(ellipse 45% 55% at 95% 50%, rgba(100, 200, 255, 0.08) 0%, transparent 60%),
		radial-gradient(ellipse 50% 40% at 50% 100%, rgba(0, 40, 120, 0.40) 0%, transparent 60%);
}

.zstack_index_arch-layer-label {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.50);
	font-family: var(--mono);
	margin-bottom: 18px;
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

.zstack_index_arch-layer-label::before,
.zstack_index_arch-layer-label::after {
	content: '';
	flex: 1;
	height: 1px;
	background: rgba(255, 255, 255, 0.14);
}

/* ── 4 product cards ── */
.zstack_index_arch-prod-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
	margin-bottom: 14px;
	position: relative;
	z-index: 1;
}

.zstack_index_arch-prod-col {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 22px 20px 18px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	text-decoration: none;
	cursor: pointer;
	transition: background .25s, border-color .25s, transform .28s cubic-bezier(.22, .68, 0, 1.2), box-shadow .28s;
	position: relative;
	overflow: hidden;
	min-height: 130px;
}

/* top accent line — hidden until hover */
.zstack_index_arch-prod-col::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	opacity: 0;
	transition: opacity .25s;
}

.zstack_index_arch-prod-col:nth-child(1)::before {
	background: linear-gradient(90deg, #00579c, #38b2ff);
}

.zstack_index_arch-prod-col:nth-child(2)::before {
	background: linear-gradient(90deg, #00897b, #38d4c8);
}

.zstack_index_arch-prod-col:nth-child(3)::before {
	background: linear-gradient(90deg, #374d7a, #6a88c0);
}

.zstack_index_arch-prod-col:nth-child(4)::before {
	background: linear-gradient(90deg, #e65100, #ff9a3c);
}

/* shine sweep on hover */
.zstack_index_arch-prod-col::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 60%;
	height: 100%;
	background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.04) 50%, transparent 70%);
	transition: left .5s ease;
}

.zstack_index_arch-prod-col:hover::after {
	left: 140%;
}

.zstack_index_arch-prod-col:hover {
	background: rgba(255, 255, 255, 0.16);
	border-color: rgba(255, 255, 255, 0.32);
	transform: translateY(-5px);
}

.zstack_index_arch-prod-col:nth-child(1):hover {
	box-shadow: 0 20px 48px -10px rgba(56, 178, 255, 0.35);
}

.zstack_index_arch-prod-col:nth-child(2):hover {
	box-shadow: 0 20px 48px -10px rgba(56, 212, 200, 0.35);
}

.zstack_index_arch-prod-col:nth-child(3):hover {
	box-shadow: 0 20px 48px -10px rgba(255, 255, 255, 0.20);
}

.zstack_index_arch-prod-col:nth-child(4):hover {
	box-shadow: 0 20px 48px -10px rgba(255, 154, 60, 0.40);
}

.zstack_index_arch-prod-col:hover::before {
	opacity: 1;
}

/* badge + name */
.zstack_index_arch-prod-badge {
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.06em;
	color: #fff;
	border-radius: 6px;
	padding: 4px 11px;
	display: inline-block;
	margin-bottom: 12px;
	font-family: var(--mono);
	line-height: 1;
}

.zstack_index_arch-prod-name {
	font-size: 13px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.78);
	line-height: 1.4;
	flex: 1;
}

/* CTA row */
.zstack_index_arch-prod-cta {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-top: 18px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.30);
	font-family: var(--mono);
	transition: color .2s, gap .2s;
}

.zstack_index_arch-prod-cta svg {
	transition: transform .2s;
}

.zstack_index_arch-prod-col:hover .zstack_index_arch-prod-cta {
	color: rgba(255, 255, 255, 0.75);
	gap: 8px;
}

.zstack_index_arch-prod-col:hover .zstack_index_arch-prod-cta svg {
	transform: translateX(3px);
}

/* ── Cross-product modules ── */
.zstack_index_arch-cross {
	margin-top: 12px;
	position: relative;
	z-index: 1;
}

.zstack_index_arch-cross-lbl {
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.25);
	font-family: var(--mono);
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.zstack_index_arch-cross-lbl::before,
.zstack_index_arch-cross-lbl::after {
	content: '';
	flex: 1;
	height: 1px;
	background: rgba(255, 255, 255, 0.06);
}

.zstack_index_arch-cross-grid {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	gap: 6px;
}

.zstack_index_arch-cross-item {
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 7px;
	padding: 8px 6px;
	text-align: center;
	cursor: pointer;
	text-decoration: none;
	transition: background .18s, border-color .18s, transform .18s;
}

.zstack_index_arch-cross-item:hover {
	background: rgba(255, 255, 255, 0.18);
	border-color: rgba(255, 255, 255, 0.35);
	transform: translateY(-2px);
}

.zstack_index_arch-cross-name {
	font-size: 10px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.72);
	font-family: var(--mono);
	line-height: 1.2;
}

.zstack_index_arch-cross-func {
	font-size: 9px;
	color: rgba(255, 255, 255, 0.40);
	margin-top: 3px;
	line-height: 1.3;
}

.zstack_index_arch-cross-item:hover .zstack_index_arch-cross-name {
	color: #fff;
}

.zstack_index_arch-cross-item:hover .zstack_index_arch-cross-func {
	color: rgba(255, 255, 255, 0.70);
}

/* Recognition bar */
.zstack_index_recog-bar {
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	padding: 28px 0;
	background: var(--bg);
}

.zstack_index_recog-bar-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 48px;
	flex-wrap: wrap;
}

.zstack_index_recog-label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--t3);
}

.zstack_index_recog-logos {
	display: flex;
	align-items: center;
	gap: 36px;
	flex-wrap: wrap;
}

.zstack_index_recog-logo {
	font-size: 14px;
	font-weight: 700;
	color: var(--t3);
	transition: color .2s;
	cursor: default;
	letter-spacing: -0.01em;
}

.zstack_index_recog-logo:hover {
	color: var(--blue);
}

.zstack_index_recog-logo sup {
	font-size: 10px;
	font-weight: 600;
}

/* ══════════════════════════════════════════
       SOLUTIONS
    ══════════════════════════════════════════ */
.zstack_index_solutions-section {
	padding: 120px 0;
	background: var(--bg-alt);
}

.zstack_index_sec-header {
	margin-bottom: 56px;
	text-align: center;
}

.zstack_index_sec-header .zstack_index_sec-sub {
	/*max-width: 600px;*/
	margin-left: auto;
	margin-right: auto;
}

/* 段落需随屏宽自动换行（勿用 nowrap 强制一行） */
.zstack_index_sec-sub--fluid {
	white-space: normal;
	max-width: min(920px, 100%);
	margin-left: auto;
	margin-right: auto;
}

.zstack_index_sol-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.zstack_index_sol-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 32px 28px;
	position: relative;
	overflow: hidden;
	transition: border-color .2s, transform .2s, box-shadow .2s;
}

.zstack_index_sol-card:hover {
	border-color: var(--border-hi);
	transform: translateY(-3px);
	box-shadow: 0 12px 32px -8px rgba(0, 87, 156, 0.10);
}

.zstack_index_sol-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
}

.zstack_index_sol-card:nth-child(1)::before {
	background: linear-gradient(90deg, var(--blue), #0277bd);
}

.zstack_index_sol-card:nth-child(2)::before {
	background: linear-gradient(90deg, var(--teal), var(--blue));
}

.zstack_index_sol-card:nth-child(3)::before {
	background: linear-gradient(90deg, var(--orange), #ff8a65);
}

.zstack_index_sol-card:nth-child(4)::before {
	background: linear-gradient(90deg, #0277bd, var(--teal));
}

.zstack_index_sol-card:nth-child(5)::before {
	background: linear-gradient(90deg, var(--blue-dim), var(--blue));
}

.zstack_index_sol-card:nth-child(6)::before {
	background: linear-gradient(90deg, var(--teal), #26a69a);
}

.zstack_index_sol-popular {
	position: absolute;
	top: 16px;
	right: 16px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	background: var(--blue);
	color: #fff;
	border-radius: 4px;
	padding: 3px 8px;
	font-family: var(--mono);
}

.zstack_index_sol-icon {
	font-size: 26px;
	margin-bottom: 16px;
}

.zstack_index_sol-title {
	font-size: 17px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--t1);
	margin-bottom: 10px;
}

.zstack_index_sol-txt {
	font-size: 13.5px;
	color: var(--t2);
	line-height: 1.68;
	margin-bottom: 20px;
}

.zstack_index_sol-link {
	font-size: 13px;
	font-weight: 600;
	color: var(--blue);
	display: flex;
	align-items: center;
	gap: 5px;
}

.zstack_index_sol-link svg {
	transition: transform .2s;
}

.zstack_index_sol-card:hover .zstack_index_sol-link svg {
	transform: translateX(3px);
}

/* ══════════════════════════════════════════
       PRODUCT LINES STRIP
    ══════════════════════════════════════════ */
.zstack_index_products-strip {
	padding: 64px 0;
	background: var(--bg);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

.zstack_index_products-strip-label {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--t3);
	margin-bottom: 24px;
	text-align: center;
}

.zstack_index_prod-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.zstack_index_prod-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 28px 24px;
	display: flex;
	align-items: center;
	gap: 18px;
	transition: border-color .2s, transform .2s, box-shadow .2s;
	cursor: pointer;
}

.zstack_index_prod-card:hover {
	border-color: var(--border-hi);
	transform: translateY(-3px);
	box-shadow: 0 10px 28px -6px rgba(0, 87, 156, 0.12);
}

.zstack_index_prod-tag {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.08em;
	background: var(--blue);
	color: #fff;
	border-radius: 6px;
	padding: 6px 10px;
	font-family: var(--mono);
	flex-shrink: 0;
	line-height: 1;
}

.zstack_index_prod-tag--teal {
	background: var(--teal);
}

.zstack_index_prod-tag--orange {
	background: var(--orange);
}

.zstack_index_prod-tag--dark {
	background: #1a2744;
}

.zstack_index_prod-name {
	font-size: 14px;
	font-weight: 700;
	color: var(--t1);
	margin-bottom: 2px;
}

.zstack_index_prod-desc {
	font-size: 12px;
	color: var(--t3);
}

.zstack_index_prod-card-arrow {
	margin-left: auto;
	color: var(--t3);
	flex-shrink: 0;
	transition: color .2s, transform .2s;
}

.zstack_index_prod-card:hover .zstack_index_prod-card-arrow {
	color: var(--blue);
	transform: translateX(3px);
}

/* ══════════════════════════════════════════
       WHY ZSTACK — 5 horizontal pillars + CTA below
    ══════════════════════════════════════════ */
.zstack_index_why-section {
	padding: 120px 0;
	background: var(--bg);
}

.zstack_index_why-pillars {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
	margin-top: 56px;
}

.zstack_index_why-pill {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 28px 22px;
	position: relative;
	overflow: hidden;
	transition: border-color .2s, transform .2s, box-shadow .2s;
}

.zstack_index_why-pill:hover {
	border-color: var(--border-hi);
	transform: translateY(-4px);
	box-shadow: 0 12px 28px -6px rgba(0, 87, 156, 0.10);
}

.zstack_index_why-pill::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
}

.zstack_index_why-pill:nth-child(1)::before {
	background: linear-gradient(90deg, var(--blue), #0277bd);
}

.zstack_index_why-pill:nth-child(2)::before {
	background: linear-gradient(90deg, var(--teal), var(--blue));
}

.zstack_index_why-pill:nth-child(3)::before {
	background: linear-gradient(90deg, #0277bd, var(--teal));
}

.zstack_index_why-pill:nth-child(4)::before {
	background: linear-gradient(90deg, var(--orange), #ff8a65);
}

.zstack_index_why-pill:nth-child(5)::before {
	background: linear-gradient(90deg, var(--teal), #26a69a);
}

.zstack_index_why-pill-num {
	font-size: 11px;
	font-weight: 700;
	font-family: var(--mono);
	color: var(--blue);
	background: var(--blue-faint);
	border: 1px solid var(--border-hi);
	border-radius: 6px;
	padding: 3px 8px;
	display: inline-block;
	margin-bottom: 16px;
}

.zstack_index_why-pill-title {
	font-size: 17px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--t1);
	margin-bottom: 10px;
}

.zstack_index_why-pill-txt {
	font-size: 13px;
	color: var(--t2);
	line-height: 1.65;
}

/* CTA below pillars */
.zstack_index_why-cta {
	margin-top: 48px;
}

.zstack_index_why-cta-box {
	background: var(--blue);
	border-radius: 20px;
	padding: 52px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 48px;
	box-shadow: 0 24px 48px -8px var(--blue-glow);
}

.zstack_index_why-cta-left {}

.zstack_index_why-cta-title {
	font-size: 26px;
	font-weight: 800;
	letter-spacing: -0.03em;
	margin-bottom: 10px;
}

.zstack_index_why-cta-sub {
	font-size: 15px;
	opacity: .82;
	line-height: 1.65;
	max-width: 480px;
}

.zstack_index_why-stat-row {
	display: flex;
	gap: 20px;
}

.zstack_index_why-stat {
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 12px;
	padding: 18px 24px;
	text-align: center;
}

.zstack_index_why-stat-n {
	font-size: 28px;
	font-weight: 900;
	letter-spacing: -0.04em;
	line-height: 1;
	color: #fff;
}

.zstack_index_why-stat-l {
	font-size: 11px;
	opacity: .72;
	margin-top: 5px;
	color: #fff;
}

/* ══════════════════════════════════════════
       RECOGNITION
    ══════════════════════════════════════════ */
.zstack_index_recognition-section {
	padding: 120px 0;
	background: var(--bg-alt);
}

.zstack_index_recog-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-top: 56px;
}

.zstack_index_recog-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 36px 32px;
	position: relative;
	overflow: hidden;
	transition: border-color .2s;
}

.zstack_index_recog-card:hover {
	border-color: var(--border-hi);
}

.zstack_index_recog-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--blue), var(--teal));
}

.zstack_index_recog-card-org {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--blue);
	font-family: var(--mono);
	margin-bottom: 10px;
}

.zstack_index_recog-card-title {
	font-size: 19px;
	font-weight: 700;
	color: var(--t1);
	margin-bottom: 8px;
	letter-spacing: -0.01em;
}

.zstack_index_recog-card-txt {
	font-size: 13.5px;
	color: var(--t2);
	line-height: 1.65;
}

.zstack_index_reviews-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-top: 20px;
}

.zstack_index_review-chip {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 10px;
	padding: 18px 16px;
	text-align: center;
	transition: border-color .2s;
}

.zstack_index_review-chip:hover {
	border-color: var(--border-hi);
}

.zstack_index_review-platform {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--t3);
	margin-bottom: 8px;
}

.zstack_index_review-score {
	font-size: 28px;
	font-weight: 900;
	color: var(--t1);
	letter-spacing: -0.03em;
	line-height: 1;
}

.zstack_index_review-stars {
	font-size: 14px;
	color: #f59e0b;
	margin: 4px 0;
}

.zstack_index_review-count {
	font-size: 11px;
	color: var(--t3);
	font-family: var(--mono);
}

/* ══════════════════════════════════════════
       CUSTOMERS
    ══════════════════════════════════════════ */
.zstack_index_customers-section {
	padding: 120px 0;
	background: var(--bg);
}

.zstack_index_customer-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin: 56px 0;
}

.zstack_index_cstat {
	text-align: center;
	padding: 32px 20px;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	transition: border-color .2s;
}

.zstack_index_cstat:hover {
	border-color: var(--border-hi);
}

.zstack_index_cstat-n {
	font-size: 42px;
	font-weight: 900;
	letter-spacing: -0.04em;
	color: var(--blue);
	line-height: 1;
	margin-bottom: 8px;
}

.zstack_index_cstat-l {
	font-size: 13px;
	color: var(--t3);
}

.zstack_index_marquee-wrap {
	overflow: hidden;
	position: relative;
	margin-bottom: 60px;
}

.zstack_index_marquee-wrap::before,
.zstack_index_marquee-wrap::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 120px;
	z-index: 2;
	pointer-events: none;
}

.zstack_index_marquee-wrap::before {
	left: 0;
	background: linear-gradient(to right, var(--bg), transparent);
}

.zstack_index_marquee-wrap::after {
	right: 0;
	background: linear-gradient(to left, var(--bg), transparent);
}

.zstack_index_marquee-track {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	width: max-content;
	gap: 0;
}

/* 单列 logo，两列首尾相接；gap 在两段内部，避免半截 gap 打断 -50% 对齐 */
.zstack_index_marquee-seq {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	gap: 28px;
	flex-shrink: 0;
}

.zstack_index_marquee-track:hover {
	animation-play-state: paused;
}

.zstack_index_marquee-row-1 {
	animation: zstack_index_marquee_scroll_left 18s linear infinite;
}

.zstack_index_marquee-row-2 {
	animation: zstack_index_marquee_scroll_right 24s linear infinite;
}

.zstack_index_marquee-row-3 {
	animation: zstack_index_marquee_scroll_left 13s linear infinite;
}

.zstack_index_marquee-track+.zstack_index_marquee-track {
	margin-top: 12px;
}

@keyframes zstack_index_marquee_scroll_left {
	from {
		transform: translate3d(0, 0, 0);
	}

	to {
		transform: translate3d(-50%, 0, 0);
	}
}

@keyframes zstack_index_marquee_scroll_right {
	from {
		transform: translate3d(-50%, 0, 0);
	}

	to {
		transform: translate3d(0, 0, 0);
	}
}

.zstack_index_logo-chip {
	background: var(--bg-card);
	/* border: 1px solid var(--border); */
	border-radius: 8px;
	font-size: 0;
	width: 165px;
	height: 100px;
	font-weight: 700;
	color: var(--t2);
	white-space: nowrap;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: color .2s, border-color .2s;
}

.zstack_index_logo-chip:hover {
	color: var(--blue);
	border-color: var(--border-hi);
}

.zstack_index_logo-chip img {
	max-width: min(136px, 88%);
	max-height: min(76px, 78%);
	width: auto;
	height: auto;
	object-fit: contain;
	display: block;
}

.zstack_index_testimonials {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.zstack_index_testi {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 32px 28px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	transition: border-color .2s, transform .2s;
}

.zstack_index_testi:hover {
	border-color: var(--border-hi);
	transform: translateY(-3px);
}

.zstack_index_testi-industry {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--blue);
	font-family: var(--mono);
}

.zstack_index_testi-quote {
	font-size: 14px;
	color: var(--t2);
	line-height: 1.72;
	flex: 1;
}

.zstack_index_testi-divider {
	height: 1px;
	background: var(--border);
}

.zstack_index_testi-org {
	display: flex;
	align-items: center;
	gap: 14px;
}

.zstack_index_testi-avatar {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	flex-shrink: 0;
	background: linear-gradient(135deg, var(--blue-faint), var(--teal-dim));
	display: grid;
	place-items: center;
	font-size: 16px;
	font-weight: 800;
	color: var(--blue);
}

.zstack_index_testi-name {
	font-size: 14px;
	font-weight: 700;
	color: var(--t1);
}

.zstack_index_testi-type {
	font-size: 12px;
	color: var(--t3);
}

.zstack_index_testi-link {
	font-size: 12px;
	font-weight: 600;
	color: var(--blue);
	display: flex;
	align-items: center;
	gap: 4px;
}

/* ══════════════════════════════════════════
       NEWS / NEWSROOM
    ══════════════════════════════════════════ */
.zstack_index_news-section {
	padding: 120px 0;
	background: var(--bg-alt);
}

.zstack_index_news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 56px;
}

.zstack_index_news-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: border-color .2s, transform .2s, box-shadow .2s;
}

.zstack_index_news-card:hover {
	border-color: var(--border-hi);
	transform: translateY(-5px);
	box-shadow: 0 20px 48px -10px rgba(0, 87, 156, 0.13);
}

.zstack_index_news-card-img {
	height: 196px;
	position: relative;
	overflow: hidden;
	flex-shrink: 0;
}

.zstack_index_news-card-overlay {
	position: absolute;
	inset: 0;
}

.zstack_index_news-card-img-icon {
	position: absolute;
	bottom: 16px;
	left: 20px;
	font-size: 11px;
	font-weight: 700;
	font-family: var(--mono);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.80);
}

.zstack_index_news-card-body {
	padding: 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.zstack_index_news-card-meta {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
}

.zstack_index_news-card-cat {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--blue);
	background: var(--blue-faint);
	border: 1px solid var(--border-hi);
	border-radius: 4px;
	padding: 2px 8px;
	font-family: var(--mono);
}

.zstack_index_news-card-cat--orange {
	color: var(--orange);
	background: var(--orange-dim);
	border-color: rgba(230, 81, 0, 0.25);
}

.zstack_index_news-card-cat--teal {
	color: var(--teal);
	background: var(--teal-dim);
	border-color: rgba(0, 137, 123, 0.25);
}

.zstack_index_news-card-date {
	font-size: 12px;
	color: var(--t3);
	font-family: var(--mono);
}

.zstack_index_news-card-title {
	font-size: 17px;
	font-weight: 700;
	color: var(--t1);
	line-height: 1.42;
	margin-bottom: 10px;
	letter-spacing: -0.01em;
	flex: 1;
}

.zstack_index_news-card-excerpt {
	font-size: 13.5px;
	color: var(--t2);
	line-height: 1.65;
	margin-bottom: 18px;
}

.zstack_index_news-card-link {
	font-size: 13px;
	font-weight: 600;
	color: var(--blue);
	display: flex;
	align-items: center;
	gap: 5px;
	transition: gap .2s;
}

.zstack_index_news-card:hover .zstack_index_news-card-link {
	gap: 8px;
}

.zstack_index_news-card-link svg {
	flex-shrink: 0;
}

/* Section sub-divider */
.zstack_index_news-divider {
	display: flex;
	align-items: center;
	gap: 16px;
	margin: 60px 0 36px;
}

.zstack_index_news-divider-line {
	flex: 1;
	height: 1px;
	background: var(--border);
}

.zstack_index_news-divider-lbl {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--t3);
	font-family: var(--mono);
	white-space: nowrap;
}

/* White paper cards */
.zstack_index_wp-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.zstack_index_wp-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 24px;
	display: flex;
	gap: 18px;
	align-items: flex-start;
	transition: border-color .2s, transform .2s;
	cursor: pointer;
}

.zstack_index_wp-card:hover {
	border-color: var(--border-hi);
	transform: translateY(-3px);
	box-shadow: 0 10px 28px -6px rgba(0, 87, 156, 0.09);
}

.zstack_index_wp-icon-box {
	width: 46px;
	height: 58px;
	border-radius: 8px;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	background: linear-gradient(135deg, var(--blue-faint), rgba(0, 137, 123, 0.05));
	border: 1px solid var(--border-hi);
}

.zstack_index_wp-lines {
	display: flex;
	flex-direction: column;
	gap: 3.5px;
}

.zstack_index_wp-line {
	height: 2px;
	border-radius: 1px;
	background: var(--blue);
}

.zstack_index_wp-line:nth-child(1) {
	width: 18px
}

.zstack_index_wp-line:nth-child(2) {
	width: 14px
}

.zstack_index_wp-line:nth-child(3) {
	width: 16px
}

.zstack_index_wp-lbl {
	font-size: 7.5px;
	font-weight: 800;
	color: var(--blue);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-family: var(--mono);
}

.zstack_index_wp-title {
	font-size: 15px;
	font-weight: 700;
	color: var(--t1);
	line-height: 1.42;
	margin-bottom: 8px;
}

.zstack_index_wp-desc {
	font-size: 12.5px;
	color: var(--t2);
	line-height: 1.6;
	margin-bottom: 12px;
}

.zstack_index_wp-dl {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 12.5px;
	font-weight: 600;
	color: var(--blue);
}

.zstack_index_news-cta-row {
	text-align: center;
	margin-top: 52px;
}

@media (max-width: 960px) {

	.zstack_index_news-grid,
	.zstack_index_wp-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 640px) {

	.zstack_index_news-grid,
	.zstack_index_wp-grid {
		grid-template-columns: 1fr;
	}
}

/* ══════════════════════════════════════════
       FINAL CTA
    ══════════════════════════════════════════ */
.zstack_index_cta-section {
	padding: 140px 0;
	position: relative;
	overflow: hidden;
	background: linear-gradient(160deg, #00579c 0%, #003a6e 55%, #1a2744 100%);
}

.zstack_index_cta-section::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	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: 48px 48px;
}

.zstack_index_cta-glow {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(ellipse 55% 60% at 15% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 65%), radial-gradient(ellipse 45% 50% at 85% 50%, rgba(230, 81, 0, 0.12) 0%, transparent 65%);
}

.zstack_index_cta-inner {
	position: relative;
	z-index: 1;
}

.zstack_index_cta-title {
	font-size: clamp(36px, 5vw, 66px);
	font-weight: 900;
	letter-spacing: -0.04em;
	line-height: 1.04;
	text-align: center;
	color: #fff;
	margin-bottom: 20px;
}

.zstack_index_cta-sub {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.72);
	text-align: center;
	line-height: 1.65;
	margin-bottom: 64px;
}

.zstack_index_cta-cards {
	display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}

.zstack_index_cta-card {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 16px;
	padding: 36px 30px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	transition: background .2s, border-color .2s, transform .2s;
}

.zstack_index_cta-card:hover {
	background: rgba(255, 255, 255, 0.13);
	border-color: rgba(255, 255, 255, 0.28);
	transform: translateY(-3px);
}

.zstack_index_cta-card--primary {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.30);
}

.zstack_index_cta-card-eyebrow {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
	font-family: var(--mono);
}

.zstack_index_cta-card-title {
	font-size: 20px;
	font-weight: 800;
	color: #fff;
	letter-spacing: -0.02em;
}

.zstack_index_cta-card-txt {
	font-size: 13.5px;
	color: rgba(255, 255, 255, 0.68);
	line-height: 1.65;
	flex: 1;
}

/* ══════════════════════════════════════════
       FOOTER
    ══════════════════════════════════════════ */
footer {
	padding: 64px 0 36px;
	background: #0a1628;
}

.ft-top {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
	gap: 48px;
	padding-bottom: 48px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ft-logo {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 17px;
	font-weight: 800;
	letter-spacing: -0.04em;
	color: #fff;
	margin-bottom: 14px;
}
.ft-logo img{
	height: 60px;
}
.ft-mark {
	width: 28px;
	height: 28px;
	border-radius: 6px;
	background: var(--blue);
	display: grid;
	place-items: center;
	font-size: 14px;
	font-weight: 900;
	color: #fff;
}

.ft-tagline {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.45);
	line-height: 1.6;
}

.ft-col-title {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
	margin-bottom: 18px;
	font-family: var(--mono);
}

.ft-links {
	display: flex;
	flex-direction: column;
	gap: 11px;
}

.ft-links a {
	font-size: 13.5px;
	color: rgba(255, 255, 255, 0.6);
	transition: color .15s;
}

.ft-links a:hover {
	color: #fff;
}

.ft-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 28px;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.35);
}

.ft-bottom-links {
	display: flex;
	gap: 20px;
}

.ft-bottom-links a {
	color: rgba(255, 255, 255, 0.35);
	transition: color .15s;
}

.ft-bottom-links a:hover {
	color: rgba(255, 255, 255, 0.7);
}

/* ══════════════════════════════════════════
       COOKIE CONSENT
    ══════════════════════════════════════════ */
.cookie-consent {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10001;
	padding: 16px 20px;
	padding-bottom: max(16px, env(safe-area-inset-bottom));
	background: #fff;
	border-top: 1px solid rgba(148, 163, 184, 0.35);
	box-shadow: 0 -8px 32px rgba(15, 23, 42, 0.12);
	transform: translateY(100%);
	opacity: 0;
	transition: transform 0.28s ease, opacity 0.28s ease;
}

.cookie-consent.is-visible {
	transform: translateY(0);
	opacity: 1;
}

.cookie-consent.is-hiding {
	transform: translateY(100%);
	opacity: 0;
}

.cookie-consent-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.cookie-consent-text {
	flex: 1;
	min-width: 200px;
	margin: 0;
	font-size: 13px;
	line-height: 1.6;
	color: #475569;
}

.cookie-consent-link {
	color: #00579c;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.cookie-consent-link:hover {
	color: #004a85;
}

.cookie-consent-actions {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.cookie-consent-btn {
	flex-shrink: 0;
	padding: 10px 22px;
	border: none;
	border-radius: 8px;
	background: #00579c;
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
	transition: background 0.2s, transform 0.15s, border-color 0.2s, color 0.2s;
}

.cookie-consent-btn:hover {
	background: #004a85;
}

.cookie-consent-btn:active {
	transform: translateY(1px);
}

.cookie-consent-btn--reject {
	background: #fff;
	color: #475569;
	border: 1px solid rgba(148, 163, 184, 0.55);
}

.cookie-consent-btn--reject:hover {
	background: #f8fafc;
	color: #334155;
	border-color: rgba(148, 163, 184, 0.85);
}

@media (max-width: 640px) {
	.cookie-consent-inner {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
	}

	.cookie-consent-actions {
		width: 100%;
		flex-direction: column;
	}

	.cookie-consent-actions .cookie-consent-btn {
		width: 100%;
	}
}

/* ══════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════ */
@media (max-width: 1300px) {
	.zstack_index_hero-title {
		white-space: normal;
	}

	.zstack_index_why-pillars {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 960px) {

	.zstack_index_sol-grid,
	.zstack_index_testimonials,
	.zstack_index_cta-cards {
		grid-template-columns: 1fr 1fr;
	}

	.zstack_index_arch-prod-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.zstack_index_arch-cross-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.zstack_index_hero-arch-inner {
		padding: 24px 20px;
	}

	.zstack_index_arch-prod-col {
		min-height: 0;
		padding: 18px 16px;
	}

	.zstack_index_arch-prod-name {
		font-size: 12.5px;
	}

	.zstack_index_why-pillars {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.zstack_index_prod-grid {
		grid-template-columns: 1fr 1fr;
	}

	.zstack_index_recog-grid {
		grid-template-columns: 1fr;
	}

	.zstack_index_marquee-wrap {
		margin-bottom: 48px;
	}

	.zstack_index_marquee-wrap::before,
	.zstack_index_marquee-wrap::after {
		width: 56px;
	}

	.zstack_index_marquee-seq {
		gap: 18px;
	}

	.zstack_index_marquee-track+.zstack_index_marquee-track {
		margin-top: 10px;
	}

	.zstack_index_logo-chip {
		width: 130px;
		height: 78px;
	}

	.zstack_index_logo-chip img {
		max-height: 78%;
		width: auto;
		max-width: 92%;
		object-fit: contain;
	}

	.nav-links {
		display: none;
	}

	/* —— 手机端顶栏：Logo + 用户/菜单；抽屉内搜索 —— */
	.nav {
		height: auto;
	}

	.nav-inner:first-of-type {
		display: none;
	}

	.nav-inner:last-of-type {
		position: relative;
		flex-wrap: nowrap;
		align-items: center;
		column-gap: 6px;
		max-width: 100%;
		box-sizing: border-box;
		padding-top: 10px;
		padding-bottom: 10px;
		min-height: 56px;
	}

	.nav-inner:last-of-type .nav-logo {
		flex-shrink: 0;
		margin-right: 8px;
		margin-bottom: 0;
		min-width: 0;
	}

	.nav-inner:last-of-type .nav-right {
		display: none;
	}

	.nav-mobile-actions {
		display: flex;
	}

	.nav-backdrop {
		top: 56px;
	}

	.nav-inner:last-of-type .nav-search {
		flex-shrink: 1;
		min-width: 0;
	}

	.nav-search--expand {
		position: relative;
		flex-shrink: 1;
		min-width: 0;
		max-width: 100%;
	}

	/* 不参与「相对定位」，让下拉输入层相对第二行 nav-inner 定位到底部偏下 */
	.nav-search--expand.is-open {
		position: static;
		flex-direction: row;
		align-items: center;
		min-width: 0 !important;
		max-width: none !important;
		width: max-content !important;
		align-self: auto;
	}

	.nav-search--expand.is-open .nav-search-trigger {
		display: flex !important;
	}

	.nav-search--expand.is-open .nav-search-input {
		display: block;
		position: absolute;
		box-sizing: border-box;
		left: 0;
		right: 0;
		top: calc(100% + 10px);
		width: auto;
		margin: 0;
		min-height: 44px;
		padding: 10px 14px !important;
		background: #fff;
		border-radius: 10px;
		border: 1px solid var(--border-hi);
		box-shadow: 0 20px 50px -12px rgba(14, 52, 148, 0.22), 0 6px 16px rgba(0, 0, 0, 0.08);
		z-index: 520;
	}

	.zstack_index_why-cta-box {
		flex-direction: column;
		align-items: stretch;
		gap: 28px;
		padding: 40px clamp(20px, 4vw, 36px);
	}

	.zstack_index_why-cta-left {
		width: 100%;
		text-align: center;
	}

	.zstack_index_why-cta-sub {
		max-width: none;
		margin-left: auto;
		margin-right: auto;
	}

	.zstack_index_why-stat-row {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
		width: 100%;
	}

	.zstack_index_why-cta-box > .zstack_index_btn {
		width: 100%;
		max-width: 360px;
		margin-left: auto;
		margin-right: auto;
		justify-content: center;
		box-sizing: border-box;
	}

	.ft-top {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 640px) {

	.wrap {
		padding-left: max(16px, env(safe-area-inset-left));
		padding-right: max(16px, env(safe-area-inset-right));
	}

	.nav-inner {
		padding-left: max(16px, env(safe-area-inset-left));
		padding-right: max(16px, env(safe-area-inset-right));
	}

	.nav-logo img {
		width: 78px;
	}

	/* 仅占位放大镜，避免 “Search…” 把右侧顶出屏幕 */
	.nav-inner:last-of-type .nav-search-trigger span {
		display: none;
	}

	.nav-search-trigger {
		gap: 0;
		justify-content: center;
	}

	.nav-search.nav-search--expand {
		padding-left: 8px;
		padding-right: 8px;
	}

	.nav-lang {
		padding: 6px 6px;
		gap: 3px;
	}

	.nav-lang-label {
		max-width: 58px;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.nav-contact-btn {
		padding: 7px 8px;
		font-size: 11px;
		white-space: nowrap;
	}

	@media (max-width: 380px) {
		.nav-inner:last-of-type .nav-logo img {
			width: 68px;
		}

		.nav-inner:last-of-type .nav-contact-btn {
			padding: 6px 6px;
			font-size: 10px;
		}

		.nav-inner:last-of-type .nav-lang-label {
			max-width: 48px;
		}

		.nav-inner:last-of-type .nav-lang-chevron {
			display: none;
		}
	}

	.zstack_index_sol-grid,
	.zstack_index_testimonials,
	.zstack_index_cta-cards {
		grid-template-columns: 1fr;
	}

	.zstack_index_arch-prod-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.zstack_index_arch-cross-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 8px;
	}

	.zstack_index_arch-cross-item {
		padding: 10px 8px;
	}

	.zstack_index_hero-body {
		padding-left: 0;
		padding-right: 0;
		padding-bottom: 48px;
	}

	.zstack_index_hero-actions {
		flex-direction: column;
		align-items: stretch;
		max-width: 360px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 48px;
		gap: 12px;
	}

	.zstack_index_hero-actions .zstack_index_btn {
		justify-content: center;
		width: 100%;
	}

	.zstack_index_solutions-section,
	.zstack_index_why-section,
	.zstack_index_recognition-section,
	.zstack_index_customers-section,
	.zstack_index_news-section {
		padding-top: 72px;
		padding-bottom: 72px;
	}

	.zstack_index_sec-header {
		margin-bottom: 40px;
	}

	.zstack_index_cta-section {
		padding-top: 72px;
		padding-bottom: 72px;
	}

	.zstack_index_cta-sub {
		margin-bottom: 40px;
	}

	.zstack_index_cta-card {
		padding: 28px 22px;
	}

	.zstack_index_customer-stats {
		grid-template-columns: 1fr 1fr;
	}

	.zstack_index_marquee-wrap {
		margin-bottom: 32px;
	}

	.zstack_index_marquee-wrap::before,
	.zstack_index_marquee-wrap::after {
		width: 28px;
	}

	.zstack_index_marquee-seq {
		gap: 10px;
	}

	.zstack_index_marquee-track+.zstack_index_marquee-track {
		margin-top: 7px;
	}

	.zstack_index_marquee-row-1 {
		animation-duration: 26s;
	}

	.zstack_index_marquee-row-2 {
		animation-duration: 32s;
	}

	.zstack_index_marquee-row-3 {
		animation-duration: 20s;
	}

	.zstack_index_logo-chip {
		width: 102px;
		height: 62px;
		border-radius: 6px;
	}

	.zstack_index_logo-chip img {
		max-height: 70%;
		width: auto;
		max-width: 90%;
		object-fit: contain;
	}

	.zstack_index_reviews-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.zstack_index_arch-grid {
		grid-template-columns: 1fr 1fr;
	}

	.zstack_index_why-pillars {
		grid-template-columns: 1fr;
	}

	.zstack_index_why-cta-box {
		padding: 24px clamp(14px, 4vw, 20px);
		gap: 22px;
		border-radius: 16px;
	}

	.zstack_index_why-cta-title {
		font-size: clamp(19px, 5.2vw, 22px);
		margin-bottom: 8px;
	}

	.zstack_index_why-cta-sub {
		font-size: 14px;
		line-height: 1.6;
	}

	.zstack_index_why-stat-row {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}

	.zstack_index_why-stat {
		padding: 14px 10px;
		border-radius: 10px;
	}

	.zstack_index_why-stat-n {
		font-size: 22px;
	}

	.zstack_index_why-stat-n span {
		font-size: 13px !important;
	}

	.zstack_index_why-stat-l {
		font-size: 10px;
		line-height: 1.35;
		margin-top: 6px;
	}

	.zstack_index_why-cta-box > .zstack_index_btn {
		width: 100%;
		max-width: none;
		margin-left: 0;
		margin-right: 0;
	}
}

/* ═══════════ zstack-internet.html ═══════════ */
/* ─── Reset ─────────────────────────────────────────── */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	/* Backgrounds */
	--bg: #ffffff;
	--bg-alt: #f8fafc;
	--bg-card: #ffffff;

	/* Primary */
	--blue: #00579c;
	--blue-dim: #004a85;
	--blue-glow: rgba(0, 87, 156, 0.22);
	--blue-faint: rgba(0, 87, 156, 0.07);
	--blue-mid: rgba(0, 87, 156, 0.14);

	/* Accent */
	--orange: #e65100;
	--orange-dim: rgba(230, 81, 0, 0.10);
	--teal: #00897b;
	--teal-dim: rgba(0, 137, 123, 0.10);
	--green: #2e7d32;

	/* Borders */
	--border: rgba(148, 163, 184, 0.28);
	--border-hi: rgba(0, 87, 156, 0.20);

	/* Text */
	--t1: #0f172a;
	--t2: #475569;
	--t3: #94a3b8;

	--font: 'Inter', system-ui, sans-serif;
	--mono: 'JetBrains Mono', monospace;
	--radius: 14px;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font);
	background: var(--bg);
	color: var(--t1);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

/* ─── Fade animation ─────────────────────────────────── */
.zstack_internet_fade {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .6s ease, transform .6s ease;
}

.zstack_internet_fade.zstack_internet_in {
	opacity: 1;
	transform: none;
}

/* ─── Layout ─────────────────────────────────────────── */
.zstack_internet_inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 32px;
}

/* ─── Label chip ─────────────────────────────────────── */
.zstack_internet_lbl {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	font-family: var(--mono);
	color: var(--blue);
	background: var(--blue-faint);
	border: 1px solid var(--border-hi);
	border-radius: 100px;
	padding: 4px 14px;
}

/* ─── SHARED BUTTONS ──────────────────────────────────── */
/* design.zstack_internet_md: btn--primary with glow, btn--ghost */
.zstack_internet_btn-p {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font);
	font-size: 15px;
	font-weight: 700;
	background: var(--blue);
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 13px 26px;
	cursor: pointer;
	transition: all .2s;
}

.zstack_internet_btn-p:hover {
	background: var(--blue-dim);
	box-shadow: 0 0 28px 8px var(--blue-glow);
}

.zstack_internet_btn-s {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font);
	font-size: 15px;
	font-weight: 600;
	background: transparent;
	color: var(--t1);
	border: 1.5px solid var(--border);
	border-radius: 8px;
	padding: 12px 24px;
	cursor: pointer;
	transition: all .2s;
}

.zstack_internet_btn-s:hover {
	border-color: var(--blue);
	color: var(--blue);
}

.zstack_internet_btn-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font);
	font-size: 14px;
	font-weight: 600;
	background: transparent;
	color: var(--t2);
	border: 1.5px solid var(--border);
	border-radius: 100px;
	padding: 10px 32px;
	cursor: pointer;
	transition: all .2s;
}

.zstack_internet_btn-pill:hover {
	border-color: var(--blue);
	color: var(--blue);
}

/* ─── HERO ────────────────────────────────────────────── */
/* design.zstack_internet_md: linear-gradient(180deg, #f0f6ff 0%, #ffffff 60%) + grid + glow */
.zstack_internet_hero-wrap {
	background: linear-gradient(180deg, #f0f6ff 0%, #ffffff 60%);
	position: relative;
	overflow: hidden;
	padding-top: 100px;
}

/* Grid background */
.zstack_internet_hero-wrap::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(0, 87, 156, .06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 87, 156, .06) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 20%, transparent 70%);
}

/* Glow */
.zstack_internet_hero-wrap::after {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 55% 45% at 20% 60%, rgba(0, 87, 156, .06) 0%, transparent 65%),
		radial-gradient(ellipse 50% 40% at 80% 40%, rgba(230, 81, 0, .04) 0%, transparent 65%);
}

.zstack_internet_hero-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 80px 32px 96px;
	display: grid;
	grid-template-columns: 1fr 460px;
	gap: 72px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.zstack_internet_hero-left {
	display: flex;
	flex-direction: column;
}

.zstack_internet_hero-bc {
	font-size: 13px;
	font-weight: 600;
	color: var(--blue);
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 24px;
	cursor: pointer;
}

.zstack_internet_hero-bc svg {
	width: 14px;
	height: 14px;
	stroke: var(--blue);
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
}

/* design.zstack_internet_md 5.7: hero-badge — orange pill with pulse dot */
.zstack_internet_hero-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-family: var(--mono);
	color: var(--orange);
	background: var(--orange-dim);
	border: 1px solid rgba(230, 81, 0, .22);
	border-radius: 100px;
	padding: 6px 16px;
	margin-bottom: 22px;
	align-self: flex-start;
}

.zstack_internet_hero-label-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--orange);
	flex-shrink: 0;
	animation: pulse 2s infinite;
}

@keyframes pulse {

	0%,
	100% {
		opacity: 1;
		transform: scale(1)
	}

	50% {
		opacity: .6;
		transform: scale(1.35)
	}
}

/* design.zstack_internet_md H1: weight 900, first line dark, second line blue gradient */
.zstack_internet_hero-h1 {
	font-size: clamp(26px, 3.6vw, 44px);
	font-weight: 900;
	letter-spacing: -0.04em;
	line-height: 1.04;
	margin-bottom: 22px;
	color: var(--t1);
}

/* gradient span for semantic highlight line */
.zstack_internet_hero-h1 .zstack_internet_h1-accent {
	background: linear-gradient(125deg, var(--blue) 0%, #0277bd 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.zstack_internet_hero-p {
	font-size: 17px;
	color: var(--t2);
	line-height: 1.72;
	max-width: 500px;
	margin-bottom: 36px;
}

.zstack_internet_hero-btns {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

/* Hero right: trust map */
.zstack_internet_hero-right-col {
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 1;
}

.zstack_internet_trust-map {
	background: rgba(255, 255, 255, .82);
	border: 1px solid var(--border-hi);
	border-radius: var(--radius) var(--radius) 0 0;
	padding: 20px 16px;
	backdrop-filter: blur(8px);
}

.zstack_internet_hero-credibility {
	display: flex;
	align-items: stretch;
	background: var(--bg-card);
	border: 1px solid var(--border-hi);
	border-top: none;
	border-radius: 0 0 var(--radius) var(--radius);
	overflow: hidden;
	box-shadow: 0 4px 16px -4px rgba(0, 87, 156, .12);
}

.zstack_internet_hc-item {
	flex: 1;
	padding: 18px 20px;
	text-align: center;
}

/* design.zstack_internet_md: stat numbers 32-44px, weight 900, --mono */
.zstack_internet_hc-val {
	font-size: 24px;
	font-weight: 900;
	letter-spacing: -0.04em;
	color: var(--blue);
	line-height: 1;
	font-family: var(--mono);
}

.zstack_internet_hc-label {
	font-size: 11px;
	color: var(--t3);
	margin-top: 5px;
	line-height: 1.4;
}

.zstack_internet_hc-div {
	width: 1px;
	background: var(--border);
	flex-shrink: 0;
}

.zstack_internet_hero-divider {
	border: none;
	border-bottom: 1px dashed var(--border);
	margin: 0;
}

/* ─── SECTION SHARED ──────────────────────────────────── */
/* design.zstack_internet_md: H2 clamp(28px, 3.8vw, 46px), weight 800 */
.zstack_internet_sec-title {
	font-size: clamp(26px, 3.8vw, 44px);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.1;
	color: var(--t1);
}

.zstack_internet_sec-sub {
	font-size: 17px;
	color: var(--t2);
	line-height: 1.72;
}

.zstack_internet_eyebrow {
	display: inline-flex;
	align-items: center;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	font-family: var(--mono);
	color: var(--blue);
	background: var(--blue-faint);
	border: 1px solid var(--border-hi);
	border-radius: 100px;
	padding: 4px 14px;
	margin-bottom: 12px;
}

/* ─── BENEFITS A ──────────────────────────────────────── */
/* design.zstack_internet_md: --bg section */
.zstack_internet_sec-bene-a {
	background: var(--bg);
	padding: 120px 0;
}

.zstack_internet_bene-a-hd {
	text-align: center;
	margin-bottom: 72px;
}

.zstack_internet_bene-a-hd .zstack_internet_sec-title {
	margin-bottom: 18px;
}

.zstack_internet_bene-cols {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	text-align: center;
}

.zstack_internet_bcol {}

.zstack_internet_bcol-icon {
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
}

.zstack_internet_bcol-h {
	font-size: 19px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--t1);
	margin-bottom: 12px;
}

.zstack_internet_bcol-p {
	font-size: 15px;
	color: var(--t2);
	line-height: 1.7;
}

/* ─── BENEFITS B ──────────────────────────────────────── */
/* design.zstack_internet_md: --bg-alt section */
.zstack_internet_sec-bene-b {
	background: var(--bg-alt);
	padding: 120px 0;
}

.zstack_internet_bene-b-hd {
	text-align: center;
	margin-bottom: 56px;
}

.zstack_internet_bene-b-cols {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* design.zstack_internet_md: card with top color bar, 14px radius, hover translateY(-3px) */
.zstack_internet_bbc {
	display: flex;
	flex-direction: column;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	transition: border-color .2s, transform .2s, box-shadow .2s;
	position: relative;
}

.zstack_internet_bbc:hover {
	border-color: var(--border-hi);
	transform: translateY(-3px);
	box-shadow: 0 12px 32px -8px rgba(0, 87, 156, .10);
}

/* top color bar - sequential gradients per design.zstack_internet_md */
.zstack_internet_bbc:nth-child(1)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--blue), #0277bd);
}

.zstack_internet_bbc:nth-child(2)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--teal), var(--blue));
}

.zstack_internet_bbc:nth-child(3)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--orange), #ff8a65);
}

.zstack_internet_bbc-hd {
	background: var(--blue);
	padding: 28px 26px;
	position: relative;
}

.zstack_internet_bbc-hd::after {
	content: '';
	position: absolute;
	bottom: -14px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 14px solid transparent;
	border-right: 14px solid transparent;
	border-top: 15px solid var(--blue);
}

.zstack_internet_bbc-hd-title {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	line-height: 1.3;
	text-align: center;
}

.zstack_internet_bbc-body {
	background: var(--bg-card);
	padding: 36px 22px 30px;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.zstack_internet_bbc-p {
	font-size: 14px;
	color: var(--t2);
	line-height: 1.72;
	flex: 1;
	margin-bottom: 24px;
}

.zstack_internet_btn-learn {
	font-family: var(--font);
	font-size: 13px;
	font-weight: 700;
	background: var(--blue);
	color: #fff;
	border: none;
	border-radius: 100px;
	padding: 9px 22px;
	cursor: pointer;
	transition: background .15s;
}

.zstack_internet_btn-learn:hover {
	background: var(--blue-dim);
}

/* ─── USE CASES ────────────────────────────────────────── */
/* design.zstack_internet_md: --bg section */
.zstack_internet_sec-uc {
	background: var(--bg);
	padding: 120px 0;
}

.zstack_internet_uc-hd {
	text-align: center;
	margin-bottom: 72px;
}

.zstack_internet_uc-layout {
	display: grid;
	grid-template-columns: 1fr 520px;
	gap: 72px;
	align-items: start;
}

.zstack_internet_uc-list {
	display: flex;
	flex-direction: column;
}

.zstack_internet_uc-item {
	padding: 32px 0;
	border-bottom: 1px solid var(--border);
}

.zstack_internet_uc-item:first-child {
	border-top: 1px solid var(--border);
}

.zstack_internet_uc-item-h {
	font-size: 18px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--t1);
	margin-bottom: 10px;
}

.zstack_internet_uc-item-p {
	font-size: 14px;
	color: var(--t2);
	line-height: 1.72;
	margin-bottom: 12px;
}

.zstack_internet_uc-link {
	font-size: 13px;
	font-weight: 700;
	color: var(--blue);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	border-bottom: 1px solid rgba(0, 87, 156, .3);
	transition: border-color .2s;
}

.zstack_internet_uc-link svg {
	width: 13px;
	height: 13px;
	stroke: var(--blue);
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
}

.zstack_internet_uc-link:hover {
	border-color: var(--blue);
}

/* Mockup */
.zstack_internet_uc-mockup {
	position: sticky;
	top: 130px;
}

.zstack_internet_mockup-shell {
	background: var(--t1);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(0, 0, 0, .18), 0 0 0 1px rgba(0, 87, 156, .15);
}

.zstack_internet_mockup-bar {
	background: #1e2530;
	height: 36px;
	display: flex;
	align-items: center;
	padding: 0 16px;
	gap: 8px;
}

.zstack_internet_mockup-dot {
	width: 11px;
	height: 11px;
	border-radius: 50%;
}

.zstack_internet_mockup-title {
	font-size: 11px;
	color: rgba(255, 255, 255, .35);
	margin-left: 8px;
}

.zstack_internet_mockup-body {
	background: #161b22;
	display: grid;
	grid-template-columns: 190px 1fr;
}

.zstack_internet_mockup-sidebar {
	background: #1a1f2e;
	padding: 16px 0;
	border-right: 1px solid rgba(255, 255, 255, .06);
}

.zstack_internet_ms-section {
	padding: 8px 16px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .28);
	margin-top: 8px;
}

.zstack_internet_ms-item {
	padding: 9px 20px;
	font-size: 12px;
	color: rgba(255, 255, 255, .45);
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: background .15s;
}

.zstack_internet_ms-item:hover {
	background: rgba(0, 87, 156, .15);
	color: rgba(255, 255, 255, .8);
}

.zstack_internet_ms-item.zstack_internet_act {
	background: rgba(0, 87, 156, .25);
	color: #7badd4;
}

.zstack_internet_ms-item svg {
	width: 13px;
	height: 13px;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.5;
	opacity: .7;
}

.zstack_internet_mockup-main {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.zstack_internet_mm-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 4px;
}

.zstack_internet_mm-title {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
}

.zstack_internet_mm-badge {
	background: rgba(0, 87, 156, .4);
	color: #7badd4;
	font-size: 10px;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 4px;
}

.zstack_internet_mm-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
}

.zstack_internet_mm-card {
	background: #1e2530;
	padding: 14px;
	border: 1px solid rgba(255, 255, 255, .06);
	border-radius: 6px;
}

.zstack_internet_mm-card-label {
	font-size: 9px;
	color: rgba(255, 255, 255, .35);
	margin-bottom: 6px;
	letter-spacing: .05em;
	text-transform: uppercase;
}

.zstack_internet_mm-card-val {
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	letter-spacing: -0.02em;
}

.zstack_internet_mm-card-sub {
	font-size: 10px;
	color: #4caf50;
	margin-top: 3px;
}

.zstack_internet_mm-table {
	background: #1e2530;
	border: 1px solid rgba(255, 255, 255, .06);
	border-radius: 6px;
	overflow: hidden;
}

.zstack_internet_mm-table-hd {
	display: grid;
	grid-template-columns: 1fr 60px 70px 60px;
	padding: 8px 12px;
	border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.zstack_internet_mm-th {
	font-size: 9px;
	font-weight: 700;
	color: rgba(255, 255, 255, .3);
	letter-spacing: .06em;
	text-transform: uppercase;
}

.zstack_internet_mm-row {
	display: grid;
	grid-template-columns: 1fr 60px 70px 60px;
	padding: 9px 12px;
	border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.zstack_internet_mm-row:last-child {
	border-bottom: none;
}

.zstack_internet_mm-td {
	font-size: 11px;
	color: rgba(255, 255, 255, .6);
}

.zstack_internet_mm-td.zstack_internet_pri {
	color: #7badd4;
	font-weight: 600;
}

.zstack_internet_mm-td.zstack_internet_grn {
	color: #4caf50;
}

.zstack_internet_mm-td.zstack_internet_ora {
	color: #ff9800;
}

/* ─── CUSTOMERS ────────────────────────────────────────── */
/* design.zstack_internet_md: --bg-alt section */
.zstack_internet_sec-cust {
	background: var(--bg-alt);
	padding: 120px 0;
}

.zstack_internet_cust-hd {
	text-align: center;
	margin-bottom: 64px;
}

.zstack_internet_cust-hd .zstack_internet_sec-title {
	margin-bottom: 16px;
}

.zstack_internet_cust-hd-sub {
	font-size: 17px;
	color: var(--t2);
	max-width: 600px;
	margin: 0 auto;
}

.zstack_internet_quote-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* design.zstack_internet_md: card — white bg, border, 14px radius, hover translateY(-3px) */
.zstack_internet_qcard {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding: 34px 28px;
	transition: border-color .2s, transform .2s, box-shadow .2s;
	position: relative;
}

.zstack_internet_qcard:hover {
	border-color: var(--border-hi);
	transform: translateY(-3px);
	box-shadow: 0 12px 32px -8px rgba(0, 87, 156, .10);
}

/* top color bar per design.zstack_internet_md sequence */
.zstack_internet_qcard:nth-child(1)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--blue), #0277bd);
}

.zstack_internet_qcard:nth-child(2)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--teal), var(--blue));
}

.zstack_internet_qcard:nth-child(3)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--orange), #ff8a65);
}

.zstack_internet_qcard-org-row {
	display: flex;
	align-items: center;
	gap: 14px;
}

.zstack_internet_qcard-avatar {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	flex-shrink: 0;
	background: linear-gradient(135deg, var(--blue-faint), var(--teal-dim));
	display: grid;
	place-items: center;
	font-size: 22px;
}

.zstack_internet_qcard-org-name {
	font-size: 14px;
	font-weight: 700;
	color: var(--t1);
}

.zstack_internet_qcard-org-type {
	font-size: 12px;
	color: var(--t3);
}

.zstack_internet_qcard-divider {
	height: 1px;
	background: var(--border);
}

.zstack_internet_qcard-row {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.zstack_internet_qcard-row-lbl {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--t3);
	font-family: var(--mono);
}

.zstack_internet_qcard-row-txt {
	font-size: 13px;
	color: var(--t2);
	line-height: 1.65;
}

.zstack_internet_qcard-result {
	background: rgba(46, 125, 50, .07);
	border: 1px solid rgba(46, 125, 50, .18);
	border-radius: 8px;
	padding: 14px 16px;
	margin-top: auto;
}

.zstack_internet_qcard-result-lbl {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--green);
	font-family: var(--mono);
	margin-bottom: 5px;
}

.zstack_internet_qcard-result-txt {
	font-size: 13px;
	font-weight: 500;
	color: var(--t1);
	line-height: 1.55;
}

.zstack_internet_cust-more {
	text-align: center;
	margin-top: 48px;
}

/* ─── RESOURCES ────────────────────────────────────────── */
/* design.zstack_internet_md: --bg section */
.zstack_internet_sec-res {
	background: var(--bg);
	padding: 120px 0;
}

.zstack_internet_res-hd {
	text-align: center;
	margin-bottom: 64px;
}

.zstack_internet_res-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* design.zstack_internet_md: card hover translateY(-3px) */
.zstack_internet_rcard {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	text-align: center;
	transition: border-color .2s, transform .2s, box-shadow .2s;
}

.zstack_internet_rcard:hover {
	border-color: var(--border-hi);
	transform: translateY(-3px);
	box-shadow: 0 12px 32px -8px rgba(0, 87, 156, .10);
}

.zstack_internet_rcard-cover {
	height: 200px;
	background: var(--bg-alt);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	border-bottom: 1px solid var(--border);
}

.zstack_internet_rcard-cover::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 70% 70% at 50% 60%, rgba(0, 87, 156, .06) 0%, transparent 70%);
}

.zstack_internet_rcard-doc {
	position: relative;
	z-index: 1;
	width: 108px;
	height: 140px;
	border-radius: 4px 8px 8px 4px;
	box-shadow: 4px 8px 24px rgba(0, 0, 0, .15), -2px 2px 8px rgba(0, 0, 0, .08);
	transform: rotate(-4deg) translateY(4px);
	transition: transform .25s;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.zstack_internet_rcard:hover .zstack_internet_rcard-doc {
	transform: rotate(-2deg) translateY(0);
}

.zstack_internet_rcard-doc.zstack_internet_doc-blue {
	background: linear-gradient(160deg, var(--blue) 0%, #0277bd 100%);
}

.zstack_internet_rcard-doc.zstack_internet_doc-dark {
	background: linear-gradient(160deg, #1a2332 0%, #243447 100%);
}

.zstack_internet_rcard-doc.zstack_internet_doc-navy {
	background: linear-gradient(160deg, #1e3a5f 0%, #2d5a8e 100%);
}

.zstack_internet_rcard-doc::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 6px;
	background: rgba(255, 255, 255, .15);
}

.zstack_internet_rcard-doc::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 0;
	height: 0;
	border-left: 18px solid rgba(255, 255, 255, .08);
	border-bottom: 18px solid transparent;
	border-top: 18px solid rgba(255, 255, 255, .22);
}

.zstack_internet_rcard-doc-inner {
	padding: 14px 12px 12px 16px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex: 1;
}

.zstack_internet_rcd-brand {
	font-size: 7px;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .6);
	font-family: var(--mono);
}

.zstack_internet_rcd-rule {
	height: 1px;
	background: rgba(255, 255, 255, .18);
}

.zstack_internet_rcd-title {
	font-size: 9.5px;
	font-weight: 700;
	color: #fff;
	line-height: 1.4;
	margin-top: 2px;
}

.zstack_internet_rcd-sub {
	font-size: 7.5px;
	color: rgba(255, 255, 255, .5);
	line-height: 1.45;
	margin-top: 1px;
}

.zstack_internet_rcd-spacer {
	flex: 1;
}

.zstack_internet_rcd-footer {
	font-size: 7px;
	color: rgba(255, 255, 255, .35);
	font-family: var(--mono);
	letter-spacing: .04em;
	text-transform: uppercase;
}

.zstack_internet_rcard-cover-badge {
	position: absolute;
	bottom: 14px;
	right: 14px;
	background: rgba(255, 255, 255, .15);
	font-size: 9px;
	font-weight: 700;
	color: rgba(255, 255, 255, .85);
	padding: 4px 8px;
	letter-spacing: .06em;
	text-transform: uppercase;
	font-family: var(--mono);
	border-radius: 4px;
}

.zstack_internet_rcard-body {
	padding: 24px 24px 28px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.zstack_internet_rcard-type {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--blue);
	margin-bottom: 8px;
	font-family: var(--mono);
}

.zstack_internet_rcard-h {
	font-size: 17px;
	font-weight: 800;
	color: var(--t1);
	line-height: 1.35;
	margin-bottom: 10px;
	flex: 1;
	letter-spacing: -.01em;
}

.zstack_internet_rcard-sub {
	font-size: 13px;
	color: var(--t2);
	line-height: 1.65;
	margin-bottom: 18px;
}

.zstack_internet_rcard-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 700;
	color: var(--t1);
	cursor: pointer;
	margin-top: auto;
	transition: color .15s;
}

.zstack_internet_rcard-cta svg {
	width: 13px;
	height: 13px;
	stroke: currentColor;
	fill: none;
	stroke-width: 2.5;
	stroke-linecap: round;
}

.zstack_internet_rcard-cta:hover {
	color: var(--blue);
}

.zstack_internet_res-more {
	text-align: center;
	margin-top: 48px;
}

/* ─── GET STARTED CTA ──────────────────────────────────── */
/* design.zstack_internet_md: linear-gradient(160deg, #00579c 0%, #003a6e 55%, #1a2744 100%) + grid overlay */
.zstack_internet_sec-gs {
	padding: 140px 32px 120px;
	text-align: center;
	position: relative;
	overflow: hidden;
	background: linear-gradient(160deg, #00579c 0%, #003a6e 55%, #1a2744 100%);
}

.zstack_internet_sec-gs::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
	background-size: 48px 48px;
}

.zstack_internet_gs-title {
	font-size: clamp(32px, 5vw, 52px);
	font-weight: 900;
	letter-spacing: -0.04em;
	color: #fff;
	margin-bottom: 16px;
	line-height: 1.05;
	position: relative;
	z-index: 1;
}

.zstack_internet_gs-sub {
	font-size: 17px;
	color: rgba(255, 255, 255, .72);
	max-width: 540px;
	margin: 0 auto 44px;
	line-height: 1.65;
	position: relative;
	z-index: 1;
}

.zstack_internet_gs-btns {
	display: flex;
	gap: 14px;
	justify-content: center;
	margin-bottom: 64px;
	position: relative;
	z-index: 1;
}

/* design.zstack_internet_md: outline-white buttons on dark bg */
.zstack_internet_btn-gs-p {
	font-family: var(--font);
	font-size: 15px;
	font-weight: 700;
	background: #fff;
	color: var(--blue);
	border: none;
	border-radius: 8px;
	padding: 14px 32px;
	cursor: pointer;
	transition: all .2s;
}

.zstack_internet_btn-gs-p:hover {
	box-shadow: 0 0 28px 8px rgba(255, 255, 255, .25);
}

.zstack_internet_btn-gs-s {
	font-family: var(--font);
	font-size: 15px;
	font-weight: 600;
	background: transparent;
	color: #fff;
	border: 1.5px solid rgba(255, 255, 255, .4);
	border-radius: 8px;
	padding: 13px 28px;
	cursor: pointer;
	transition: border-color .2s;
}

.zstack_internet_btn-gs-s:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, .08);
}

.zstack_internet_gs-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	max-width: 720px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

/* design.zstack_internet_md: deep-dark bg cards */
.zstack_internet_gs-card {
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 16px;
	padding: 32px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	transition: all .2s;
}

.zstack_internet_gs-card:hover {
	background: rgba(255, 255, 255, .14);
	transform: translateY(-2px);
}

.zstack_internet_gs-card-icon {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.zstack_internet_gs-card-icon svg {
	width: 26px;
	height: 26px;
	stroke: rgba(255, 255, 255, .85);
	fill: none;
	stroke-width: 1.5;
	stroke-linecap: round;
}

.zstack_internet_gs-card-title {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
}

.zstack_internet_gs-card-sub {
	font-size: 12px;
	color: rgba(255, 255, 255, .58);
	text-align: center;
	line-height: 1.5;
}



/* ─── Proof block (replaces trust map for non-map industries) ── */
.zstack_internet_proof-block {
	min-height: 220px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(0, 87, 156, .05) 0%, rgba(0, 87, 156, .02) 100%);
}

.zstack_internet_proof-inner {
	width: 100%;
	padding: 32px 28px;
}

.zstack_internet_proof-title {
	font-size: 17px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--t1);
	line-height: 1.3;
	margin-bottom: 28px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--border);
}

.zstack_internet_proof-items {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.zstack_internet_proof-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.zstack_internet_proof-dot {
	width: 2px;
	height: 20px;
	background: var(--blue);
	border-radius: 2px;
	flex-shrink: 0;
	margin-top: 3px;
}

.zstack_internet_proof-text {
	font-size: 15px;
	font-weight: 600;
	color: var(--t2);
	line-height: 1.5;
}

/* ─── Responsive ───────────────────────────────────────── */
@media (max-width: 960px) {

	.zstack_internet_hero-inner,
	.zstack_internet_uc-layout {
		grid-template-columns: 1fr;
	}

	.zstack_internet_bene-cols,
	.zstack_internet_bene-b-cols,
	.zstack_internet_quote-row,
	.zstack_internet_res-row,
	.zstack_internet_gs-cards {
		grid-template-columns: 1fr;
	}

	.zstack_internet_sf-top {
		grid-template-columns: 1fr;
		gap: 40px;
	}

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

	.nav-links {
		display: none;
	}
}

/* ═══════════ zstack-manufacturing.html ═══════════ */
/* ─── Reset ─────────────────────────────────────────── */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	/* Backgrounds */
	--bg: #ffffff;
	--bg-alt: #f8fafc;
	--bg-card: #ffffff;

	/* Primary */
	--blue: #00579c;
	--blue-dim: #004a85;
	--blue-glow: rgba(0, 87, 156, 0.22);
	--blue-faint: rgba(0, 87, 156, 0.07);
	--blue-mid: rgba(0, 87, 156, 0.14);

	/* Accent */
	--orange: #e65100;
	--orange-dim: rgba(230, 81, 0, 0.10);
	--teal: #00897b;
	--teal-dim: rgba(0, 137, 123, 0.10);
	--green: #2e7d32;

	/* Borders */
	--border: rgba(148, 163, 184, 0.28);
	--border-hi: rgba(0, 87, 156, 0.20);

	/* Text */
	--t1: #0f172a;
	--t2: #475569;
	--t3: #94a3b8;

	--font: 'Inter', system-ui, sans-serif;
	--mono: 'JetBrains Mono', monospace;
	--radius: 14px;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font);
	background: var(--bg);
	color: var(--t1);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

/* ─── Fade animation ─────────────────────────────────── */
.zstack_manufacturing_fade {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .6s ease, transform .6s ease;
}

.zstack_manufacturing_fade.zstack_manufacturing_in {
	opacity: 1;
	transform: none;
}

/* ─── Layout ─────────────────────────────────────────── */
.zstack_manufacturing_inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 32px;
}

/* ─── Label chip ─────────────────────────────────────── */
.zstack_manufacturing_lbl {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	font-family: var(--mono);
	color: var(--blue);
	background: var(--blue-faint);
	border: 1px solid var(--border-hi);
	border-radius: 100px;
	padding: 4px 14px;
}

/* ─── SHARED BUTTONS ──────────────────────────────────── */
/* design.zstack_manufacturing_md: btn--primary with glow, btn--ghost */
.zstack_manufacturing_btn-p {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font);
	font-size: 15px;
	font-weight: 700;
	background: var(--blue);
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 13px 26px;
	cursor: pointer;
	transition: all .2s;
}

.zstack_manufacturing_btn-p:hover {
	background: var(--blue-dim);
	box-shadow: 0 0 28px 8px var(--blue-glow);
}

.zstack_manufacturing_btn-s {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font);
	font-size: 15px;
	font-weight: 600;
	background: transparent;
	color: var(--t1);
	border: 1.5px solid var(--border);
	border-radius: 8px;
	padding: 12px 24px;
	cursor: pointer;
	transition: all .2s;
}

.zstack_manufacturing_btn-s:hover {
	border-color: var(--blue);
	color: var(--blue);
}

.zstack_manufacturing_btn-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font);
	font-size: 14px;
	font-weight: 600;
	background: transparent;
	color: var(--t2);
	border: 1.5px solid var(--border);
	border-radius: 100px;
	padding: 10px 32px;
	cursor: pointer;
	transition: all .2s;
}

.zstack_manufacturing_btn-pill:hover {
	border-color: var(--blue);
	color: var(--blue);
}

/* ─── HERO ────────────────────────────────────────────── */
/* design.zstack_manufacturing_md: linear-gradient(180deg, #f0f6ff 0%, #ffffff 60%) + grid + glow */
.zstack_manufacturing_hero-wrap {
	background: linear-gradient(180deg, #f0f6ff 0%, #ffffff 60%);
	position: relative;
	overflow: hidden;
	padding-top: 100px;
}

/* Grid background */
.zstack_manufacturing_hero-wrap::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(0, 87, 156, .06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 87, 156, .06) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 20%, transparent 70%);
}

/* Glow */
.zstack_manufacturing_hero-wrap::after {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 55% 45% at 20% 60%, rgba(0, 87, 156, .06) 0%, transparent 65%),
		radial-gradient(ellipse 50% 40% at 80% 40%, rgba(230, 81, 0, .04) 0%, transparent 65%);
}

.zstack_manufacturing_hero-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 80px 32px 96px;
	display: grid;
	grid-template-columns: 1fr 460px;
	gap: 72px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.zstack_manufacturing_hero-left {
	display: flex;
	flex-direction: column;
}

.zstack_manufacturing_hero-bc {
	font-size: 13px;
	font-weight: 600;
	color: var(--blue);
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 24px;
	cursor: pointer;
}

.zstack_manufacturing_hero-bc svg {
	width: 14px;
	height: 14px;
	stroke: var(--blue);
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
}

/* design.zstack_manufacturing_md 5.7: hero-badge — orange pill with pulse dot */
.zstack_manufacturing_hero-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-family: var(--mono);
	color: var(--orange);
	background: var(--orange-dim);
	border: 1px solid rgba(230, 81, 0, .22);
	border-radius: 100px;
	padding: 6px 16px;
	margin-bottom: 22px;
	align-self: flex-start;
}

.zstack_manufacturing_hero-label-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--orange);
	flex-shrink: 0;
	animation: pulse 2s infinite;
}

@keyframes pulse {

	0%,
	100% {
		opacity: 1;
		transform: scale(1)
	}

	50% {
		opacity: .6;
		transform: scale(1.35)
	}
}

/* design.zstack_manufacturing_md H1: weight 900, first line dark, second line blue gradient */
.zstack_manufacturing_hero-h1 {
	font-size: clamp(26px, 3.6vw, 44px);
	font-weight: 900;
	letter-spacing: -0.04em;
	line-height: 1.04;
	margin-bottom: 22px;
	color: var(--t1);
}

/* gradient span for semantic highlight line */
.zstack_manufacturing_hero-h1 .zstack_manufacturing_h1-accent {
	background: linear-gradient(125deg, var(--blue) 0%, #0277bd 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.zstack_manufacturing_hero-p {
	font-size: 17px;
	color: var(--t2);
	line-height: 1.72;
	max-width: 500px;
	margin-bottom: 36px;
}

.zstack_manufacturing_hero-btns {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

/* Hero right: trust map */
.zstack_manufacturing_hero-right-col {
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 1;
}

.zstack_manufacturing_trust-map {
	background: rgba(255, 255, 255, .82);
	border: 1px solid var(--border-hi);
	border-radius: var(--radius) var(--radius) 0 0;
	padding: 20px 16px;
	backdrop-filter: blur(8px);
}

.zstack_manufacturing_hero-credibility {
	display: flex;
	align-items: stretch;
	background: var(--bg-card);
	border: 1px solid var(--border-hi);
	border-top: none;
	border-radius: 0 0 var(--radius) var(--radius);
	overflow: hidden;
	box-shadow: 0 4px 16px -4px rgba(0, 87, 156, .12);
}

.zstack_manufacturing_hc-item {
	flex: 1;
	padding: 18px 20px;
	text-align: center;
}

/* design.zstack_manufacturing_md: stat numbers 32-44px, weight 900, --mono */
.zstack_manufacturing_hc-val {
	font-size: 24px;
	font-weight: 900;
	letter-spacing: -0.04em;
	color: var(--blue);
	line-height: 1;
	font-family: var(--mono);
}

.zstack_manufacturing_hc-label {
	font-size: 11px;
	color: var(--t3);
	margin-top: 5px;
	line-height: 1.4;
}

.zstack_manufacturing_hc-div {
	width: 1px;
	background: var(--border);
	flex-shrink: 0;
}

.zstack_manufacturing_hero-divider {
	border: none;
	border-bottom: 1px dashed var(--border);
	margin: 0;
}

/* ─── SECTION SHARED ──────────────────────────────────── */
/* design.zstack_manufacturing_md: H2 clamp(28px, 3.8vw, 46px), weight 800 */
.zstack_manufacturing_sec-title {
	font-size: clamp(26px, 3.8vw, 44px);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.1;
	color: var(--t1);
}

.zstack_manufacturing_sec-sub {
	font-size: 17px;
	color: var(--t2);
	line-height: 1.72;
}

.zstack_manufacturing_eyebrow {
	display: inline-flex;
	align-items: center;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	font-family: var(--mono);
	color: var(--blue);
	background: var(--blue-faint);
	border: 1px solid var(--border-hi);
	border-radius: 100px;
	padding: 4px 14px;
	margin-bottom: 12px;
}

/* ─── BENEFITS A ──────────────────────────────────────── */
/* design.zstack_manufacturing_md: --bg section */
.zstack_manufacturing_sec-bene-a {
	background: var(--bg);
	padding: 120px 0;
}

.zstack_manufacturing_bene-a-hd {
	text-align: center;
	margin-bottom: 72px;
}

.zstack_manufacturing_bene-a-hd .zstack_manufacturing_sec-title {
	margin-bottom: 18px;
}

.zstack_manufacturing_bene-cols {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	text-align: center;
}

.zstack_manufacturing_bcol {}

.zstack_manufacturing_bcol-icon {
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
}

.zstack_manufacturing_bcol-h {
	font-size: 19px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--t1);
	margin-bottom: 12px;
}

.zstack_manufacturing_bcol-p {
	font-size: 15px;
	color: var(--t2);
	line-height: 1.7;
}

/* ─── BENEFITS B ──────────────────────────────────────── */
/* design.zstack_manufacturing_md: --bg-alt section */
.zstack_manufacturing_sec-bene-b {
	background: var(--bg-alt);
	padding: 120px 0;
}

.zstack_manufacturing_bene-b-hd {
	text-align: center;
	margin-bottom: 56px;
}

.zstack_manufacturing_bene-b-cols {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* design.zstack_manufacturing_md: card with top color bar, 14px radius, hover translateY(-3px) */
.zstack_manufacturing_bbc {
	display: flex;
	flex-direction: column;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	transition: border-color .2s, transform .2s, box-shadow .2s;
	position: relative;
}

.zstack_manufacturing_bbc:hover {
	border-color: var(--border-hi);
	transform: translateY(-3px);
	box-shadow: 0 12px 32px -8px rgba(0, 87, 156, .10);
}

/* top color bar - sequential gradients per design.zstack_manufacturing_md */
.zstack_manufacturing_bbc:nth-child(1)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--blue), #0277bd);
}

.zstack_manufacturing_bbc:nth-child(2)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--teal), var(--blue));
}

.zstack_manufacturing_bbc:nth-child(3)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--orange), #ff8a65);
}

.zstack_manufacturing_bbc-hd {
	background: var(--blue);
	padding: 28px 26px;
	position: relative;
}

.zstack_manufacturing_bbc-hd::after {
	content: '';
	position: absolute;
	bottom: -14px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 14px solid transparent;
	border-right: 14px solid transparent;
	border-top: 15px solid var(--blue);
}

.zstack_manufacturing_bbc-hd-title {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	line-height: 1.3;
	text-align: center;
}

.zstack_manufacturing_bbc-body {
	background: var(--bg-card);
	padding: 36px 22px 30px;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.zstack_manufacturing_bbc-p {
	font-size: 14px;
	color: var(--t2);
	line-height: 1.72;
	flex: 1;
	margin-bottom: 24px;
}

.zstack_manufacturing_btn-learn {
	font-family: var(--font);
	font-size: 13px;
	font-weight: 700;
	background: var(--blue);
	color: #fff;
	border: none;
	border-radius: 100px;
	padding: 9px 22px;
	cursor: pointer;
	transition: background .15s;
}

.zstack_manufacturing_btn-learn:hover {
	background: var(--blue-dim);
}

/* ─── USE CASES ────────────────────────────────────────── */
/* design.zstack_manufacturing_md: --bg section */
.zstack_manufacturing_sec-uc {
	background: var(--bg);
	padding: 120px 0;
}

.zstack_manufacturing_uc-hd {
	text-align: center;
	margin-bottom: 72px;
}

.zstack_manufacturing_uc-layout {
	display: grid;
	grid-template-columns: 1fr 520px;
	gap: 72px;
	align-items: start;
}

.zstack_manufacturing_uc-list {
	display: flex;
	flex-direction: column;
}

.zstack_manufacturing_uc-item {
	padding: 32px 0;
	border-bottom: 1px solid var(--border);
}

.zstack_manufacturing_uc-item:first-child {
	border-top: 1px solid var(--border);
}

.zstack_manufacturing_uc-item-h {
	font-size: 18px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--t1);
	margin-bottom: 10px;
}

.zstack_manufacturing_uc-item-p {
	font-size: 14px;
	color: var(--t2);
	line-height: 1.72;
	margin-bottom: 12px;
}

.zstack_manufacturing_uc-link {
	font-size: 13px;
	font-weight: 700;
	color: var(--blue);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	border-bottom: 1px solid rgba(0, 87, 156, .3);
	transition: border-color .2s;
}

.zstack_manufacturing_uc-link svg {
	width: 13px;
	height: 13px;
	stroke: var(--blue);
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
}

.zstack_manufacturing_uc-link:hover {
	border-color: var(--blue);
}

/* Mockup */
.zstack_manufacturing_uc-mockup {
	position: sticky;
	top: 130px;
}

.zstack_manufacturing_mockup-shell {
	background: var(--t1);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(0, 0, 0, .18), 0 0 0 1px rgba(0, 87, 156, .15);
}

.zstack_manufacturing_mockup-bar {
	background: #1e2530;
	height: 36px;
	display: flex;
	align-items: center;
	padding: 0 16px;
	gap: 8px;
}

.zstack_manufacturing_mockup-dot {
	width: 11px;
	height: 11px;
	border-radius: 50%;
}

.zstack_manufacturing_mockup-title {
	font-size: 11px;
	color: rgba(255, 255, 255, .35);
	margin-left: 8px;
}

.zstack_manufacturing_mockup-body {
	background: #161b22;
	display: grid;
	grid-template-columns: 190px 1fr;
}

.zstack_manufacturing_mockup-sidebar {
	background: #1a1f2e;
	padding: 16px 0;
	border-right: 1px solid rgba(255, 255, 255, .06);
}

.zstack_manufacturing_ms-section {
	padding: 8px 16px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .28);
	margin-top: 8px;
}

.zstack_manufacturing_ms-item {
	padding: 9px 20px;
	font-size: 12px;
	color: rgba(255, 255, 255, .45);
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: background .15s;
}

.zstack_manufacturing_ms-item:hover {
	background: rgba(0, 87, 156, .15);
	color: rgba(255, 255, 255, .8);
}

.zstack_manufacturing_ms-item.zstack_manufacturing_act {
	background: rgba(0, 87, 156, .25);
	color: #7badd4;
}

.zstack_manufacturing_ms-item svg {
	width: 13px;
	height: 13px;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.5;
	opacity: .7;
}

.zstack_manufacturing_mockup-main {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.zstack_manufacturing_mm-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 4px;
}

.zstack_manufacturing_mm-title {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
}

.zstack_manufacturing_mm-badge {
	background: rgba(0, 87, 156, .4);
	color: #7badd4;
	font-size: 10px;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 4px;
}

.zstack_manufacturing_mm-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
}

.zstack_manufacturing_mm-card {
	background: #1e2530;
	padding: 14px;
	border: 1px solid rgba(255, 255, 255, .06);
	border-radius: 6px;
}

.zstack_manufacturing_mm-card-label {
	font-size: 9px;
	color: rgba(255, 255, 255, .35);
	margin-bottom: 6px;
	letter-spacing: .05em;
	text-transform: uppercase;
}

.zstack_manufacturing_mm-card-val {
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	letter-spacing: -0.02em;
}

.zstack_manufacturing_mm-card-sub {
	font-size: 10px;
	color: #4caf50;
	margin-top: 3px;
}

.zstack_manufacturing_mm-table {
	background: #1e2530;
	border: 1px solid rgba(255, 255, 255, .06);
	border-radius: 6px;
	overflow: hidden;
}

.zstack_manufacturing_mm-table-hd {
	display: grid;
	grid-template-columns: 1fr 60px 70px 60px;
	padding: 8px 12px;
	border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.zstack_manufacturing_mm-th {
	font-size: 9px;
	font-weight: 700;
	color: rgba(255, 255, 255, .3);
	letter-spacing: .06em;
	text-transform: uppercase;
}

.zstack_manufacturing_mm-row {
	display: grid;
	grid-template-columns: 1fr 60px 70px 60px;
	padding: 9px 12px;
	border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.zstack_manufacturing_mm-row:last-child {
	border-bottom: none;
}

.zstack_manufacturing_mm-td {
	font-size: 11px;
	color: rgba(255, 255, 255, .6);
}

.zstack_manufacturing_mm-td.zstack_manufacturing_pri {
	color: #7badd4;
	font-weight: 600;
}

.zstack_manufacturing_mm-td.zstack_manufacturing_grn {
	color: #4caf50;
}

.zstack_manufacturing_mm-td.zstack_manufacturing_ora {
	color: #ff9800;
}

/* ─── CUSTOMERS ────────────────────────────────────────── */
/* design.zstack_manufacturing_md: --bg-alt section */
.zstack_manufacturing_sec-cust {
	background: var(--bg-alt);
	padding: 120px 0;
}

.zstack_manufacturing_cust-hd {
	text-align: center;
	margin-bottom: 64px;
}

.zstack_manufacturing_cust-hd .zstack_manufacturing_sec-title {
	margin-bottom: 16px;
}

.zstack_manufacturing_cust-hd-sub {
	font-size: 17px;
	color: var(--t2);
	max-width: 600px;
	margin: 0 auto;
}

.zstack_manufacturing_quote-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* design.zstack_manufacturing_md: card — white bg, border, 14px radius, hover translateY(-3px) */
.zstack_manufacturing_qcard {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding: 34px 28px;
	transition: border-color .2s, transform .2s, box-shadow .2s;
	position: relative;
}

.zstack_manufacturing_qcard:hover {
	border-color: var(--border-hi);
	transform: translateY(-3px);
	box-shadow: 0 12px 32px -8px rgba(0, 87, 156, .10);
}

/* top color bar per design.zstack_manufacturing_md sequence */
.zstack_manufacturing_qcard:nth-child(1)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--blue), #0277bd);
}

.zstack_manufacturing_qcard:nth-child(2)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--teal), var(--blue));
}

.zstack_manufacturing_qcard:nth-child(3)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--orange), #ff8a65);
}

.zstack_manufacturing_qcard-org-row {
	display: flex;
	align-items: center;
	gap: 14px;
}

.zstack_manufacturing_qcard-avatar {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	flex-shrink: 0;
	background: linear-gradient(135deg, var(--blue-faint), var(--teal-dim));
	display: grid;
	place-items: center;
	font-size: 22px;
}

.zstack_manufacturing_qcard-org-name {
	font-size: 14px;
	font-weight: 700;
	color: var(--t1);
}

.zstack_manufacturing_qcard-org-type {
	font-size: 12px;
	color: var(--t3);
}

.zstack_manufacturing_qcard-divider {
	height: 1px;
	background: var(--border);
}

.zstack_manufacturing_qcard-row {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.zstack_manufacturing_qcard-row-lbl {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--t3);
	font-family: var(--mono);
}

.zstack_manufacturing_qcard-row-txt {
	font-size: 13px;
	color: var(--t2);
	line-height: 1.65;
}

.zstack_manufacturing_qcard-result {
	background: rgba(46, 125, 50, .07);
	border: 1px solid rgba(46, 125, 50, .18);
	border-radius: 8px;
	padding: 14px 16px;
	margin-top: auto;
}

.zstack_manufacturing_qcard-result-lbl {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--green);
	font-family: var(--mono);
	margin-bottom: 5px;
}

.zstack_manufacturing_qcard-result-txt {
	font-size: 13px;
	font-weight: 500;
	color: var(--t1);
	line-height: 1.55;
}

.zstack_manufacturing_cust-more {
	text-align: center;
	margin-top: 48px;
}

/* ─── RESOURCES ────────────────────────────────────────── */
/* design.zstack_manufacturing_md: --bg section */
.zstack_manufacturing_sec-res {
	background: var(--bg);
	padding: 120px 0;
}

.zstack_manufacturing_res-hd {
	text-align: center;
	margin-bottom: 64px;
}

.zstack_manufacturing_res-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* design.zstack_manufacturing_md: card hover translateY(-3px) */
.zstack_manufacturing_rcard {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	text-align: center;
	transition: border-color .2s, transform .2s, box-shadow .2s;
}

.zstack_manufacturing_rcard:hover {
	border-color: var(--border-hi);
	transform: translateY(-3px);
	box-shadow: 0 12px 32px -8px rgba(0, 87, 156, .10);
}

.zstack_manufacturing_rcard-cover {
	height: 200px;
	background: var(--bg-alt);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	border-bottom: 1px solid var(--border);
}

.zstack_manufacturing_rcard-cover::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 70% 70% at 50% 60%, rgba(0, 87, 156, .06) 0%, transparent 70%);
}

.zstack_manufacturing_rcard-doc {
	position: relative;
	z-index: 1;
	width: 108px;
	height: 140px;
	border-radius: 4px 8px 8px 4px;
	box-shadow: 4px 8px 24px rgba(0, 0, 0, .15), -2px 2px 8px rgba(0, 0, 0, .08);
	transform: rotate(-4deg) translateY(4px);
	transition: transform .25s;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.zstack_manufacturing_rcard:hover .zstack_manufacturing_rcard-doc {
	transform: rotate(-2deg) translateY(0);
}

.zstack_manufacturing_rcard-doc.zstack_manufacturing_doc-blue {
	background: linear-gradient(160deg, var(--blue) 0%, #0277bd 100%);
}

.zstack_manufacturing_rcard-doc.zstack_manufacturing_doc-dark {
	background: linear-gradient(160deg, #1a2332 0%, #243447 100%);
}

.zstack_manufacturing_rcard-doc.zstack_manufacturing_doc-navy {
	background: linear-gradient(160deg, #1e3a5f 0%, #2d5a8e 100%);
}

.zstack_manufacturing_rcard-doc::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 6px;
	background: rgba(255, 255, 255, .15);
}

.zstack_manufacturing_rcard-doc::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 0;
	height: 0;
	border-left: 18px solid rgba(255, 255, 255, .08);
	border-bottom: 18px solid transparent;
	border-top: 18px solid rgba(255, 255, 255, .22);
}

.zstack_manufacturing_rcard-doc-inner {
	padding: 14px 12px 12px 16px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex: 1;
}

.zstack_manufacturing_rcd-brand {
	font-size: 7px;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .6);
	font-family: var(--mono);
}

.zstack_manufacturing_rcd-rule {
	height: 1px;
	background: rgba(255, 255, 255, .18);
}

.zstack_manufacturing_rcd-title {
	font-size: 9.5px;
	font-weight: 700;
	color: #fff;
	line-height: 1.4;
	margin-top: 2px;
}

.zstack_manufacturing_rcd-sub {
	font-size: 7.5px;
	color: rgba(255, 255, 255, .5);
	line-height: 1.45;
	margin-top: 1px;
}

.zstack_manufacturing_rcd-spacer {
	flex: 1;
}

.zstack_manufacturing_rcd-footer {
	font-size: 7px;
	color: rgba(255, 255, 255, .35);
	font-family: var(--mono);
	letter-spacing: .04em;
	text-transform: uppercase;
}

.zstack_manufacturing_rcard-cover-badge {
	position: absolute;
	bottom: 14px;
	right: 14px;
	background: rgba(255, 255, 255, .15);
	font-size: 9px;
	font-weight: 700;
	color: rgba(255, 255, 255, .85);
	padding: 4px 8px;
	letter-spacing: .06em;
	text-transform: uppercase;
	font-family: var(--mono);
	border-radius: 4px;
}

.zstack_manufacturing_rcard-body {
	padding: 24px 24px 28px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.zstack_manufacturing_rcard-type {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--blue);
	margin-bottom: 8px;
	font-family: var(--mono);
}

.zstack_manufacturing_rcard-h {
	font-size: 17px;
	font-weight: 800;
	color: var(--t1);
	line-height: 1.35;
	margin-bottom: 10px;
	flex: 1;
	letter-spacing: -.01em;
}

.zstack_manufacturing_rcard-sub {
	font-size: 13px;
	color: var(--t2);
	line-height: 1.65;
	margin-bottom: 18px;
}

.zstack_manufacturing_rcard-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 700;
	color: var(--t1);
	cursor: pointer;
	margin-top: auto;
	transition: color .15s;
}

.zstack_manufacturing_rcard-cta svg {
	width: 13px;
	height: 13px;
	stroke: currentColor;
	fill: none;
	stroke-width: 2.5;
	stroke-linecap: round;
}

.zstack_manufacturing_rcard-cta:hover {
	color: var(--blue);
}

.zstack_manufacturing_res-more {
	text-align: center;
	margin-top: 48px;
}

/* ─── GET STARTED CTA ──────────────────────────────────── */
/* design.zstack_manufacturing_md: linear-gradient(160deg, #00579c 0%, #003a6e 55%, #1a2744 100%) + grid overlay */
.zstack_manufacturing_sec-gs {
	padding: 140px 32px 120px;
	text-align: center;
	position: relative;
	overflow: hidden;
	background: linear-gradient(160deg, #00579c 0%, #003a6e 55%, #1a2744 100%);
}

.zstack_manufacturing_sec-gs::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
	background-size: 48px 48px;
}

.zstack_manufacturing_gs-title {
	font-size: clamp(32px, 5vw, 52px);
	font-weight: 900;
	letter-spacing: -0.04em;
	color: #fff;
	margin-bottom: 16px;
	line-height: 1.05;
	position: relative;
	z-index: 1;
}

.zstack_manufacturing_gs-sub {
	font-size: 17px;
	color: rgba(255, 255, 255, .72);
	max-width: 540px;
	margin: 0 auto 44px;
	line-height: 1.65;
	position: relative;
	z-index: 1;
}

.zstack_manufacturing_gs-btns {
	display: flex;
	gap: 14px;
	justify-content: center;
	margin-bottom: 64px;
	position: relative;
	z-index: 1;
}

/* design.zstack_manufacturing_md: outline-white buttons on dark bg */
.zstack_manufacturing_btn-gs-p {
	font-family: var(--font);
	font-size: 15px;
	font-weight: 700;
	background: #fff;
	color: var(--blue);
	border: none;
	border-radius: 8px;
	padding: 14px 32px;
	cursor: pointer;
	transition: all .2s;
}

.zstack_manufacturing_btn-gs-p:hover {
	box-shadow: 0 0 28px 8px rgba(255, 255, 255, .25);
}

.zstack_manufacturing_btn-gs-s {
	font-family: var(--font);
	font-size: 15px;
	font-weight: 600;
	background: transparent;
	color: #fff;
	border: 1.5px solid rgba(255, 255, 255, .4);
	border-radius: 8px;
	padding: 13px 28px;
	cursor: pointer;
	transition: border-color .2s;
}

.zstack_manufacturing_btn-gs-s:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, .08);
}

.zstack_manufacturing_gs-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	max-width: 720px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

/* design.zstack_manufacturing_md: deep-dark bg cards */
.zstack_manufacturing_gs-card {
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 16px;
	padding: 32px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	transition: all .2s;
}

.zstack_manufacturing_gs-card:hover {
	background: rgba(255, 255, 255, .14);
	transform: translateY(-2px);
}

.zstack_manufacturing_gs-card-icon {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.zstack_manufacturing_gs-card-icon svg {
	width: 26px;
	height: 26px;
	stroke: rgba(255, 255, 255, .85);
	fill: none;
	stroke-width: 1.5;
	stroke-linecap: round;
}

.zstack_manufacturing_gs-card-title {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
}

.zstack_manufacturing_gs-card-sub {
	font-size: 12px;
	color: rgba(255, 255, 255, .58);
	text-align: center;
	line-height: 1.5;
}



/* ─── Proof block (replaces trust map for non-map industries) ── */
.zstack_manufacturing_proof-block {
	min-height: 220px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(0, 87, 156, .05) 0%, rgba(0, 87, 156, .02) 100%);
}

.zstack_manufacturing_proof-inner {
	width: 100%;
	padding: 32px 28px;
}

.zstack_manufacturing_proof-title {
	font-size: 17px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--t1);
	line-height: 1.3;
	margin-bottom: 28px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--border);
}

.zstack_manufacturing_proof-items {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.zstack_manufacturing_proof-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.zstack_manufacturing_proof-dot {
	width: 2px;
	height: 20px;
	background: var(--blue);
	border-radius: 2px;
	flex-shrink: 0;
	margin-top: 3px;
}

.zstack_manufacturing_proof-text {
	font-size: 15px;
	font-weight: 600;
	color: var(--t2);
	line-height: 1.5;
}

/* ─── Responsive ───────────────────────────────────────── */
@media (max-width: 960px) {

	.zstack_manufacturing_hero-inner,
	.zstack_manufacturing_uc-layout {
		grid-template-columns: 1fr;
	}

	.zstack_manufacturing_bene-cols,
	.zstack_manufacturing_bene-b-cols,
	.zstack_manufacturing_quote-row,
	.zstack_manufacturing_res-row,
	.zstack_manufacturing_gs-cards {
		grid-template-columns: 1fr;
	}

	.zstack_manufacturing_sf-top {
		grid-template-columns: 1fr;
		gap: 40px;
	}

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

	.nav-links {
		display: none;
	}
}

/* ═══════════ zstack-media.html ═══════════ */
/* ─── Reset ─────────────────────────────────────────── */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	/* Backgrounds */
	--bg: #ffffff;
	--bg-alt: #f8fafc;
	--bg-card: #ffffff;

	/* Primary */
	--blue: #00579c;
	--blue-dim: #004a85;
	--blue-glow: rgba(0, 87, 156, 0.22);
	--blue-faint: rgba(0, 87, 156, 0.07);
	--blue-mid: rgba(0, 87, 156, 0.14);

	/* Accent */
	--orange: #e65100;
	--orange-dim: rgba(230, 81, 0, 0.10);
	--teal: #00897b;
	--teal-dim: rgba(0, 137, 123, 0.10);
	--green: #2e7d32;

	/* Borders */
	--border: rgba(148, 163, 184, 0.28);
	--border-hi: rgba(0, 87, 156, 0.20);

	/* Text */
	--t1: #0f172a;
	--t2: #475569;
	--t3: #94a3b8;

	--font: 'Inter', system-ui, sans-serif;
	--mono: 'JetBrains Mono', monospace;
	--radius: 14px;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font);
	background: var(--bg);
	color: var(--t1);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

/* ─── Fade animation ─────────────────────────────────── */
.zstack_media_fade {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .6s ease, transform .6s ease;
}

.zstack_media_fade.zstack_media_in {
	opacity: 1;
	transform: none;
}

/* ─── Layout ─────────────────────────────────────────── */
.zstack_media_inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 32px;
}

/* ─── Label chip ─────────────────────────────────────── */
.zstack_media_lbl {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	font-family: var(--mono);
	color: var(--blue);
	background: var(--blue-faint);
	border: 1px solid var(--border-hi);
	border-radius: 100px;
	padding: 4px 14px;
}

/* ─── SHARED BUTTONS ──────────────────────────────────── */
/* design.zstack_media_md: btn--primary with glow, btn--ghost */
.zstack_media_btn-p {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font);
	font-size: 15px;
	font-weight: 700;
	background: var(--blue);
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 13px 26px;
	cursor: pointer;
	transition: all .2s;
}

.zstack_media_btn-p:hover {
	background: var(--blue-dim);
	box-shadow: 0 0 28px 8px var(--blue-glow);
}

.zstack_media_btn-s {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font);
	font-size: 15px;
	font-weight: 600;
	background: transparent;
	color: var(--t1);
	border: 1.5px solid var(--border);
	border-radius: 8px;
	padding: 12px 24px;
	cursor: pointer;
	transition: all .2s;
}

.zstack_media_btn-s:hover {
	border-color: var(--blue);
	color: var(--blue);
}

.zstack_media_btn-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font);
	font-size: 14px;
	font-weight: 600;
	background: transparent;
	color: var(--t2);
	border: 1.5px solid var(--border);
	border-radius: 100px;
	padding: 10px 32px;
	cursor: pointer;
	transition: all .2s;
}

.zstack_media_btn-pill:hover {
	border-color: var(--blue);
	color: var(--blue);
}

/* ─── HERO ────────────────────────────────────────────── */
/* design.zstack_media_md: linear-gradient(180deg, #f0f6ff 0%, #ffffff 60%) + grid + glow */
.zstack_media_hero-wrap {
	background: linear-gradient(180deg, #f0f6ff 0%, #ffffff 60%);
	position: relative;
	overflow: hidden;
	padding-top: 100px;
}

/* Grid background */
.zstack_media_hero-wrap::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(0, 87, 156, .06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 87, 156, .06) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 20%, transparent 70%);
}

/* Glow */
.zstack_media_hero-wrap::after {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 55% 45% at 20% 60%, rgba(0, 87, 156, .06) 0%, transparent 65%),
		radial-gradient(ellipse 50% 40% at 80% 40%, rgba(230, 81, 0, .04) 0%, transparent 65%);
}

.zstack_media_hero-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 80px 32px 96px;
	display: grid;
	grid-template-columns: 1fr 460px;
	gap: 72px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.zstack_media_hero-left {
	display: flex;
	flex-direction: column;
}

.zstack_media_hero-bc {
	font-size: 13px;
	font-weight: 600;
	color: var(--blue);
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 24px;
	cursor: pointer;
}

.zstack_media_hero-bc svg {
	width: 14px;
	height: 14px;
	stroke: var(--blue);
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
}

/* design.zstack_media_md 5.7: hero-badge — orange pill with pulse dot */
.zstack_media_hero-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-family: var(--mono);
	color: var(--orange);
	background: var(--orange-dim);
	border: 1px solid rgba(230, 81, 0, .22);
	border-radius: 100px;
	padding: 6px 16px;
	margin-bottom: 22px;
	align-self: flex-start;
}

.zstack_media_hero-label-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--orange);
	flex-shrink: 0;
	animation: pulse 2s infinite;
}

@keyframes pulse {

	0%,
	100% {
		opacity: 1;
		transform: scale(1)
	}

	50% {
		opacity: .6;
		transform: scale(1.35)
	}
}

/* design.zstack_media_md H1: weight 900, first line dark, second line blue gradient */
.zstack_media_hero-h1 {
	font-size: clamp(26px, 3.6vw, 44px);
	font-weight: 900;
	letter-spacing: -0.04em;
	line-height: 1.04;
	margin-bottom: 22px;
	color: var(--t1);
}

/* gradient span for semantic highlight line */
.zstack_media_hero-h1 .zstack_media_h1-accent {
	background: linear-gradient(125deg, var(--blue) 0%, #0277bd 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.zstack_media_hero-p {
	font-size: 17px;
	color: var(--t2);
	line-height: 1.72;
	max-width: 500px;
	margin-bottom: 36px;
}

.zstack_media_hero-btns {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

/* Hero right: trust map */
.zstack_media_hero-right-col {
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 1;
}

.zstack_media_trust-map {
	background: rgba(255, 255, 255, .82);
	border: 1px solid var(--border-hi);
	border-radius: var(--radius) var(--radius) 0 0;
	padding: 20px 16px;
	backdrop-filter: blur(8px);
}

.zstack_media_hero-credibility {
	display: flex;
	align-items: stretch;
	background: var(--bg-card);
	border: 1px solid var(--border-hi);
	border-top: none;
	border-radius: 0 0 var(--radius) var(--radius);
	overflow: hidden;
	box-shadow: 0 4px 16px -4px rgba(0, 87, 156, .12);
}

.zstack_media_hc-item {
	flex: 1;
	padding: 18px 20px;
	text-align: center;
}

/* design.zstack_media_md: stat numbers 32-44px, weight 900, --mono */
.zstack_media_hc-val {
	font-size: 24px;
	font-weight: 900;
	letter-spacing: -0.04em;
	color: var(--blue);
	line-height: 1;
	font-family: var(--mono);
}

.zstack_media_hc-label {
	font-size: 11px;
	color: var(--t3);
	margin-top: 5px;
	line-height: 1.4;
}

.zstack_media_hc-div {
	width: 1px;
	background: var(--border);
	flex-shrink: 0;
}

.zstack_media_hero-divider {
	border: none;
	border-bottom: 1px dashed var(--border);
	margin: 0;
}

/* ─── SECTION SHARED ──────────────────────────────────── */
/* design.zstack_media_md: H2 clamp(28px, 3.8vw, 46px), weight 800 */
.zstack_media_sec-title {
	font-size: clamp(26px, 3.8vw, 44px);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.1;
	color: var(--t1);
}

.zstack_media_sec-sub {
	font-size: 17px;
	color: var(--t2);
	line-height: 1.72;
}

.zstack_media_eyebrow {
	display: inline-flex;
	align-items: center;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	font-family: var(--mono);
	color: var(--blue);
	background: var(--blue-faint);
	border: 1px solid var(--border-hi);
	border-radius: 100px;
	padding: 4px 14px;
	margin-bottom: 12px;
}

/* ─── BENEFITS A ──────────────────────────────────────── */
/* design.zstack_media_md: --bg section */
.zstack_media_sec-bene-a {
	background: var(--bg);
	padding: 120px 0;
}

.zstack_media_bene-a-hd {
	text-align: center;
	margin-bottom: 72px;
}

.zstack_media_bene-a-hd .zstack_media_sec-title {
	margin-bottom: 18px;
}

.zstack_media_bene-cols {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	text-align: center;
}

.zstack_media_bcol {}

.zstack_media_bcol-icon {
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
}

.zstack_media_bcol-h {
	font-size: 19px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--t1);
	margin-bottom: 12px;
}

.zstack_media_bcol-p {
	font-size: 15px;
	color: var(--t2);
	line-height: 1.7;
}

/* ─── BENEFITS B ──────────────────────────────────────── */
/* design.zstack_media_md: --bg-alt section */
.zstack_media_sec-bene-b {
	background: var(--bg-alt);
	padding: 120px 0;
}

.zstack_media_bene-b-hd {
	text-align: center;
	margin-bottom: 56px;
}

.zstack_media_bene-b-cols {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* design.zstack_media_md: card with top color bar, 14px radius, hover translateY(-3px) */
.zstack_media_bbc {
	display: flex;
	flex-direction: column;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	transition: border-color .2s, transform .2s, box-shadow .2s;
	position: relative;
}

.zstack_media_bbc:hover {
	border-color: var(--border-hi);
	transform: translateY(-3px);
	box-shadow: 0 12px 32px -8px rgba(0, 87, 156, .10);
}

/* top color bar - sequential gradients per design.zstack_media_md */
.zstack_media_bbc:nth-child(1)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--blue), #0277bd);
}

.zstack_media_bbc:nth-child(2)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--teal), var(--blue));
}

.zstack_media_bbc:nth-child(3)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--orange), #ff8a65);
}

.zstack_media_bbc-hd {
	background: var(--blue);
	padding: 28px 26px;
	position: relative;
}

.zstack_media_bbc-hd::after {
	content: '';
	position: absolute;
	bottom: -14px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 14px solid transparent;
	border-right: 14px solid transparent;
	border-top: 15px solid var(--blue);
}

.zstack_media_bbc-hd-title {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	line-height: 1.3;
	text-align: center;
}

.zstack_media_bbc-body {
	background: var(--bg-card);
	padding: 36px 22px 30px;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.zstack_media_bbc-p {
	font-size: 14px;
	color: var(--t2);
	line-height: 1.72;
	flex: 1;
	margin-bottom: 24px;
}

.zstack_media_btn-learn {
	font-family: var(--font);
	font-size: 13px;
	font-weight: 700;
	background: var(--blue);
	color: #fff;
	border: none;
	border-radius: 100px;
	padding: 9px 22px;
	cursor: pointer;
	transition: background .15s;
}

.zstack_media_btn-learn:hover {
	background: var(--blue-dim);
}

/* ─── USE CASES ────────────────────────────────────────── */
/* design.zstack_media_md: --bg section */
.zstack_media_sec-uc {
	background: var(--bg);
	padding: 120px 0;
}

.zstack_media_uc-hd {
	text-align: center;
	margin-bottom: 72px;
}

.zstack_media_uc-layout {
	display: grid;
	grid-template-columns: 1fr 520px;
	gap: 72px;
	align-items: start;
}

.zstack_media_uc-list {
	display: flex;
	flex-direction: column;
}

.zstack_media_uc-item {
	padding: 32px 0;
	border-bottom: 1px solid var(--border);
}

.zstack_media_uc-item:first-child {
	border-top: 1px solid var(--border);
}

.zstack_media_uc-item-h {
	font-size: 18px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--t1);
	margin-bottom: 10px;
}

.zstack_media_uc-item-p {
	font-size: 14px;
	color: var(--t2);
	line-height: 1.72;
	margin-bottom: 12px;
}

.zstack_media_uc-link {
	font-size: 13px;
	font-weight: 700;
	color: var(--blue);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	border-bottom: 1px solid rgba(0, 87, 156, .3);
	transition: border-color .2s;
}

.zstack_media_uc-link svg {
	width: 13px;
	height: 13px;
	stroke: var(--blue);
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
}

.zstack_media_uc-link:hover {
	border-color: var(--blue);
}

/* Mockup */
.zstack_media_uc-mockup {
	position: sticky;
	top: 130px;
}

.zstack_media_mockup-shell {
	background: var(--t1);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(0, 0, 0, .18), 0 0 0 1px rgba(0, 87, 156, .15);
}

.zstack_media_mockup-bar {
	background: #1e2530;
	height: 36px;
	display: flex;
	align-items: center;
	padding: 0 16px;
	gap: 8px;
}

.zstack_media_mockup-dot {
	width: 11px;
	height: 11px;
	border-radius: 50%;
}

.zstack_media_mockup-title {
	font-size: 11px;
	color: rgba(255, 255, 255, .35);
	margin-left: 8px;
}

.zstack_media_mockup-body {
	background: #161b22;
	display: grid;
	grid-template-columns: 190px 1fr;
}

.zstack_media_mockup-sidebar {
	background: #1a1f2e;
	padding: 16px 0;
	border-right: 1px solid rgba(255, 255, 255, .06);
}

.zstack_media_ms-section {
	padding: 8px 16px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .28);
	margin-top: 8px;
}

.zstack_media_ms-item {
	padding: 9px 20px;
	font-size: 12px;
	color: rgba(255, 255, 255, .45);
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: background .15s;
}

.zstack_media_ms-item:hover {
	background: rgba(0, 87, 156, .15);
	color: rgba(255, 255, 255, .8);
}

.zstack_media_ms-item.zstack_media_act {
	background: rgba(0, 87, 156, .25);
	color: #7badd4;
}

.zstack_media_ms-item svg {
	width: 13px;
	height: 13px;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.5;
	opacity: .7;
}

.zstack_media_mockup-main {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.zstack_media_mm-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 4px;
}

.zstack_media_mm-title {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
}

.zstack_media_mm-badge {
	background: rgba(0, 87, 156, .4);
	color: #7badd4;
	font-size: 10px;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 4px;
}

.zstack_media_mm-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
}

.zstack_media_mm-card {
	background: #1e2530;
	padding: 14px;
	border: 1px solid rgba(255, 255, 255, .06);
	border-radius: 6px;
}

.zstack_media_mm-card-label {
	font-size: 9px;
	color: rgba(255, 255, 255, .35);
	margin-bottom: 6px;
	letter-spacing: .05em;
	text-transform: uppercase;
}

.zstack_media_mm-card-val {
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	letter-spacing: -0.02em;
}

.zstack_media_mm-card-sub {
	font-size: 10px;
	color: #4caf50;
	margin-top: 3px;
}

.zstack_media_mm-table {
	background: #1e2530;
	border: 1px solid rgba(255, 255, 255, .06);
	border-radius: 6px;
	overflow: hidden;
}

.zstack_media_mm-table-hd {
	display: grid;
	grid-template-columns: 1fr 60px 70px 60px;
	padding: 8px 12px;
	border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.zstack_media_mm-th {
	font-size: 9px;
	font-weight: 700;
	color: rgba(255, 255, 255, .3);
	letter-spacing: .06em;
	text-transform: uppercase;
}

.zstack_media_mm-row {
	display: grid;
	grid-template-columns: 1fr 60px 70px 60px;
	padding: 9px 12px;
	border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.zstack_media_mm-row:last-child {
	border-bottom: none;
}

.zstack_media_mm-td {
	font-size: 11px;
	color: rgba(255, 255, 255, .6);
}

.zstack_media_mm-td.zstack_media_pri {
	color: #7badd4;
	font-weight: 600;
}

.zstack_media_mm-td.zstack_media_grn {
	color: #4caf50;
}

.zstack_media_mm-td.zstack_media_ora {
	color: #ff9800;
}

/* ─── CUSTOMERS ────────────────────────────────────────── */
/* design.zstack_media_md: --bg-alt section */
.zstack_media_sec-cust {
	background: var(--bg-alt);
	padding: 120px 0;
}

.zstack_media_cust-hd {
	text-align: center;
	margin-bottom: 64px;
}

.zstack_media_cust-hd .zstack_media_sec-title {
	margin-bottom: 16px;
}

.zstack_media_cust-hd-sub {
	font-size: 17px;
	color: var(--t2);
	max-width: 600px;
	margin: 0 auto;
}

.zstack_media_quote-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* design.zstack_media_md: card — white bg, border, 14px radius, hover translateY(-3px) */
.zstack_media_qcard {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding: 34px 28px;
	transition: border-color .2s, transform .2s, box-shadow .2s;
	position: relative;
}

.zstack_media_qcard:hover {
	border-color: var(--border-hi);
	transform: translateY(-3px);
	box-shadow: 0 12px 32px -8px rgba(0, 87, 156, .10);
}

/* top color bar per design.zstack_media_md sequence */
.zstack_media_qcard:nth-child(1)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--blue), #0277bd);
}

.zstack_media_qcard:nth-child(2)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--teal), var(--blue));
}

.zstack_media_qcard:nth-child(3)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--orange), #ff8a65);
}

.zstack_media_qcard-org-row {
	display: flex;
	align-items: center;
	gap: 14px;
}

.zstack_media_qcard-avatar {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	flex-shrink: 0;
	background: linear-gradient(135deg, var(--blue-faint), var(--teal-dim));
	display: grid;
	place-items: center;
	font-size: 22px;
}

.zstack_media_qcard-org-name {
	font-size: 14px;
	font-weight: 700;
	color: var(--t1);
}

.zstack_media_qcard-org-type {
	font-size: 12px;
	color: var(--t3);
}

.zstack_media_qcard-divider {
	height: 1px;
	background: var(--border);
}

.zstack_media_qcard-row {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.zstack_media_qcard-row-lbl {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--t3);
	font-family: var(--mono);
}

.zstack_media_qcard-row-txt {
	font-size: 13px;
	color: var(--t2);
	line-height: 1.65;
}

.zstack_media_qcard-result {
	background: rgba(46, 125, 50, .07);
	border: 1px solid rgba(46, 125, 50, .18);
	border-radius: 8px;
	padding: 14px 16px;
	margin-top: auto;
}

.zstack_media_qcard-result-lbl {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--green);
	font-family: var(--mono);
	margin-bottom: 5px;
}

.zstack_media_qcard-result-txt {
	font-size: 13px;
	font-weight: 500;
	color: var(--t1);
	line-height: 1.55;
}

.zstack_media_cust-more {
	text-align: center;
	margin-top: 48px;
}

/* ─── RESOURCES ────────────────────────────────────────── */
/* design.zstack_media_md: --bg section */
.zstack_media_sec-res {
	background: var(--bg);
	padding: 120px 0;
}

.zstack_media_res-hd {
	text-align: center;
	margin-bottom: 64px;
}

.zstack_media_res-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* design.zstack_media_md: card hover translateY(-3px) */
.zstack_media_rcard {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	text-align: center;
	transition: border-color .2s, transform .2s, box-shadow .2s;
}

.zstack_media_rcard:hover {
	border-color: var(--border-hi);
	transform: translateY(-3px);
	box-shadow: 0 12px 32px -8px rgba(0, 87, 156, .10);
}

.zstack_media_rcard-cover {
	height: 200px;
	background: var(--bg-alt);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	border-bottom: 1px solid var(--border);
}

.zstack_media_rcard-cover::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 70% 70% at 50% 60%, rgba(0, 87, 156, .06) 0%, transparent 70%);
}

.zstack_media_rcard-doc {
	position: relative;
	z-index: 1;
	width: 108px;
	height: 140px;
	border-radius: 4px 8px 8px 4px;
	box-shadow: 4px 8px 24px rgba(0, 0, 0, .15), -2px 2px 8px rgba(0, 0, 0, .08);
	transform: rotate(-4deg) translateY(4px);
	transition: transform .25s;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.zstack_media_rcard:hover .zstack_media_rcard-doc {
	transform: rotate(-2deg) translateY(0);
}

.zstack_media_rcard-doc.zstack_media_doc-blue {
	background: linear-gradient(160deg, var(--blue) 0%, #0277bd 100%);
}

.zstack_media_rcard-doc.zstack_media_doc-dark {
	background: linear-gradient(160deg, #1a2332 0%, #243447 100%);
}

.zstack_media_rcard-doc.zstack_media_doc-navy {
	background: linear-gradient(160deg, #1e3a5f 0%, #2d5a8e 100%);
}

.zstack_media_rcard-doc::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 6px;
	background: rgba(255, 255, 255, .15);
}

.zstack_media_rcard-doc::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 0;
	height: 0;
	border-left: 18px solid rgba(255, 255, 255, .08);
	border-bottom: 18px solid transparent;
	border-top: 18px solid rgba(255, 255, 255, .22);
}

.zstack_media_rcard-doc-inner {
	padding: 14px 12px 12px 16px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex: 1;
}

.zstack_media_rcd-brand {
	font-size: 7px;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .6);
	font-family: var(--mono);
}

.zstack_media_rcd-rule {
	height: 1px;
	background: rgba(255, 255, 255, .18);
}

.zstack_media_rcd-title {
	font-size: 9.5px;
	font-weight: 700;
	color: #fff;
	line-height: 1.4;
	margin-top: 2px;
}

.zstack_media_rcd-sub {
	font-size: 7.5px;
	color: rgba(255, 255, 255, .5);
	line-height: 1.45;
	margin-top: 1px;
}

.zstack_media_rcd-spacer {
	flex: 1;
}

.zstack_media_rcd-footer {
	font-size: 7px;
	color: rgba(255, 255, 255, .35);
	font-family: var(--mono);
	letter-spacing: .04em;
	text-transform: uppercase;
}

.zstack_media_rcard-cover-badge {
	position: absolute;
	bottom: 14px;
	right: 14px;
	background: rgba(255, 255, 255, .15);
	font-size: 9px;
	font-weight: 700;
	color: rgba(255, 255, 255, .85);
	padding: 4px 8px;
	letter-spacing: .06em;
	text-transform: uppercase;
	font-family: var(--mono);
	border-radius: 4px;
}

.zstack_media_rcard-body {
	padding: 24px 24px 28px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.zstack_media_rcard-type {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--blue);
	margin-bottom: 8px;
	font-family: var(--mono);
}

.zstack_media_rcard-h {
	font-size: 17px;
	font-weight: 800;
	color: var(--t1);
	line-height: 1.35;
	margin-bottom: 10px;
	flex: 1;
	letter-spacing: -.01em;
}

.zstack_media_rcard-sub {
	font-size: 13px;
	color: var(--t2);
	line-height: 1.65;
	margin-bottom: 18px;
}

.zstack_media_rcard-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 700;
	color: var(--t1);
	cursor: pointer;
	margin-top: auto;
	transition: color .15s;
}

.zstack_media_rcard-cta svg {
	width: 13px;
	height: 13px;
	stroke: currentColor;
	fill: none;
	stroke-width: 2.5;
	stroke-linecap: round;
}

.zstack_media_rcard-cta:hover {
	color: var(--blue);
}

.zstack_media_res-more {
	text-align: center;
	margin-top: 48px;
}

/* ─── GET STARTED CTA ──────────────────────────────────── */
/* design.zstack_media_md: linear-gradient(160deg, #00579c 0%, #003a6e 55%, #1a2744 100%) + grid overlay */
.zstack_media_sec-gs {
	padding: 140px 32px 120px;
	text-align: center;
	position: relative;
	overflow: hidden;
	background: linear-gradient(160deg, #00579c 0%, #003a6e 55%, #1a2744 100%);
}

.zstack_media_sec-gs::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
	background-size: 48px 48px;
}

.zstack_media_gs-title {
	font-size: clamp(32px, 5vw, 52px);
	font-weight: 900;
	letter-spacing: -0.04em;
	color: #fff;
	margin-bottom: 16px;
	line-height: 1.05;
	position: relative;
	z-index: 1;
}

.zstack_media_gs-sub {
	font-size: 17px;
	color: rgba(255, 255, 255, .72);
	max-width: 540px;
	margin: 0 auto 44px;
	line-height: 1.65;
	position: relative;
	z-index: 1;
}

.zstack_media_gs-btns {
	display: flex;
	gap: 14px;
	justify-content: center;
	margin-bottom: 64px;
	position: relative;
	z-index: 1;
}

/* design.zstack_media_md: outline-white buttons on dark bg */
.zstack_media_btn-gs-p {
	font-family: var(--font);
	font-size: 15px;
	font-weight: 700;
	background: #fff;
	color: var(--blue);
	border: none;
	border-radius: 8px;
	padding: 14px 32px;
	cursor: pointer;
	transition: all .2s;
}

.zstack_media_btn-gs-p:hover {
	box-shadow: 0 0 28px 8px rgba(255, 255, 255, .25);
}

.zstack_media_btn-gs-s {
	font-family: var(--font);
	font-size: 15px;
	font-weight: 600;
	background: transparent;
	color: #fff;
	border: 1.5px solid rgba(255, 255, 255, .4);
	border-radius: 8px;
	padding: 13px 28px;
	cursor: pointer;
	transition: border-color .2s;
}

.zstack_media_btn-gs-s:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, .08);
}

.zstack_media_gs-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	max-width: 720px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

/* design.zstack_media_md: deep-dark bg cards */
.zstack_media_gs-card {
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 16px;
	padding: 32px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	transition: all .2s;
}

.zstack_media_gs-card:hover {
	background: rgba(255, 255, 255, .14);
	transform: translateY(-2px);
}

.zstack_media_gs-card-icon {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.zstack_media_gs-card-icon svg {
	width: 26px;
	height: 26px;
	stroke: rgba(255, 255, 255, .85);
	fill: none;
	stroke-width: 1.5;
	stroke-linecap: round;
}

.zstack_media_gs-card-title {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
}

.zstack_media_gs-card-sub {
	font-size: 12px;
	color: rgba(255, 255, 255, .58);
	text-align: center;
	line-height: 1.5;
}



/* ─── Proof block (replaces trust map for non-map industries) ── */
.zstack_media_proof-block {
	min-height: 220px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(0, 87, 156, .05) 0%, rgba(0, 87, 156, .02) 100%);
}

.zstack_media_proof-inner {
	width: 100%;
	padding: 32px 28px;
}

.zstack_media_proof-title {
	font-size: 17px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--t1);
	line-height: 1.3;
	margin-bottom: 28px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--border);
}

.zstack_media_proof-items {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.zstack_media_proof-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.zstack_media_proof-dot {
	width: 2px;
	height: 20px;
	background: var(--blue);
	border-radius: 2px;
	flex-shrink: 0;
	margin-top: 3px;
}

.zstack_media_proof-text {
	font-size: 15px;
	font-weight: 600;
	color: var(--t2);
	line-height: 1.5;
}

/* ─── Responsive ───────────────────────────────────────── */
@media (max-width: 960px) {

	.zstack_media_hero-inner,
	.zstack_media_uc-layout {
		grid-template-columns: 1fr;
	}

	.zstack_media_bene-cols,
	.zstack_media_bene-b-cols,
	.zstack_media_quote-row,
	.zstack_media_res-row,
	.zstack_media_gs-cards {
		grid-template-columns: 1fr;
	}

	.zstack_media_sf-top {
		grid-template-columns: 1fr;
		gap: 40px;
	}

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

	.nav-links {
		display: none;
	}
}

/* ═══════════ zstack-telecom.html ═══════════ */
/* ─── Reset ─────────────────────────────────────────── */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	/* Backgrounds */
	--bg: #ffffff;
	--bg-alt: #f8fafc;
	--bg-card: #ffffff;

	/* Primary */
	--blue: #00579c;
	--blue-dim: #004a85;
	--blue-glow: rgba(0, 87, 156, 0.22);
	--blue-faint: rgba(0, 87, 156, 0.07);
	--blue-mid: rgba(0, 87, 156, 0.14);

	/* Accent */
	--orange: #e65100;
	--orange-dim: rgba(230, 81, 0, 0.10);
	--teal: #00897b;
	--teal-dim: rgba(0, 137, 123, 0.10);
	--green: #2e7d32;

	/* Borders */
	--border: rgba(148, 163, 184, 0.28);
	--border-hi: rgba(0, 87, 156, 0.20);

	/* Text */
	--t1: #0f172a;
	--t2: #475569;
	--t3: #94a3b8;

	--font: 'Inter', system-ui, sans-serif;
	--mono: 'JetBrains Mono', monospace;
	--radius: 14px;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font);
	background: var(--bg);
	color: var(--t1);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

/* ─── Fade animation ─────────────────────────────────── */
.zstack_telecom_fade {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .6s ease, transform .6s ease;
}

.zstack_telecom_fade.zstack_telecom_in {
	opacity: 1;
	transform: none;
}

/* ─── Layout ─────────────────────────────────────────── */
.zstack_telecom_inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 32px;
}

/* ─── Label chip ─────────────────────────────────────── */
.zstack_telecom_lbl {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	font-family: var(--mono);
	color: var(--blue);
	background: var(--blue-faint);
	border: 1px solid var(--border-hi);
	border-radius: 100px;
	padding: 4px 14px;
}

/* ─── SHARED BUTTONS ──────────────────────────────────── */
/* design.zstack_telecom_md: btn--primary with glow, btn--ghost */
.zstack_telecom_btn-p {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font);
	font-size: 15px;
	font-weight: 700;
	background: var(--blue);
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 13px 26px;
	cursor: pointer;
	transition: all .2s;
}

.zstack_telecom_btn-p:hover {
	background: var(--blue-dim);
	box-shadow: 0 0 28px 8px var(--blue-glow);
}

.zstack_telecom_btn-s {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font);
	font-size: 15px;
	font-weight: 600;
	background: transparent;
	color: var(--t1);
	border: 1.5px solid var(--border);
	border-radius: 8px;
	padding: 12px 24px;
	cursor: pointer;
	transition: all .2s;
}

.zstack_telecom_btn-s:hover {
	border-color: var(--blue);
	color: var(--blue);
}

.zstack_telecom_btn-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font);
	font-size: 14px;
	font-weight: 600;
	background: transparent;
	color: var(--t2);
	border: 1.5px solid var(--border);
	border-radius: 100px;
	padding: 10px 32px;
	cursor: pointer;
	transition: all .2s;
}

.zstack_telecom_btn-pill:hover {
	border-color: var(--blue);
	color: var(--blue);
}

/* ─── HERO ────────────────────────────────────────────── */
/* design.zstack_telecom_md: linear-gradient(180deg, #f0f6ff 0%, #ffffff 60%) + grid + glow */
.zstack_telecom_hero-wrap {
	background: linear-gradient(180deg, #f0f6ff 0%, #ffffff 60%);
	position: relative;
	overflow: hidden;
	padding-top: 100px;
}

/* Grid background */
.zstack_telecom_hero-wrap::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(0, 87, 156, .06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 87, 156, .06) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 20%, transparent 70%);
}

/* Glow */
.zstack_telecom_hero-wrap::after {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 55% 45% at 20% 60%, rgba(0, 87, 156, .06) 0%, transparent 65%),
		radial-gradient(ellipse 50% 40% at 80% 40%, rgba(230, 81, 0, .04) 0%, transparent 65%);
}

.zstack_telecom_hero-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 80px 32px 96px;
	display: grid;
	grid-template-columns: 1fr 460px;
	gap: 72px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.zstack_telecom_hero-left {
	display: flex;
	flex-direction: column;
}

.zstack_telecom_hero-bc {
	font-size: 13px;
	font-weight: 600;
	color: var(--blue);
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 24px;
	cursor: pointer;
}

.zstack_telecom_hero-bc svg {
	width: 14px;
	height: 14px;
	stroke: var(--blue);
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
}

/* design.zstack_telecom_md 5.7: hero-badge — orange pill with pulse dot */
.zstack_telecom_hero-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-family: var(--mono);
	color: var(--orange);
	background: var(--orange-dim);
	border: 1px solid rgba(230, 81, 0, .22);
	border-radius: 100px;
	padding: 6px 16px;
	margin-bottom: 22px;
	align-self: flex-start;
}

.zstack_telecom_hero-label-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--orange);
	flex-shrink: 0;
	animation: pulse 2s infinite;
}

@keyframes pulse {

	0%,
	100% {
		opacity: 1;
		transform: scale(1)
	}

	50% {
		opacity: .6;
		transform: scale(1.35)
	}
}

/* design.zstack_telecom_md H1: weight 900, first line dark, second line blue gradient */
.zstack_telecom_hero-h1 {
	font-size: clamp(26px, 3.6vw, 44px);
	font-weight: 900;
	letter-spacing: -0.04em;
	line-height: 1.04;
	margin-bottom: 22px;
	color: var(--t1);
}

/* gradient span for semantic highlight line */
.zstack_telecom_hero-h1 .zstack_telecom_h1-accent {
	background: linear-gradient(125deg, var(--blue) 0%, #0277bd 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.zstack_telecom_hero-p {
	font-size: 17px;
	color: var(--t2);
	line-height: 1.72;
	max-width: 500px;
	margin-bottom: 36px;
}

.zstack_telecom_hero-btns {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

/* Hero right: trust map */
.zstack_telecom_hero-right-col {
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 1;
}

.zstack_telecom_trust-map {
	background: rgba(255, 255, 255, .82);
	border: 1px solid var(--border-hi);
	border-radius: var(--radius) var(--radius) 0 0;
	padding: 20px 16px;
	backdrop-filter: blur(8px);
}

.zstack_telecom_hero-credibility {
	display: flex;
	align-items: stretch;
	background: var(--bg-card);
	border: 1px solid var(--border-hi);
	border-top: none;
	border-radius: 0 0 var(--radius) var(--radius);
	overflow: hidden;
	box-shadow: 0 4px 16px -4px rgba(0, 87, 156, .12);
}

.zstack_telecom_hc-item {
	flex: 1;
	padding: 18px 20px;
	text-align: center;
}

/* design.zstack_telecom_md: stat numbers 32-44px, weight 900, --mono */
.zstack_telecom_hc-val {
	font-size: 24px;
	font-weight: 900;
	letter-spacing: -0.04em;
	color: var(--blue);
	line-height: 1;
	font-family: var(--mono);
}

.zstack_telecom_hc-label {
	font-size: 11px;
	color: var(--t3);
	margin-top: 5px;
	line-height: 1.4;
}

.zstack_telecom_hc-div {
	width: 1px;
	background: var(--border);
	flex-shrink: 0;
}

.zstack_telecom_hero-divider {
	border: none;
	border-bottom: 1px dashed var(--border);
	margin: 0;
}

/* ─── SECTION SHARED ──────────────────────────────────── */
/* design.zstack_telecom_md: H2 clamp(28px, 3.8vw, 46px), weight 800 */
.zstack_telecom_sec-title {
	font-size: clamp(26px, 3.8vw, 44px);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.1;
	color: var(--t1);
}

.zstack_telecom_sec-sub {
	font-size: 17px;
	color: var(--t2);
	line-height: 1.72;
}

.zstack_telecom_eyebrow {
	display: inline-flex;
	align-items: center;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	font-family: var(--mono);
	color: var(--blue);
	background: var(--blue-faint);
	border: 1px solid var(--border-hi);
	border-radius: 100px;
	padding: 4px 14px;
	margin-bottom: 12px;
}

/* ─── BENEFITS A ──────────────────────────────────────── */
/* design.zstack_telecom_md: --bg section */
.zstack_telecom_sec-bene-a {
	background: var(--bg);
	padding: 120px 0;
}

.zstack_telecom_bene-a-hd {
	text-align: center;
	margin-bottom: 72px;
}

.zstack_telecom_bene-a-hd .zstack_telecom_sec-title {
	margin-bottom: 18px;
}

.zstack_telecom_bene-cols {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	text-align: center;
}

.zstack_telecom_bcol {}

.zstack_telecom_bcol-icon {
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
}

.zstack_telecom_bcol-h {
	font-size: 19px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--t1);
	margin-bottom: 12px;
}

.zstack_telecom_bcol-p {
	font-size: 15px;
	color: var(--t2);
	line-height: 1.7;
}

/* ─── BENEFITS B ──────────────────────────────────────── */
/* design.zstack_telecom_md: --bg-alt section */
.zstack_telecom_sec-bene-b {
	background: var(--bg-alt);
	padding: 120px 0;
}

.zstack_telecom_bene-b-hd {
	text-align: center;
	margin-bottom: 56px;
}

.zstack_telecom_bene-b-cols {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* design.zstack_telecom_md: card with top color bar, 14px radius, hover translateY(-3px) */
.zstack_telecom_bbc {
	display: flex;
	flex-direction: column;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	transition: border-color .2s, transform .2s, box-shadow .2s;
	position: relative;
}

.zstack_telecom_bbc:hover {
	border-color: var(--border-hi);
	transform: translateY(-3px);
	box-shadow: 0 12px 32px -8px rgba(0, 87, 156, .10);
}

/* top color bar - sequential gradients per design.zstack_telecom_md */
.zstack_telecom_bbc:nth-child(1)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--blue), #0277bd);
}

.zstack_telecom_bbc:nth-child(2)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--teal), var(--blue));
}

.zstack_telecom_bbc:nth-child(3)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--orange), #ff8a65);
}

.zstack_telecom_bbc-hd {
	background: var(--blue);
	padding: 28px 26px;
	position: relative;
}

.zstack_telecom_bbc-hd::after {
	content: '';
	position: absolute;
	bottom: -14px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 14px solid transparent;
	border-right: 14px solid transparent;
	border-top: 15px solid var(--blue);
}

.zstack_telecom_bbc-hd-title {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	line-height: 1.3;
	text-align: center;
}

.zstack_telecom_bbc-body {
	background: var(--bg-card);
	padding: 36px 22px 30px;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.zstack_telecom_bbc-p {
	font-size: 14px;
	color: var(--t2);
	line-height: 1.72;
	flex: 1;
	margin-bottom: 24px;
}

.zstack_telecom_btn-learn {
	font-family: var(--font);
	font-size: 13px;
	font-weight: 700;
	background: var(--blue);
	color: #fff;
	border: none;
	border-radius: 100px;
	padding: 9px 22px;
	cursor: pointer;
	transition: background .15s;
}

.zstack_telecom_btn-learn:hover {
	background: var(--blue-dim);
}

/* ─── USE CASES ────────────────────────────────────────── */
/* design.zstack_telecom_md: --bg section */
.zstack_telecom_sec-uc {
	background: var(--bg);
	padding: 120px 0;
}

.zstack_telecom_uc-hd {
	text-align: center;
	margin-bottom: 72px;
}

.zstack_telecom_uc-layout {
	display: grid;
	grid-template-columns: 1fr 520px;
	gap: 72px;
	align-items: start;
}

.zstack_telecom_uc-list {
	display: flex;
	flex-direction: column;
}

.zstack_telecom_uc-item {
	padding: 32px 0;
	border-bottom: 1px solid var(--border);
}

.zstack_telecom_uc-item:first-child {
	border-top: 1px solid var(--border);
}

.zstack_telecom_uc-item-h {
	font-size: 18px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--t1);
	margin-bottom: 10px;
}

.zstack_telecom_uc-item-p {
	font-size: 14px;
	color: var(--t2);
	line-height: 1.72;
	margin-bottom: 12px;
}

.zstack_telecom_uc-link {
	font-size: 13px;
	font-weight: 700;
	color: var(--blue);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	border-bottom: 1px solid rgba(0, 87, 156, .3);
	transition: border-color .2s;
}

.zstack_telecom_uc-link svg {
	width: 13px;
	height: 13px;
	stroke: var(--blue);
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
}

.zstack_telecom_uc-link:hover {
	border-color: var(--blue);
}

/* Mockup */
.zstack_telecom_uc-mockup {
	position: sticky;
	top: 130px;
}

.zstack_telecom_mockup-shell {
	background: var(--t1);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(0, 0, 0, .18), 0 0 0 1px rgba(0, 87, 156, .15);
}

.zstack_telecom_mockup-bar {
	background: #1e2530;
	height: 36px;
	display: flex;
	align-items: center;
	padding: 0 16px;
	gap: 8px;
}

.zstack_telecom_mockup-dot {
	width: 11px;
	height: 11px;
	border-radius: 50%;
}

.zstack_telecom_mockup-title {
	font-size: 11px;
	color: rgba(255, 255, 255, .35);
	margin-left: 8px;
}

.zstack_telecom_mockup-body {
	background: #161b22;
	display: grid;
	grid-template-columns: 190px 1fr;
}

.zstack_telecom_mockup-sidebar {
	background: #1a1f2e;
	padding: 16px 0;
	border-right: 1px solid rgba(255, 255, 255, .06);
}

.zstack_telecom_ms-section {
	padding: 8px 16px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .28);
	margin-top: 8px;
}

.zstack_telecom_ms-item {
	padding: 9px 20px;
	font-size: 12px;
	color: rgba(255, 255, 255, .45);
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: background .15s;
}

.zstack_telecom_ms-item:hover {
	background: rgba(0, 87, 156, .15);
	color: rgba(255, 255, 255, .8);
}

.zstack_telecom_ms-item.zstack_telecom_act {
	background: rgba(0, 87, 156, .25);
	color: #7badd4;
}

.zstack_telecom_ms-item svg {
	width: 13px;
	height: 13px;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.5;
	opacity: .7;
}

.zstack_telecom_mockup-main {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.zstack_telecom_mm-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 4px;
}

.zstack_telecom_mm-title {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
}

.zstack_telecom_mm-badge {
	background: rgba(0, 87, 156, .4);
	color: #7badd4;
	font-size: 10px;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 4px;
}

.zstack_telecom_mm-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
}

.zstack_telecom_mm-card {
	background: #1e2530;
	padding: 14px;
	border: 1px solid rgba(255, 255, 255, .06);
	border-radius: 6px;
}

.zstack_telecom_mm-card-label {
	font-size: 9px;
	color: rgba(255, 255, 255, .35);
	margin-bottom: 6px;
	letter-spacing: .05em;
	text-transform: uppercase;
}

.zstack_telecom_mm-card-val {
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	letter-spacing: -0.02em;
}

.zstack_telecom_mm-card-sub {
	font-size: 10px;
	color: #4caf50;
	margin-top: 3px;
}

.zstack_telecom_mm-table {
	background: #1e2530;
	border: 1px solid rgba(255, 255, 255, .06);
	border-radius: 6px;
	overflow: hidden;
}

.zstack_telecom_mm-table-hd {
	display: grid;
	grid-template-columns: 1fr 60px 70px 60px;
	padding: 8px 12px;
	border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.zstack_telecom_mm-th {
	font-size: 9px;
	font-weight: 700;
	color: rgba(255, 255, 255, .3);
	letter-spacing: .06em;
	text-transform: uppercase;
}

.zstack_telecom_mm-row {
	display: grid;
	grid-template-columns: 1fr 60px 70px 60px;
	padding: 9px 12px;
	border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.zstack_telecom_mm-row:last-child {
	border-bottom: none;
}

.zstack_telecom_mm-td {
	font-size: 11px;
	color: rgba(255, 255, 255, .6);
}

.zstack_telecom_mm-td.zstack_telecom_pri {
	color: #7badd4;
	font-weight: 600;
}

.zstack_telecom_mm-td.zstack_telecom_grn {
	color: #4caf50;
}

.zstack_telecom_mm-td.zstack_telecom_ora {
	color: #ff9800;
}

/* ─── CUSTOMERS ────────────────────────────────────────── */
/* design.zstack_telecom_md: --bg-alt section */
.zstack_telecom_sec-cust {
	background: var(--bg-alt);
	padding: 120px 0;
}

.zstack_telecom_cust-hd {
	text-align: center;
	margin-bottom: 64px;
}

.zstack_telecom_cust-hd .zstack_telecom_sec-title {
	margin-bottom: 16px;
}

.zstack_telecom_cust-hd-sub {
	font-size: 17px;
	color: var(--t2);
	max-width: 600px;
	margin: 0 auto;
}

.zstack_telecom_quote-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* design.zstack_telecom_md: card — white bg, border, 14px radius, hover translateY(-3px) */
.zstack_telecom_qcard {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding: 34px 28px;
	transition: border-color .2s, transform .2s, box-shadow .2s;
	position: relative;
}

.zstack_telecom_qcard:hover {
	border-color: var(--border-hi);
	transform: translateY(-3px);
	box-shadow: 0 12px 32px -8px rgba(0, 87, 156, .10);
}

/* top color bar per design.zstack_telecom_md sequence */
.zstack_telecom_qcard:nth-child(1)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--blue), #0277bd);
}

.zstack_telecom_qcard:nth-child(2)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--teal), var(--blue));
}

.zstack_telecom_qcard:nth-child(3)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--orange), #ff8a65);
}

.zstack_telecom_qcard-org-row {
	display: flex;
	align-items: center;
	gap: 14px;
}

.zstack_telecom_qcard-avatar {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	flex-shrink: 0;
	background: linear-gradient(135deg, var(--blue-faint), var(--teal-dim));
	display: grid;
	place-items: center;
	font-size: 22px;
}

.zstack_telecom_qcard-org-name {
	font-size: 14px;
	font-weight: 700;
	color: var(--t1);
}

.zstack_telecom_qcard-org-type {
	font-size: 12px;
	color: var(--t3);
}

.zstack_telecom_qcard-divider {
	height: 1px;
	background: var(--border);
}

.zstack_telecom_qcard-row {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.zstack_telecom_qcard-row-lbl {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--t3);
	font-family: var(--mono);
}

.zstack_telecom_qcard-row-txt {
	font-size: 13px;
	color: var(--t2);
	line-height: 1.65;
}

.zstack_telecom_qcard-result {
	background: rgba(46, 125, 50, .07);
	border: 1px solid rgba(46, 125, 50, .18);
	border-radius: 8px;
	padding: 14px 16px;
	margin-top: auto;
}

.zstack_telecom_qcard-result-lbl {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--green);
	font-family: var(--mono);
	margin-bottom: 5px;
}

.zstack_telecom_qcard-result-txt {
	font-size: 13px;
	font-weight: 500;
	color: var(--t1);
	line-height: 1.55;
}

.zstack_telecom_cust-more {
	text-align: center;
	margin-top: 48px;
}

/* ─── RESOURCES ────────────────────────────────────────── */
/* design.zstack_telecom_md: --bg section */
.zstack_telecom_sec-res {
	background: var(--bg);
	padding: 120px 0;
}

.zstack_telecom_res-hd {
	text-align: center;
	margin-bottom: 64px;
}

.zstack_telecom_res-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* design.zstack_telecom_md: card hover translateY(-3px) */
.zstack_telecom_rcard {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	text-align: center;
	transition: border-color .2s, transform .2s, box-shadow .2s;
}

.zstack_telecom_rcard:hover {
	border-color: var(--border-hi);
	transform: translateY(-3px);
	box-shadow: 0 12px 32px -8px rgba(0, 87, 156, .10);
}

.zstack_telecom_rcard-cover {
	height: 200px;
	background: var(--bg-alt);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	border-bottom: 1px solid var(--border);
}

.zstack_telecom_rcard-cover::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 70% 70% at 50% 60%, rgba(0, 87, 156, .06) 0%, transparent 70%);
}

.zstack_telecom_rcard-doc {
	position: relative;
	z-index: 1;
	width: 108px;
	height: 140px;
	border-radius: 4px 8px 8px 4px;
	box-shadow: 4px 8px 24px rgba(0, 0, 0, .15), -2px 2px 8px rgba(0, 0, 0, .08);
	transform: rotate(-4deg) translateY(4px);
	transition: transform .25s;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.zstack_telecom_rcard:hover .zstack_telecom_rcard-doc {
	transform: rotate(-2deg) translateY(0);
}

.zstack_telecom_rcard-doc.zstack_telecom_doc-blue {
	background: linear-gradient(160deg, var(--blue) 0%, #0277bd 100%);
}

.zstack_telecom_rcard-doc.zstack_telecom_doc-dark {
	background: linear-gradient(160deg, #1a2332 0%, #243447 100%);
}

.zstack_telecom_rcard-doc.zstack_telecom_doc-navy {
	background: linear-gradient(160deg, #1e3a5f 0%, #2d5a8e 100%);
}

.zstack_telecom_rcard-doc::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 6px;
	background: rgba(255, 255, 255, .15);
}

.zstack_telecom_rcard-doc::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 0;
	height: 0;
	border-left: 18px solid rgba(255, 255, 255, .08);
	border-bottom: 18px solid transparent;
	border-top: 18px solid rgba(255, 255, 255, .22);
}

.zstack_telecom_rcard-doc-inner {
	padding: 14px 12px 12px 16px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex: 1;
}

.zstack_telecom_rcd-brand {
	font-size: 7px;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .6);
	font-family: var(--mono);
}

.zstack_telecom_rcd-rule {
	height: 1px;
	background: rgba(255, 255, 255, .18);
}

.zstack_telecom_rcd-title {
	font-size: 9.5px;
	font-weight: 700;
	color: #fff;
	line-height: 1.4;
	margin-top: 2px;
}

.zstack_telecom_rcd-sub {
	font-size: 7.5px;
	color: rgba(255, 255, 255, .5);
	line-height: 1.45;
	margin-top: 1px;
}

.zstack_telecom_rcd-spacer {
	flex: 1;
}

.zstack_telecom_rcd-footer {
	font-size: 7px;
	color: rgba(255, 255, 255, .35);
	font-family: var(--mono);
	letter-spacing: .04em;
	text-transform: uppercase;
}

.zstack_telecom_rcard-cover-badge {
	position: absolute;
	bottom: 14px;
	right: 14px;
	background: rgba(255, 255, 255, .15);
	font-size: 9px;
	font-weight: 700;
	color: rgba(255, 255, 255, .85);
	padding: 4px 8px;
	letter-spacing: .06em;
	text-transform: uppercase;
	font-family: var(--mono);
	border-radius: 4px;
}

.zstack_telecom_rcard-body {
	padding: 24px 24px 28px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.zstack_telecom_rcard-type {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--blue);
	margin-bottom: 8px;
	font-family: var(--mono);
}

.zstack_telecom_rcard-h {
	font-size: 17px;
	font-weight: 800;
	color: var(--t1);
	line-height: 1.35;
	margin-bottom: 10px;
	flex: 1;
	letter-spacing: -.01em;
}

.zstack_telecom_rcard-sub {
	font-size: 13px;
	color: var(--t2);
	line-height: 1.65;
	margin-bottom: 18px;
}

.zstack_telecom_rcard-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 700;
	color: var(--t1);
	cursor: pointer;
	margin-top: auto;
	transition: color .15s;
}

.zstack_telecom_rcard-cta svg {
	width: 13px;
	height: 13px;
	stroke: currentColor;
	fill: none;
	stroke-width: 2.5;
	stroke-linecap: round;
}

.zstack_telecom_rcard-cta:hover {
	color: var(--blue);
}

.zstack_telecom_res-more {
	text-align: center;
	margin-top: 48px;
}

/* ─── GET STARTED CTA ──────────────────────────────────── */
/* design.zstack_telecom_md: linear-gradient(160deg, #00579c 0%, #003a6e 55%, #1a2744 100%) + grid overlay */
.zstack_telecom_sec-gs {
	padding: 140px 32px 120px;
	text-align: center;
	position: relative;
	overflow: hidden;
	background: linear-gradient(160deg, #00579c 0%, #003a6e 55%, #1a2744 100%);
}

.zstack_telecom_sec-gs::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
	background-size: 48px 48px;
}

.zstack_telecom_gs-title {
	font-size: clamp(32px, 5vw, 52px);
	font-weight: 900;
	letter-spacing: -0.04em;
	color: #fff;
	margin-bottom: 16px;
	line-height: 1.05;
	position: relative;
	z-index: 1;
}

.zstack_telecom_gs-sub {
	font-size: 17px;
	color: rgba(255, 255, 255, .72);
	max-width: 540px;
	margin: 0 auto 44px;
	line-height: 1.65;
	position: relative;
	z-index: 1;
}

.zstack_telecom_gs-btns {
	display: flex;
	gap: 14px;
	justify-content: center;
	margin-bottom: 64px;
	position: relative;
	z-index: 1;
}

/* design.zstack_telecom_md: outline-white buttons on dark bg */
.zstack_telecom_btn-gs-p {
	font-family: var(--font);
	font-size: 15px;
	font-weight: 700;
	background: #fff;
	color: var(--blue);
	border: none;
	border-radius: 8px;
	padding: 14px 32px;
	cursor: pointer;
	transition: all .2s;
}

.zstack_telecom_btn-gs-p:hover {
	box-shadow: 0 0 28px 8px rgba(255, 255, 255, .25);
}

.zstack_telecom_btn-gs-s {
	font-family: var(--font);
	font-size: 15px;
	font-weight: 600;
	background: transparent;
	color: #fff;
	border: 1.5px solid rgba(255, 255, 255, .4);
	border-radius: 8px;
	padding: 13px 28px;
	cursor: pointer;
	transition: border-color .2s;
}

.zstack_telecom_btn-gs-s:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, .08);
}

.zstack_telecom_gs-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	max-width: 720px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

/* design.zstack_telecom_md: deep-dark bg cards */
.zstack_telecom_gs-card {
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 16px;
	padding: 32px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	transition: all .2s;
}

.zstack_telecom_gs-card:hover {
	background: rgba(255, 255, 255, .14);
	transform: translateY(-2px);
}

.zstack_telecom_gs-card-icon {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.zstack_telecom_gs-card-icon svg {
	width: 26px;
	height: 26px;
	stroke: rgba(255, 255, 255, .85);
	fill: none;
	stroke-width: 1.5;
	stroke-linecap: round;
}

.zstack_telecom_gs-card-title {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
}

.zstack_telecom_gs-card-sub {
	font-size: 12px;
	color: rgba(255, 255, 255, .58);
	text-align: center;
	line-height: 1.5;
}



/* ─── Proof block (replaces trust map for non-map industries) ── */
.zstack_telecom_proof-block {
	min-height: 220px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(0, 87, 156, .05) 0%, rgba(0, 87, 156, .02) 100%);
}

.zstack_telecom_proof-inner {
	width: 100%;
	padding: 32px 28px;
}

.zstack_telecom_proof-title {
	font-size: 17px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--t1);
	line-height: 1.3;
	margin-bottom: 28px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--border);
}

.zstack_telecom_proof-items {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.zstack_telecom_proof-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.zstack_telecom_proof-dot {
	width: 2px;
	height: 20px;
	background: var(--blue);
	border-radius: 2px;
	flex-shrink: 0;
	margin-top: 3px;
}

.zstack_telecom_proof-text {
	font-size: 15px;
	font-weight: 600;
	color: var(--t2);
	line-height: 1.5;
}

/* ─── Responsive ───────────────────────────────────────── */
@media (max-width: 960px) {

	.zstack_telecom_hero-inner,
	.zstack_telecom_uc-layout {
		grid-template-columns: 1fr;
	}

	.zstack_telecom_bene-cols,
	.zstack_telecom_bene-b-cols,
	.zstack_telecom_quote-row,
	.zstack_telecom_res-row,
	.zstack_telecom_gs-cards {
		grid-template-columns: 1fr;
	}

	.zstack_telecom_sf-top {
		grid-template-columns: 1fr;
		gap: 40px;
	}

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

	.nav-links {
		display: none;
	}
}

/* ═══════════ zstack-transportation.html ═══════════ */
/* ─── Reset ─────────────────────────────────────────── */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	/* Backgrounds */
	--bg: #ffffff;
	--bg-alt: #f8fafc;
	--bg-card: #ffffff;

	/* Primary */
	--blue: #00579c;
	--blue-dim: #004a85;
	--blue-glow: rgba(0, 87, 156, 0.22);
	--blue-faint: rgba(0, 87, 156, 0.07);
	--blue-mid: rgba(0, 87, 156, 0.14);

	/* Accent */
	--orange: #e65100;
	--orange-dim: rgba(230, 81, 0, 0.10);
	--teal: #00897b;
	--teal-dim: rgba(0, 137, 123, 0.10);
	--green: #2e7d32;

	/* Borders */
	--border: rgba(148, 163, 184, 0.28);
	--border-hi: rgba(0, 87, 156, 0.20);

	/* Text */
	--t1: #0f172a;
	--t2: #475569;
	--t3: #94a3b8;

	--font: 'Inter', system-ui, sans-serif;
	--mono: 'JetBrains Mono', monospace;
	--radius: 14px;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font);
	background: var(--bg);
	color: var(--t1);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

/* ─── Fade animation ─────────────────────────────────── */
.zstack_transportation_fade {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .6s ease, transform .6s ease;
}

.zstack_transportation_fade.zstack_transportation_in {
	opacity: 1;
	transform: none;
}

/* ─── Layout ─────────────────────────────────────────── */
.zstack_transportation_inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 32px;
}

/* ─── Label chip ─────────────────────────────────────── */
.zstack_transportation_lbl {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	font-family: var(--mono);
	color: var(--blue);
	background: var(--blue-faint);
	border: 1px solid var(--border-hi);
	border-radius: 100px;
	padding: 4px 14px;
}

/* ─── SHARED BUTTONS ──────────────────────────────────── */
/* design.zstack_transportation_md: btn--primary with glow, btn--ghost */
.zstack_transportation_btn-p {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font);
	font-size: 15px;
	font-weight: 700;
	background: var(--blue);
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 13px 26px;
	cursor: pointer;
	transition: all .2s;
}

.zstack_transportation_btn-p:hover {
	background: var(--blue-dim);
	box-shadow: 0 0 28px 8px var(--blue-glow);
}

.zstack_transportation_btn-s {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font);
	font-size: 15px;
	font-weight: 600;
	background: transparent;
	color: var(--t1);
	border: 1.5px solid var(--border);
	border-radius: 8px;
	padding: 12px 24px;
	cursor: pointer;
	transition: all .2s;
}

.zstack_transportation_btn-s:hover {
	border-color: var(--blue);
	color: var(--blue);
}

.zstack_transportation_btn-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font);
	font-size: 14px;
	font-weight: 600;
	background: transparent;
	color: var(--t2);
	border: 1.5px solid var(--border);
	border-radius: 100px;
	padding: 10px 32px;
	cursor: pointer;
	transition: all .2s;
}

.zstack_transportation_btn-pill:hover {
	border-color: var(--blue);
	color: var(--blue);
}

/* ─── HERO ────────────────────────────────────────────── */
/* design.zstack_transportation_md: linear-gradient(180deg, #f0f6ff 0%, #ffffff 60%) + grid + glow */
.zstack_transportation_hero-wrap {
	background: linear-gradient(180deg, #f0f6ff 0%, #ffffff 60%);
	position: relative;
	overflow: hidden;
	padding-top: 100px;
}

/* Grid background */
.zstack_transportation_hero-wrap::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(0, 87, 156, .06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 87, 156, .06) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 20%, transparent 70%);
}

/* Glow */
.zstack_transportation_hero-wrap::after {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 55% 45% at 20% 60%, rgba(0, 87, 156, .06) 0%, transparent 65%),
		radial-gradient(ellipse 50% 40% at 80% 40%, rgba(230, 81, 0, .04) 0%, transparent 65%);
}

.zstack_transportation_hero-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 80px 32px 96px;
	display: grid;
	grid-template-columns: 1fr 460px;
	gap: 72px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.zstack_transportation_hero-left {
	display: flex;
	flex-direction: column;
}

.zstack_transportation_hero-bc {
	font-size: 13px;
	font-weight: 600;
	color: var(--blue);
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 24px;
	cursor: pointer;
}

.zstack_transportation_hero-bc svg {
	width: 14px;
	height: 14px;
	stroke: var(--blue);
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
}

/* design.zstack_transportation_md 5.7: hero-badge — orange pill with pulse dot */
.zstack_transportation_hero-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-family: var(--mono);
	color: var(--orange);
	background: var(--orange-dim);
	border: 1px solid rgba(230, 81, 0, .22);
	border-radius: 100px;
	padding: 6px 16px;
	margin-bottom: 22px;
	align-self: flex-start;
}

.zstack_transportation_hero-label-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--orange);
	flex-shrink: 0;
	animation: pulse 2s infinite;
}

@keyframes pulse {

	0%,
	100% {
		opacity: 1;
		transform: scale(1)
	}

	50% {
		opacity: .6;
		transform: scale(1.35)
	}
}

/* design.zstack_transportation_md H1: weight 900, first line dark, second line blue gradient */
.zstack_transportation_hero-h1 {
	font-size: clamp(26px, 3.6vw, 44px);
	font-weight: 900;
	letter-spacing: -0.04em;
	line-height: 1.04;
	margin-bottom: 22px;
	color: var(--t1);
}

/* gradient span for semantic highlight line */
.zstack_transportation_hero-h1 .zstack_transportation_h1-accent {
	background: linear-gradient(125deg, var(--blue) 0%, #0277bd 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.zstack_transportation_hero-p {
	font-size: 17px;
	color: var(--t2);
	line-height: 1.72;
	max-width: 500px;
	margin-bottom: 36px;
}

.zstack_transportation_hero-btns {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

/* Hero right: trust map */
.zstack_transportation_hero-right-col {
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 1;
}

.zstack_transportation_trust-map {
	background: rgba(255, 255, 255, .82);
	border: 1px solid var(--border-hi);
	border-radius: var(--radius) var(--radius) 0 0;
	padding: 20px 16px;
	backdrop-filter: blur(8px);
}

.zstack_transportation_hero-credibility {
	display: flex;
	align-items: stretch;
	background: var(--bg-card);
	border: 1px solid var(--border-hi);
	border-top: none;
	border-radius: 0 0 var(--radius) var(--radius);
	overflow: hidden;
	box-shadow: 0 4px 16px -4px rgba(0, 87, 156, .12);
}

.zstack_transportation_hc-item {
	flex: 1;
	padding: 18px 20px;
	text-align: center;
}

/* design.zstack_transportation_md: stat numbers 32-44px, weight 900, --mono */
.zstack_transportation_hc-val {
	font-size: 24px;
	font-weight: 900;
	letter-spacing: -0.04em;
	color: var(--blue);
	line-height: 1;
	font-family: var(--mono);
}

.zstack_transportation_hc-label {
	font-size: 11px;
	color: var(--t3);
	margin-top: 5px;
	line-height: 1.4;
}

.zstack_transportation_hc-div {
	width: 1px;
	background: var(--border);
	flex-shrink: 0;
}

.zstack_transportation_hero-divider {
	border: none;
	border-bottom: 1px dashed var(--border);
	margin: 0;
}

/* ─── SECTION SHARED ──────────────────────────────────── */
/* design.zstack_transportation_md: H2 clamp(28px, 3.8vw, 46px), weight 800 */
.zstack_transportation_sec-title {
	font-size: clamp(26px, 3.8vw, 44px);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.1;
	color: var(--t1);
}

.zstack_transportation_sec-sub {
	font-size: 17px;
	color: var(--t2);
	line-height: 1.72;
}

.zstack_transportation_eyebrow {
	display: inline-flex;
	align-items: center;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	font-family: var(--mono);
	color: var(--blue);
	background: var(--blue-faint);
	border: 1px solid var(--border-hi);
	border-radius: 100px;
	padding: 4px 14px;
	margin-bottom: 12px;
}

/* ─── BENEFITS A ──────────────────────────────────────── */
/* design.zstack_transportation_md: --bg section */
.zstack_transportation_sec-bene-a {
	background: var(--bg);
	padding: 120px 0;
}

.zstack_transportation_bene-a-hd {
	text-align: center;
	margin-bottom: 72px;
}

.zstack_transportation_bene-a-hd .zstack_transportation_sec-title {
	margin-bottom: 18px;
}

.zstack_transportation_bene-cols {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	text-align: center;
}

.zstack_transportation_bcol {}

.zstack_transportation_bcol-icon {
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
}

.zstack_transportation_bcol-h {
	font-size: 19px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--t1);
	margin-bottom: 12px;
}

.zstack_transportation_bcol-p {
	font-size: 15px;
	color: var(--t2);
	line-height: 1.7;
}

/* ─── BENEFITS B ──────────────────────────────────────── */
/* design.zstack_transportation_md: --bg-alt section */
.zstack_transportation_sec-bene-b {
	background: var(--bg-alt);
	padding: 120px 0;
}

.zstack_transportation_bene-b-hd {
	text-align: center;
	margin-bottom: 56px;
}

.zstack_transportation_bene-b-cols {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* design.zstack_transportation_md: card with top color bar, 14px radius, hover translateY(-3px) */
.zstack_transportation_bbc {
	display: flex;
	flex-direction: column;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	transition: border-color .2s, transform .2s, box-shadow .2s;
	position: relative;
}

.zstack_transportation_bbc:hover {
	border-color: var(--border-hi);
	transform: translateY(-3px);
	box-shadow: 0 12px 32px -8px rgba(0, 87, 156, .10);
}

/* top color bar - sequential gradients per design.zstack_transportation_md */
.zstack_transportation_bbc:nth-child(1)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--blue), #0277bd);
}

.zstack_transportation_bbc:nth-child(2)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--teal), var(--blue));
}

.zstack_transportation_bbc:nth-child(3)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--orange), #ff8a65);
}

.zstack_transportation_bbc-hd {
	background: var(--blue);
	padding: 28px 26px;
	position: relative;
}

.zstack_transportation_bbc-hd::after {
	content: '';
	position: absolute;
	bottom: -14px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 14px solid transparent;
	border-right: 14px solid transparent;
	border-top: 15px solid var(--blue);
}

.zstack_transportation_bbc-hd-title {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	line-height: 1.3;
	text-align: center;
}

.zstack_transportation_bbc-body {
	background: var(--bg-card);
	padding: 36px 22px 30px;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.zstack_transportation_bbc-p {
	font-size: 14px;
	color: var(--t2);
	line-height: 1.72;
	flex: 1;
	margin-bottom: 24px;
}

.zstack_transportation_btn-learn {
	font-family: var(--font);
	font-size: 13px;
	font-weight: 700;
	background: var(--blue);
	color: #fff;
	border: none;
	border-radius: 100px;
	padding: 9px 22px;
	cursor: pointer;
	transition: background .15s;
}

.zstack_transportation_btn-learn:hover {
	background: var(--blue-dim);
}

/* ─── USE CASES ────────────────────────────────────────── */
/* design.zstack_transportation_md: --bg section */
.zstack_transportation_sec-uc {
	background: var(--bg);
	padding: 120px 0;
}

.zstack_transportation_uc-hd {
	text-align: center;
	margin-bottom: 72px;
}

.zstack_transportation_uc-layout {
	display: grid;
	grid-template-columns: 1fr 520px;
	gap: 72px;
	align-items: start;
}

.zstack_transportation_uc-list {
	display: flex;
	flex-direction: column;
}

.zstack_transportation_uc-item {
	padding: 32px 0;
	border-bottom: 1px solid var(--border);
}

.zstack_transportation_uc-item:first-child {
	border-top: 1px solid var(--border);
}

.zstack_transportation_uc-item-h {
	font-size: 18px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--t1);
	margin-bottom: 10px;
}

.zstack_transportation_uc-item-p {
	font-size: 14px;
	color: var(--t2);
	line-height: 1.72;
	margin-bottom: 12px;
}

.zstack_transportation_uc-link {
	font-size: 13px;
	font-weight: 700;
	color: var(--blue);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	border-bottom: 1px solid rgba(0, 87, 156, .3);
	transition: border-color .2s;
}

.zstack_transportation_uc-link svg {
	width: 13px;
	height: 13px;
	stroke: var(--blue);
	fill: none;
	stroke-width: 2;
	stroke-linecap: round;
}

.zstack_transportation_uc-link:hover {
	border-color: var(--blue);
}

/* Mockup */
.zstack_transportation_uc-mockup {
	position: sticky;
	top: 130px;
}

.zstack_transportation_mockup-shell {
	background: var(--t1);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(0, 0, 0, .18), 0 0 0 1px rgba(0, 87, 156, .15);
}

.zstack_transportation_mockup-bar {
	background: #1e2530;
	height: 36px;
	display: flex;
	align-items: center;
	padding: 0 16px;
	gap: 8px;
}

.zstack_transportation_mockup-dot {
	width: 11px;
	height: 11px;
	border-radius: 50%;
}

.zstack_transportation_mockup-title {
	font-size: 11px;
	color: rgba(255, 255, 255, .35);
	margin-left: 8px;
}

.zstack_transportation_mockup-body {
	background: #161b22;
	display: grid;
	grid-template-columns: 190px 1fr;
}

.zstack_transportation_mockup-sidebar {
	background: #1a1f2e;
	padding: 16px 0;
	border-right: 1px solid rgba(255, 255, 255, .06);
}

.zstack_transportation_ms-section {
	padding: 8px 16px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .28);
	margin-top: 8px;
}

.zstack_transportation_ms-item {
	padding: 9px 20px;
	font-size: 12px;
	color: rgba(255, 255, 255, .45);
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: background .15s;
}

.zstack_transportation_ms-item:hover {
	background: rgba(0, 87, 156, .15);
	color: rgba(255, 255, 255, .8);
}

.zstack_transportation_ms-item.zstack_transportation_act {
	background: rgba(0, 87, 156, .25);
	color: #7badd4;
}

.zstack_transportation_ms-item svg {
	width: 13px;
	height: 13px;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.5;
	opacity: .7;
}

.zstack_transportation_mockup-main {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.zstack_transportation_mm-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 4px;
}

.zstack_transportation_mm-title {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
}

.zstack_transportation_mm-badge {
	background: rgba(0, 87, 156, .4);
	color: #7badd4;
	font-size: 10px;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 4px;
}

.zstack_transportation_mm-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
}

.zstack_transportation_mm-card {
	background: #1e2530;
	padding: 14px;
	border: 1px solid rgba(255, 255, 255, .06);
	border-radius: 6px;
}

.zstack_transportation_mm-card-label {
	font-size: 9px;
	color: rgba(255, 255, 255, .35);
	margin-bottom: 6px;
	letter-spacing: .05em;
	text-transform: uppercase;
}

.zstack_transportation_mm-card-val {
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	letter-spacing: -0.02em;
}

.zstack_transportation_mm-card-sub {
	font-size: 10px;
	color: #4caf50;
	margin-top: 3px;
}

.zstack_transportation_mm-table {
	background: #1e2530;
	border: 1px solid rgba(255, 255, 255, .06);
	border-radius: 6px;
	overflow: hidden;
}

.zstack_transportation_mm-table-hd {
	display: grid;
	grid-template-columns: 1fr 60px 70px 60px;
	padding: 8px 12px;
	border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.zstack_transportation_mm-th {
	font-size: 9px;
	font-weight: 700;
	color: rgba(255, 255, 255, .3);
	letter-spacing: .06em;
	text-transform: uppercase;
}

.zstack_transportation_mm-row {
	display: grid;
	grid-template-columns: 1fr 60px 70px 60px;
	padding: 9px 12px;
	border-bottom: 1px solid rgba(255, 255, 255, .04);
}

.zstack_transportation_mm-row:last-child {
	border-bottom: none;
}

.zstack_transportation_mm-td {
	font-size: 11px;
	color: rgba(255, 255, 255, .6);
}

.zstack_transportation_mm-td.zstack_transportation_pri {
	color: #7badd4;
	font-weight: 600;
}

.zstack_transportation_mm-td.zstack_transportation_grn {
	color: #4caf50;
}

.zstack_transportation_mm-td.zstack_transportation_ora {
	color: #ff9800;
}

/* ─── CUSTOMERS ────────────────────────────────────────── */
/* design.zstack_transportation_md: --bg-alt section */
.zstack_transportation_sec-cust {
	background: var(--bg-alt);
	padding: 120px 0;
}

.zstack_transportation_cust-hd {
	text-align: center;
	margin-bottom: 64px;
}

.zstack_transportation_cust-hd .zstack_transportation_sec-title {
	margin-bottom: 16px;
}

.zstack_transportation_cust-hd-sub {
	font-size: 17px;
	color: var(--t2);
	max-width: 600px;
	margin: 0 auto;
}

.zstack_transportation_quote-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* design.zstack_transportation_md: card — white bg, border, 14px radius, hover translateY(-3px) */
.zstack_transportation_qcard {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding: 34px 28px;
	transition: border-color .2s, transform .2s, box-shadow .2s;
	position: relative;
}

.zstack_transportation_qcard:hover {
	border-color: var(--border-hi);
	transform: translateY(-3px);
	box-shadow: 0 12px 32px -8px rgba(0, 87, 156, .10);
}

/* top color bar per design.zstack_transportation_md sequence */
.zstack_transportation_qcard:nth-child(1)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--blue), #0277bd);
}

.zstack_transportation_qcard:nth-child(2)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--teal), var(--blue));
}

.zstack_transportation_qcard:nth-child(3)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--orange), #ff8a65);
}

.zstack_transportation_qcard-org-row {
	display: flex;
	align-items: center;
	gap: 14px;
}

.zstack_transportation_qcard-avatar {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	flex-shrink: 0;
	background: linear-gradient(135deg, var(--blue-faint), var(--teal-dim));
	display: grid;
	place-items: center;
	font-size: 22px;
}

.zstack_transportation_qcard-org-name {
	font-size: 14px;
	font-weight: 700;
	color: var(--t1);
}

.zstack_transportation_qcard-org-type {
	font-size: 12px;
	color: var(--t3);
}

.zstack_transportation_qcard-divider {
	height: 1px;
	background: var(--border);
}

.zstack_transportation_qcard-row {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.zstack_transportation_qcard-row-lbl {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--t3);
	font-family: var(--mono);
}

.zstack_transportation_qcard-row-txt {
	font-size: 13px;
	color: var(--t2);
	line-height: 1.65;
}

.zstack_transportation_qcard-result {
	background: rgba(46, 125, 50, .07);
	border: 1px solid rgba(46, 125, 50, .18);
	border-radius: 8px;
	padding: 14px 16px;
	margin-top: auto;
}

.zstack_transportation_qcard-result-lbl {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--green);
	font-family: var(--mono);
	margin-bottom: 5px;
}

.zstack_transportation_qcard-result-txt {
	font-size: 13px;
	font-weight: 500;
	color: var(--t1);
	line-height: 1.55;
}

.zstack_transportation_cust-more {
	text-align: center;
	margin-top: 48px;
}

/* ─── RESOURCES ────────────────────────────────────────── */
/* design.zstack_transportation_md: --bg section */
.zstack_transportation_sec-res {
	background: var(--bg);
	padding: 120px 0;
}

.zstack_transportation_res-hd {
	text-align: center;
	margin-bottom: 64px;
}

.zstack_transportation_res-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* design.zstack_transportation_md: card hover translateY(-3px) */
.zstack_transportation_rcard {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	text-align: center;
	transition: border-color .2s, transform .2s, box-shadow .2s;
}

.zstack_transportation_rcard:hover {
	border-color: var(--border-hi);
	transform: translateY(-3px);
	box-shadow: 0 12px 32px -8px rgba(0, 87, 156, .10);
}

.zstack_transportation_rcard-cover {
	height: 200px;
	background: var(--bg-alt);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	border-bottom: 1px solid var(--border);
}

.zstack_transportation_rcard-cover::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 70% 70% at 50% 60%, rgba(0, 87, 156, .06) 0%, transparent 70%);
}

.zstack_transportation_rcard-doc {
	position: relative;
	z-index: 1;
	width: 108px;
	height: 140px;
	border-radius: 4px 8px 8px 4px;
	box-shadow: 4px 8px 24px rgba(0, 0, 0, .15), -2px 2px 8px rgba(0, 0, 0, .08);
	transform: rotate(-4deg) translateY(4px);
	transition: transform .25s;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.zstack_transportation_rcard:hover .zstack_transportation_rcard-doc {
	transform: rotate(-2deg) translateY(0);
}

.zstack_transportation_rcard-doc.zstack_transportation_doc-blue {
	background: linear-gradient(160deg, var(--blue) 0%, #0277bd 100%);
}

.zstack_transportation_rcard-doc.zstack_transportation_doc-dark {
	background: linear-gradient(160deg, #1a2332 0%, #243447 100%);
}

.zstack_transportation_rcard-doc.zstack_transportation_doc-navy {
	background: linear-gradient(160deg, #1e3a5f 0%, #2d5a8e 100%);
}

.zstack_transportation_rcard-doc::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 6px;
	background: rgba(255, 255, 255, .15);
}

.zstack_transportation_rcard-doc::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 0;
	height: 0;
	border-left: 18px solid rgba(255, 255, 255, .08);
	border-bottom: 18px solid transparent;
	border-top: 18px solid rgba(255, 255, 255, .22);
}

.zstack_transportation_rcard-doc-inner {
	padding: 14px 12px 12px 16px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex: 1;
}

.zstack_transportation_rcd-brand {
	font-size: 7px;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .6);
	font-family: var(--mono);
}

.zstack_transportation_rcd-rule {
	height: 1px;
	background: rgba(255, 255, 255, .18);
}

.zstack_transportation_rcd-title {
	font-size: 9.5px;
	font-weight: 700;
	color: #fff;
	line-height: 1.4;
	margin-top: 2px;
}

.zstack_transportation_rcd-sub {
	font-size: 7.5px;
	color: rgba(255, 255, 255, .5);
	line-height: 1.45;
	margin-top: 1px;
}

.zstack_transportation_rcd-spacer {
	flex: 1;
}

.zstack_transportation_rcd-footer {
	font-size: 7px;
	color: rgba(255, 255, 255, .35);
	font-family: var(--mono);
	letter-spacing: .04em;
	text-transform: uppercase;
}

.zstack_transportation_rcard-cover-badge {
	position: absolute;
	bottom: 14px;
	right: 14px;
	background: rgba(255, 255, 255, .15);
	font-size: 9px;
	font-weight: 700;
	color: rgba(255, 255, 255, .85);
	padding: 4px 8px;
	letter-spacing: .06em;
	text-transform: uppercase;
	font-family: var(--mono);
	border-radius: 4px;
}

.zstack_transportation_rcard-body {
	padding: 24px 24px 28px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.zstack_transportation_rcard-type {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--blue);
	margin-bottom: 8px;
	font-family: var(--mono);
}

.zstack_transportation_rcard-h {
	font-size: 17px;
	font-weight: 800;
	color: var(--t1);
	line-height: 1.35;
	margin-bottom: 10px;
	flex: 1;
	letter-spacing: -.01em;
}

.zstack_transportation_rcard-sub {
	font-size: 13px;
	color: var(--t2);
	line-height: 1.65;
	margin-bottom: 18px;
}

.zstack_transportation_rcard-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 700;
	color: var(--t1);
	cursor: pointer;
	margin-top: auto;
	transition: color .15s;
}

.zstack_transportation_rcard-cta svg {
	width: 13px;
	height: 13px;
	stroke: currentColor;
	fill: none;
	stroke-width: 2.5;
	stroke-linecap: round;
}

.zstack_transportation_rcard-cta:hover {
	color: var(--blue);
}

.zstack_transportation_res-more {
	text-align: center;
	margin-top: 48px;
}

/* ─── GET STARTED CTA ──────────────────────────────────── */
/* design.zstack_transportation_md: linear-gradient(160deg, #00579c 0%, #003a6e 55%, #1a2744 100%) + grid overlay */
.zstack_transportation_sec-gs {
	padding: 140px 32px 120px;
	text-align: center;
	position: relative;
	overflow: hidden;
	background: linear-gradient(160deg, #00579c 0%, #003a6e 55%, #1a2744 100%);
}

.zstack_transportation_sec-gs::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
	background-size: 48px 48px;
}

.zstack_transportation_gs-title {
	font-size: clamp(32px, 5vw, 52px);
	font-weight: 900;
	letter-spacing: -0.04em;
	color: #fff;
	margin-bottom: 16px;
	line-height: 1.05;
	position: relative;
	z-index: 1;
}

.zstack_transportation_gs-sub {
	font-size: 17px;
	color: rgba(255, 255, 255, .72);
	max-width: 540px;
	margin: 0 auto 44px;
	line-height: 1.65;
	position: relative;
	z-index: 1;
}

.zstack_transportation_gs-btns {
	display: flex;
	gap: 14px;
	justify-content: center;
	margin-bottom: 64px;
	position: relative;
	z-index: 1;
}

/* design.zstack_transportation_md: outline-white buttons on dark bg */
.zstack_transportation_btn-gs-p {
	font-family: var(--font);
	font-size: 15px;
	font-weight: 700;
	background: #fff;
	color: var(--blue);
	border: none;
	border-radius: 8px;
	padding: 14px 32px;
	cursor: pointer;
	transition: all .2s;
}

.zstack_transportation_btn-gs-p:hover {
	box-shadow: 0 0 28px 8px rgba(255, 255, 255, .25);
}

.zstack_transportation_btn-gs-s {
	font-family: var(--font);
	font-size: 15px;
	font-weight: 600;
	background: transparent;
	color: #fff;
	border: 1.5px solid rgba(255, 255, 255, .4);
	border-radius: 8px;
	padding: 13px 28px;
	cursor: pointer;
	transition: border-color .2s;
}

.zstack_transportation_btn-gs-s:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, .08);
}

.zstack_transportation_gs-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	max-width: 720px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

/* design.zstack_transportation_md: deep-dark bg cards */
.zstack_transportation_gs-card {
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 16px;
	padding: 32px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	transition: all .2s;
}

.zstack_transportation_gs-card:hover {
	background: rgba(255, 255, 255, .14);
	transform: translateY(-2px);
}

.zstack_transportation_gs-card-icon {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.zstack_transportation_gs-card-icon svg {
	width: 26px;
	height: 26px;
	stroke: rgba(255, 255, 255, .85);
	fill: none;
	stroke-width: 1.5;
	stroke-linecap: round;
}

.zstack_transportation_gs-card-title {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
}

.zstack_transportation_gs-card-sub {
	font-size: 12px;
	color: rgba(255, 255, 255, .58);
	text-align: center;
	line-height: 1.5;
}
.dhicon{
	width: 24px;
}
.bticon{
	width: 32px;
}

/* ─── Responsive ───────────────────────────────────────── */
@media (max-width: 960px) {

	.zstack_transportation_hero-inner,
	.zstack_transportation_uc-layout {
		grid-template-columns: 1fr;
	}

	.zstack_transportation_bene-cols,
	.zstack_transportation_bene-b-cols,
	.zstack_transportation_quote-row,
	.zstack_transportation_res-row,
	.zstack_transportation_gs-cards {
		grid-template-columns: 1fr;
	}

	.zstack_transportation_sf-top {
		grid-template-columns: 1fr;
		gap: 40px;
	}

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

	.nav-links {
		display: none;
	}
}

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

:root {
  --bg-deep:    #ffffff;
  --bg-dark:    #f8fafc;
  --bg-card:    #ffffff;

  --blue:       #00579c;
  --blue-dim:   #004a85;
  --blue-glow:  rgba(0,87,156,.22);
  --blue-faint: rgba(0,87,156,.08);
  --blue-light: rgba(0,87,156,.12);

  --border:     rgba(0,87,156,.12);
  --border-hi:  rgba(0,87,156,.22);
  --border-neu: rgba(148,163,184,.3);

  --t1: #0f172a;
  --t2: #475569;
  --t3: #94a3b8;

  --font: 'Inter', system-ui, sans-serif;
  --max-w: 1200px;
}

/* ─── Page-level demo layout ──────────────────────── */
.demo-page-label {
  max-width: var(--max-w);
  margin: 0 auto 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  padding-left: 4px;
}
.demo-industry-block {
  max-width: var(--max-w);
  margin: 40px auto;
  background: var(--bg-deep);
  border: 1px solid var(--border-neu);
  overflow: hidden;
}

/* ─── SHARED WHITE PAPER SECTION — wrapping container ─ */
.sec-wp {
  background: var(--bg-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
/* subtle grid texture */
.sec-wp::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,87,156,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,87,156,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.wp-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

/* ─── Layout: 2-col for specific WP, centered for generic ─ */
.wp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ─── LEFT: Doc preview (for specific white papers) ──── */
.wp-doc-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 380px;
}
/* ambient glow */
.wp-doc-stage::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(0,87,156,.10) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.wp-doc-float {
  position: relative;
  z-index: 2;
  width: 220px;
  height: 290px;
  background: linear-gradient(160deg, var(--blue) 0%, #0277bd 100%);
  box-shadow:
    8px 16px 48px rgba(0,0,0,.18),
    -4px 4px 16px rgba(0,0,0,.08),
    0 0 0 1px rgba(0,87,156,.15);
  transform: rotate(-3deg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s;
}
.wp-doc-float:hover {
  transform: rotate(-1deg) translateY(-6px);
  box-shadow:
    12px 24px 64px rgba(0,0,0,.22),
    -4px 4px 16px rgba(0,0,0,.1),
    0 0 0 1px rgba(0,87,156,.2);
}
/* spine */
.wp-doc-float::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 10px;
  background: rgba(255,255,255,.12);
}
/* dog-ear */
.wp-doc-float::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 0;
  border-left: 28px solid rgba(255,255,255,.08);
  border-bottom: 28px solid transparent;
  border-top: 28px solid rgba(255,255,255,.18);
}
.wp-doc-inner {
  padding: 28px 20px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}
.wp-doc-brand {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.wp-doc-rule {
  height: 1px;
  background: rgba(255,255,255,.18);
  margin: 4px 0;
}
.wp-doc-title {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  line-height: 1.35;
  margin-top: 4px;
  letter-spacing: -.01em;
}
.wp-doc-sub {
  font-size: 11px;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
  margin-top: 2px;
}
.wp-doc-spacer { flex: 1; }
.wp-doc-footer {
  font-size: 9px;
  color: rgba(255,255,255,.35);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* shadow doc behind */
.wp-doc-shadow {
  position: absolute;
  z-index: 1;
  width: 200px;
  height: 260px;
  background: linear-gradient(160deg, #1a2332 0%, #243447 100%);
  top: 50%;
  left: 50%;
  transform: translate(-38%, -48%) rotate(2deg);
  opacity: .35;
  box-shadow: 4px 8px 24px rgba(0,0,0,.12);
}
.wp-doc-shadow::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 8px;
  background: rgba(255,255,255,.08);
}

/* ─── RIGHT: Text + CTA ─────────────────────────────── */
.wp-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.wp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-faint);
  border: 1px solid var(--border-hi);
  padding: 5px 14px;
  margin-bottom: 18px;
  width: fit-content;
}
.wp-eyebrow svg {
  width: 14px; height: 14px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.8;
}
.wp-title {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
  color: var(--t1);
  margin-bottom: 16px;
}
.wp-desc {
  font-size: 15px;
  color: var(--t2);
  line-height: 1.72;
  margin-bottom: 32px;
  max-width: 460px;
}

/* highlights row */
.wp-highlights {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
}
.wp-hl {
  display: flex;
  flex-direction: column;
}
.wp-hl-val {
  font-size: 26px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -.02em;
  line-height: 1;
}
.wp-hl-label {
  font-size: 11px;
  color: var(--t3);
  margin-top: 4px;
  letter-spacing: .02em;
}

/* CTA button */
.wp-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 14px 28px;
  cursor: pointer;
  transition: background .2s, transform .15s;
  letter-spacing: .01em;
  text-decoration: none;
  width: fit-content;
  border-radius: 10px;
}
.wp-cta:hover {
  background: var(--blue-dim);
  transform: translateY(-1px);
}
.wp-cta svg {
  width: 16px; height: 16px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  transition: transform .2s;
}
.wp-cta:hover svg {
  transform: translateX(3px);
}

/* ─── GENERIC VARIANT (no specific white paper) ────── */
.wp-layout.wp-generic {
  grid-template-columns: 1fr;
  text-align: center;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
}
.wp-generic .wp-eyebrow {
  margin-left: auto;
  margin-right: auto;
}
.wp-generic .wp-desc {
  margin-left: auto;
  margin-right: auto;
  max-width: 560px;
}
.wp-generic .wp-cta {
  margin: 0 auto;
}

/* generic: multi-doc icon cluster */
.wp-doc-cluster {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  position: relative;
  height: 160px;
}
.wp-mini-doc {
  width: 90px;
  height: 120px;
  background: linear-gradient(160deg, var(--blue) 0%, #0277bd 100%);
  display: flex;
  flex-direction: column;
  padding: 14px 10px 10px 14px;
  box-shadow: 4px 8px 20px rgba(0,0,0,.12);
  position: relative;
  transition: transform .3s cubic-bezier(.22,1,.36,1);
}
.wp-mini-doc::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: rgba(255,255,255,.12);
}
.wp-mini-doc::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 0;
  border-left: 16px solid rgba(255,255,255,.08);
  border-bottom: 16px solid transparent;
  border-top: 16px solid rgba(255,255,255,.18);
}
.wp-mini-doc:nth-child(1) { transform: rotate(-8deg) translateY(10px); z-index: 1; }
.wp-mini-doc:nth-child(2) { transform: rotate(-2deg) translateY(0px); z-index: 2; margin-left: -20px; }
.wp-mini-doc:nth-child(3) { transform: rotate(5deg) translateY(8px); z-index: 3; margin-left: -20px; }
.wp-doc-cluster:hover .wp-mini-doc:nth-child(1) { transform: rotate(-12deg) translateY(6px); }
.wp-doc-cluster:hover .wp-mini-doc:nth-child(2) { transform: rotate(0deg) translateY(-4px); }
.wp-doc-cluster:hover .wp-mini-doc:nth-child(3) { transform: rotate(8deg) translateY(4px); }

.wp-mini-doc .wmd-brand {
  font-size: 6px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.wp-mini-doc .wmd-rule {
  height: 1px;
  background: rgba(255,255,255,.15);
  margin: 5px 0;
}
.wp-mini-doc .wmd-title {
  font-size: 7.5px;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
}
.wp-mini-doc:nth-child(2) { background: linear-gradient(160deg, #1a2332 0%, #243447 100%); }
.wp-mini-doc:nth-child(3) { background: linear-gradient(160deg, #1e3a5f 0%, #2d5a8e 100%); }


/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 860px) {
  .wp-layout { grid-template-columns: 1fr; gap: 40px; }
  .wp-doc-stage { min-height: 280px; }
  .wp-layout:not(.wp-generic) .wp-text { text-align: center; }
  .wp-layout:not(.wp-generic) .wp-eyebrow { margin: 0 auto 18px; }
  .wp-layout:not(.wp-generic) .wp-desc { margin: 0 auto 32px; }
  .wp-layout:not(.wp-generic) .wp-cta { margin: 0 auto; }
  .wp-layout:not(.wp-generic) .wp-highlights { justify-content: center; }
}

/* ─── Demo separator ─────────────────────────────────── */
.demo-sep {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 0 12px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.demo-sep::before, .demo-sep::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-neu);
}
.demo-sep-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--t3);
  white-space: nowrap;
}


/* ═══════════ 新闻.html ═══════════ */
/* ============================================
     ZStack News Center — Design System
     ============================================ */
:root {
	/* Fonts */
	--font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
	--mono: 'JetBrains Mono', 'SF Mono', Monaco, monospace;

	/* Backgrounds */
	--bg: #ffffff;
	--bg-alt: #f8fafc;
	--bg-card: #ffffff;

	/* Brand Blue */
	--blue: #00579c;
	--blue-dim: #004a85;
	--blue-deep: #003a6e;
	--blue-glow: rgba(0, 87, 156, 0.22);
	--blue-faint: rgba(0, 87, 156, 0.07);
	--blue-mid: rgba(0, 87, 156, 0.14);

	/* Accent Colors */
	--orange: #e65100;
	--orange-dim: rgba(230, 81, 0, 0.10);
	--teal: #00897b;
	--teal-dim: rgba(0, 137, 123, 0.10);
	--green: #2e7d32;

	/* Borders */
	--border: rgba(148, 163, 184, 0.28);
	--border-hi: rgba(0, 87, 156, 0.20);

	/* Text */
	--t1: #0f172a;
	--t2: #475569;
	--t3: #94a3b8;

	/* Radius */
	--radius: 14px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font);
	color: var(--t1);
	background: var(--bg);
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-feature-settings: 'ss01', 'cv11';
	padding-top: 100px;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	max-width: 100%;
	display: block;
}

/* ========== SCROLL FADE-IN ========== */
.新闻_fade {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.新闻_fade.新闻_in {
	opacity: 1;
	transform: none;
}

/* ========== BUTTONS ========== */
.新闻_btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 18px;
	border-radius: 7px;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	border: none;
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	font-family: var(--font);
	text-decoration: none;
	white-space: nowrap;
}

.新闻_btn-primary {
	background: var(--blue);
	color: #fff;
}

.新闻_btn-primary:hover {
	background: var(--blue-dim);
	box-shadow: 0 0 28px 8px var(--blue-glow);
}

.新闻_btn-outline {
	background: transparent;
	color: var(--t1);
	border: 1.5px solid var(--border);
}

.新闻_btn-outline:hover {
	border-color: var(--blue);
	color: var(--blue);
}

.新闻_btn-ghost {
	color: var(--t2);
	background: transparent;
	padding: 8px 12px;
}

.新闻_btn-ghost:hover {
	color: var(--blue);
}

.新闻_btn-dark {
	background: #0a1628;
	color: white;
}

.新闻_btn-dark:hover {
	background: var(--blue-deep);
}

.新闻_btn-block {
	display: flex;
	width: 100%;
	justify-content: center;
	padding: 12px 18px;
	font-size: 14px;
}

/* ========== BREADCRUMB ========== */
.新闻_breadcrumb-wrap {
	border-bottom: 1px solid var(--border);
	background: var(--bg-alt);
}

.新闻_breadcrumb {
	max-width: 980px;
	margin: 0 auto;
	padding: 12px 32px;
	font-size: 13px;
	color: var(--t3);
	display: flex;
	gap: 8px;
	align-items: center;
	flex-wrap: wrap;
	font-family: var(--font);
}

.新闻_breadcrumb a {
	color: var(--t2);
	transition: color 0.15s;
}

.新闻_breadcrumb a:hover {
	color: var(--blue);
}

.新闻_breadcrumb .新闻_sep {
	color: var(--t3);
	font-size: 12px;
}

.新闻_breadcrumb .新闻_current {
	color: var(--t1);
	font-weight: 600;
}

/* ========== RELEASE HEADER ========== */
.新闻_release-header {
	padding: 56px 0 40px;
	background: var(--bg);
}

.新闻_release-header-inner {
	max-width: 980px;
	margin: 0 auto;
	padding: 0 32px;
}

/* Tags — blue-family hierarchy: dark → mid → light */
.新闻_tag {
	display: inline-flex;
	align-self: flex-start;
	padding: 3px 10px;
	border-radius: 4px;
	font-family: var(--mono);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	border: 1px solid;
	transition: all 0.15s ease;
}

/* Type: darkest — ink bg, white text */
.新闻_tag--type {
	background: #0a1628;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.12);
}

/* Product: brand-blue bg, white text */
.新闻_tag--product {
	background: var(--blue);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.18);
}

/* Industry: pale-blue bg, deep-blue text */
.新闻_tag--industry {
	background: #e0edf7;
	color: var(--blue-deep);
	border-color: rgba(0, 87, 156, 0.18);
}

/* Headline */
.新闻_release-headline {
	font-family: var(--font);
	font-size: clamp(36px, 4.6vw, 56px);
	line-height: 1.08;
	font-weight: 900;
	color: var(--t1);
	letter-spacing: -0.035em;
	margin-bottom: 20px;
}

.新闻_release-deck {
	font-family: var(--font);
	font-size: 18px;
	line-height: 1.55;
	color: var(--t2);
	font-weight: 400;
	font-style: italic;
	max-width: 100%;
	margin-bottom: 32px;
}

/* Meta bar */
.新闻_release-meta {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
	padding: 20px 0;
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
	align-items: center;
}

.新闻_release-meta-item {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.新闻_release-meta-item .新闻_label {
	font-family: var(--mono);
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--t3);
}

.新闻_release-meta-item .新闻_value {
	font-size: 14px;
	font-weight: 600;
	color: var(--t1);
}

/* Meta tag groups (Type / Product / Industry) */
.新闻_release-meta-item--tags {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.新闻_meta-tag-row {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
}

/* Share buttons */
.新闻_share-row {
	margin-left: auto;
	display: flex;
	gap: 8px;
	align-items: center;
}

.新闻_share-btn {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--bg);
	border: 1px solid var(--border);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
	color: var(--t2);
}

.新闻_share-btn:hover {
	background: var(--blue);
	color: #fff;
	border-color: var(--blue);
	box-shadow: 0 4px 14px var(--blue-glow);
}

.新闻_share-btn svg {
	width: 14px;
	height: 14px;
}

.新闻_share-label {
	font-family: var(--mono);
	font-size: 10px;
	color: var(--t3);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-right: 4px;
}

/* ========== MAIN: ARTICLE ONLY ========== */
.新闻_main {
	padding: 56px 0 80px;
	background: var(--bg);
}

.新闻_main-grid {
	max-width: 980px;
	margin: 0 auto;
	padding: 0 32px;
}

/* ========== ARTICLE BODY ========== */
.新闻_article {
	max-width: 100%;
}

.新闻_article p {
	font-family: var(--font);
	font-size: 18px;
	line-height: 1.65;
	color: var(--t2);
	margin-bottom: 20px;
}

.新闻_article p:first-of-type {
	font-size: 18px;
	font-weight: 400;
}

.新闻_article p strong {
	color: var(--t1);
	font-weight: 700;
}

.新闻_dateline {
	font-family: var(--font);
	font-weight: 700;
	color: var(--t1);
	text-transform: uppercase;
	letter-spacing: 0.03em;
	font-size: 14px;
	font-style: normal;
	margin-right: 8px;
}

.新闻_dateline-sep {
	font-family: var(--font);
	font-weight: 400;
	color: var(--t3);
	margin: 0 8px;
}

.新闻_article h2 {
	font-family: var(--font);
	font-size: 28px;
	line-height: 1.2;
	font-weight: 800;
	color: var(--t1);
	letter-spacing: -0.025em;
	margin: 48px 0 16px;
}

.新闻_article h3 {
	font-family: var(--font);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--blue);
	margin: 32px 0 14px;
}

/* ========== KEY FACTS ========== */
.新闻_key-facts {
	background: var(--blue-faint);
	border-left: 3px solid var(--blue);
	padding: 28px 32px;
	margin: 32px 0;
	border-radius: 0 var(--radius) var(--radius) 0;
}

.新闻_key-facts h4 {
	font-family: var(--mono);
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--blue);
	margin-bottom: 16px;
}

.新闻_key-facts ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.新闻_key-facts li {
	font-family: var(--font);
	font-size: 15.5px;
	line-height: 1.55;
	color: var(--t2);
	padding-left: 24px;
	position: relative;
}

.新闻_key-facts li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 10px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--blue);
}

.新闻_key-facts li strong {
	color: var(--t1);
	font-weight: 700;
}

/* ========== QUOTE BLOCKS ========== */
.新闻_pr-quote {
	margin: 36px 0;
	padding: 32px;
	background: var(--bg-alt);
	border-radius: var(--radius);
	position: relative;
	border: 1px solid var(--border);
}

.新闻_pr-quote blockquote {
	font-family: var(--font);
	font-size: 20px;
	line-height: 1.45;
	font-style: italic;
	color: var(--t1);
	font-weight: 400;
	margin: 0 0 20px;
	letter-spacing: -0.005em;
}

.新闻_pr-quote blockquote::before {
	content: '"';
	color: var(--blue);
	font-weight: 800;
	margin-right: 2px;
	font-size: 1.2em;
}

.新闻_pr-quote blockquote::after {
	content: '"';
	color: var(--blue);
	font-weight: 800;
	margin-left: 2px;
	font-size: 1.2em;
}

.新闻_pr-quote-byline {
	display: flex;
	gap: 14px;
	align-items: center;
	padding-top: 18px;
	border-top: 1px solid var(--border);
}

.新闻_pr-quote-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--blue-deep), var(--blue));
	color: white;
	font-family: var(--font);
	font-size: 15px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.新闻_pr-quote-avatar.新闻_slate {
	background: linear-gradient(135deg, #334155, #64748b);
}

.新闻_pr-quote-avatar.新闻_teal {
	background: linear-gradient(135deg, #0f766e, #14b8a6);
}

.新闻_pr-quote-info .新闻_name {
	font-family: var(--font);
	font-size: 15px;
	font-weight: 700;
	color: var(--t1);
}

.新闻_pr-quote-info .新闻_title {
	font-family: var(--font);
	font-size: 13px;
	color: var(--t2);
	margin-top: 1px;
}

/* ========== BOILERPLATE & DISCLAIMER ========== */
.新闻_boilerplate {
	margin-top: 56px;
	padding-top: 40px;
	border-top: 1px solid var(--border);
}

.新闻_boilerplate h3 {
	margin-top: 0;
}

.新闻_boilerplate p {
	font-size: 16px;
	color: var(--t2);
}

.新闻_disclaimer {
	margin-top: 36px;
	padding: 20px 24px;
	background: var(--bg-alt);
	border-radius: var(--radius);
	font-family: var(--font);
	font-size: 12.5px;
	line-height: 1.6;
	color: var(--t3);
	border: 1px solid var(--border);
}

.新闻_disclaimer strong {
	color: var(--t2);
	font-weight: 700;
	display: block;
	margin-bottom: 6px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 11px;
}

.新闻_end-mark {
	text-align: center;
	padding: 24px 0;
	font-family: var(--mono);
	font-size: 14px;
	letter-spacing: 0.3em;
	color: var(--t3);
}

/* ========== RELATED — News Grid Card Style ========== */
.新闻_related {
	padding: 80px 0;
	background: var(--bg-alt);
	border-top: 1px solid var(--border);
}

.新闻_related-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 32px;
}

.新闻_related-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 36px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--border);
	flex-wrap: wrap;
	gap: 16px;
}

.新闻_related-head h2 {
	font-family: var(--font);
	font-size: 36px;
	font-weight: 800;
	color: var(--t1);
	letter-spacing: -0.025em;
	line-height: 1.15;
}

.新闻_related-head p {
	font-size: 14px;
	color: var(--t2);
	margin-top: 4px;
}

.新闻_related-head a {
	font-size: 14px;
	font-weight: 600;
	color: var(--blue);
	transition: color 0.15s;
}

.新闻_related-head a:hover {
	color: var(--blue-dim);
}

.新闻_related-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.新闻_related-card {
	padding: 0;
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
	overflow: hidden;
	position: relative;
}

.新闻_related-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 48px -10px rgba(0, 87, 156, 0.13);
	border-color: var(--border-hi);
}

.新闻_related-card::before {
	content: '';
	display: block;
	height: 150px;
	background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 60%, #1a2744 100%);
}

.新闻_related-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 150px;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
	background-size: 20px 20px;
	pointer-events: none;
	border-radius: var(--radius) var(--radius) 0 0;
}

.新闻_related-card-body {
	padding: 18px 20px 20px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.新闻_related-kicker {
	display: flex;
	gap: 10px;
	align-items: center;
	margin-bottom: 12px;
}

.新闻_related-tag {
	display: inline-flex;
	align-self: flex-start;
	padding: 3px 10px;
	border-radius: 4px;
	background: var(--teal-dim);
	color: var(--teal);
	border: 1px solid rgba(0, 137, 123, 0.25);
	font-family: var(--mono);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 10px;
}

.新闻_related-kicker>span:last-child {
	font-family: var(--mono);
	font-size: 10px;
	color: var(--t3);
	letter-spacing: 0.04em;
}

.新闻_related-card h3 {
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.35;
	font-weight: 700;
	color: var(--t1);
	letter-spacing: -0.015em;
	margin-bottom: 10px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.新闻_related-card p {
	font-size: 13.5px;
	color: var(--t2);
	line-height: 1.5;
	flex: 1;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.新闻_related-card .新闻_read {
	margin-top: 14px;
	padding-top: 12px;
	border-top: 1px solid var(--border);
	font-size: 12.5px;
	font-weight: 600;
	color: var(--blue);
}

/* ========== CTA BAND ========== */
.新闻_cta-band {
	padding: 80px 0;
	background: linear-gradient(150deg, #001d3d 0%, var(--blue-deep) 45%, #005b9f 100%);
	color: white;
	position: relative;
	overflow: hidden;
}

.新闻_cta-band::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 600px 400px at 20% 60%, rgba(0, 87, 156, 0.35) 0%, transparent 60%),
		radial-gradient(ellipse 500px 350px at 80% 40%, rgba(0, 137, 123, 0.2) 0%, transparent 55%);
	pointer-events: none;
}

.新闻_cta-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 32px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.新闻_cta-text .新闻_kicker {
	font-family: var(--mono);
	font-size: 11px;
	color: #64b5f6;
	letter-spacing: 0.1em;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.新闻_cta-text h3 {
	font-family: var(--font);
	font-size: 36px;
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.025em;
	margin-bottom: 12px;
}

.新闻_cta-text p {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.72);
	max-width: 520px;
	line-height: 1.55;
}

.新闻_cta-actions {
	display: flex;
	gap: 12px;
	justify-content: flex-end;
}

.新闻_cta-actions .新闻_btn-dark-accent {
	background: #1e88e5;
	color: #fff;
}

.新闻_cta-actions .新闻_btn-dark-accent:hover {
	background: #42a5f5;
	box-shadow: 0 4px 20px rgba(30, 136, 229, 0.35);
}

.新闻_cta-actions .新闻_btn-dark-outline {
	background: transparent;
	color: #fff;
	border: 1.5px solid rgba(255, 255, 255, 0.22);
}

.新闻_cta-actions .新闻_btn-dark-outline:hover {
	border-color: rgba(255, 255, 255, 0.55);
	background: rgba(255, 255, 255, 0.06);
}

/* ========== FOOTER ========== */
.footer {
	background: #0a1628;
	color: rgba(255, 255, 255, 0.55);
	padding: 64px 0 36px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 32px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
	gap: 48px;
	padding-bottom: 48px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .新闻_logo {
	color: white;
	margin-bottom: 16px;
}

.footer-brand p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.45);
	line-height: 1.6;
	max-width: 280px;
}

.footer-col h5 {
	font-family: var(--mono);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.45);
	margin-bottom: 16px;
}

.footer-col ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-col a {
	font-size: 13.5px;
	color: rgba(255, 255, 255, 0.6);
	transition: color 0.15s;
}

.footer-col a:hover {
	color: #fff;
}

.footer-bottom {
	padding-top: 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.35);
	flex-wrap: wrap;
	gap: 12px;
}

.footer-bottom .新闻_legal {
	display: flex;
	gap: 20px;
}

.footer-bottom .新闻_legal a {
	color: rgba(255, 255, 255, 0.4);
	transition: color 0.15s;
}

.footer-bottom .新闻_legal a:hover {
	color: #fff;
}
.footer-social{display:flex;gap:12px;margin-top:20px}
.footer-social a{width:32px;height:32px;border-radius:8px;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.08);display:flex;align-items:center;justify-content:center;transition:all .2s}
.footer-social a:hover{background:rgba(255,255,255,.12);border-color:rgba(255,255,255,.2)}
.footer-social svg{width:14px;height:14px;fill:rgba(255,255,255,.5)}
/* ========== RESPONSIVE ========== */
@media (max-width:1024px) {
	.新闻_main-grid {
		padding: 0 32px;
	}

	.新闻_related-grid {
		grid-template-columns: 1fr;
	}

	.新闻_cta-inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.新闻_cta-actions {
		justify-content: flex-start;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr 1fr;
	}

	.nav-links {
		display: none;
	}
}

@media (max-width:640px) {
	.新闻_topbar-inner {
		padding: 0 20px;
	}

	.新闻_topbar-left {
		gap: 14px;
		font-size: 11px;
	}

	.nav-inner {
		padding: 0 20px;
	}

	.新闻_release-header-inner,
	.新闻_main-grid,
	.新闻_related-inner,
	.新闻_cta-inner,
	.footer-inner {
		padding-left: 20px;
		padding-right: 20px;
	}

	.新闻_release-header {
		padding: 36px 0 28px;
	}

	.新闻_release-meta {
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
	}

	.新闻_share-row {
		margin-left: 0;
	}

	.新闻_article p,
	.新闻_article p:first-of-type {
		font-size: 17px;
	}

	.新闻_article h2 {
		font-size: 24px;
	}

	.新闻_pr-quote {
		padding: 24px 20px;
	}

	.新闻_pr-quote blockquote {
		font-size: 18px;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 28px;
	}

	.新闻_related-head h2 {
		font-size: 28px;
	}

	.新闻_related-card {
		padding: 0;
	}

	.新闻_cta-text h3 {
		font-size: 28px;
	}

	.新闻_cta-actions {
		flex-direction: column;
	}

	.新闻_cta-actions .新闻_btn {
		width: 100%;
		justify-content: center;
	}
}

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(16px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.新闻_release-headline {
	animation: fadeUp 0.6s ease-out backwards;
}

.新闻_release-deck {
	animation: fadeUp 0.6s ease-out 0.1s backwards;
}

.新闻_release-meta {
	animation: fadeUp 0.6s ease-out 0.2s backwards;
}

@keyframes pulse {

	0%,
	100% {
		opacity: 1;
		transform: scale(1);
	}

	50% {
		opacity: 0.6;
		transform: scale(1.35);
	}
}

/* ═══════════ product-cloud.html ═══════════ */
/* 页面专有用类：product_cloud_* 前缀 */
    .product_cloud_lbl {
      display: inline-flex; align-items: center; gap: 7px;
      font-size: 11px; font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase;
      color: var(--blue); background: var(--blue-faint);
      border: 1px solid var(--border-hi); border-radius: 100px; padding: 4px 14px;
    }
    .product_cloud_lbl--white  { color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.22); }
    .product_cloud_lbl--orange { color: var(--orange); background: var(--orange-dim); border-color: rgba(230,81,0,0.25); }
    .product_cloud_lbl--teal   { color: var(--teal);   background: var(--teal-dim);   border-color: rgba(0,137,123,0.25); }
    .product_cloud_h2 { font-size: clamp(28px,3.2vw,52px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.12; }
    .product_cloud_h2 em { font-style: normal; color: var(--blue); }
    .product_cloud_sec-sub { font-size: 18px; color: var(--t2); line-height: 1.7; margin-top: 16px; }
    .product_cloud_sec-header { margin-bottom: 56px; }
    .product_cloud_sec-header.product_cloud_sec-header--center { text-align: center; }
    .product_cloud_sec-header.product_cloud_sec-header--center .product_cloud_sec-sub { max-width: 580px; margin-left: auto; margin-right: auto; }
    .product_cloud_btn {
      display: inline-flex; align-items: center; gap: 8px;
      font-family: var(--font); font-weight: 700; border-radius: 10px;
      border: none; cursor: pointer; transition: all .2s; text-decoration: none;
    }
    .product_cloud_btn--lg { padding: 15px 30px; font-size: 15px; }
    .product_cloud_btn--md { padding: 11px 22px; font-size: 14px; }
    .product_cloud_btn--sm { padding: 8px 18px;  font-size: 13px; }
    .product_cloud_btn--primary { background: var(--blue); color: #fff; }
    .product_cloud_btn--primary:hover { background: var(--blue-dim); transform: translateY(-1px); box-shadow: 0 8px 24px var(--blue-glow); }
    .product_cloud_btn--ghost { background: transparent; color: var(--t1); border: 1.5px solid var(--border); }
    .product_cloud_btn--ghost:hover { border-color: var(--blue); color: var(--blue); }
    .product_cloud_btn--outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.35); }
    .product_cloud_btn--outline-white:hover { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.70); }
    .product_cloud_section { padding: 100px 0; }
    .product_cloud_section--alt { background: var(--bg-alt); }
    .product_cloud_fade { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
    .product_cloud_fade.product_cloud_in { opacity: 1; transform: none; }
    .product_cloud_cta-card--primary { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.30); }

/* ══ HERO ══════════════════════════════════════════════════════════ */
    .product_cloud_hero {
      padding-top: 62px; min-height: 100vh;
      display: flex; flex-direction: column; justify-content: center;
      background: linear-gradient(150deg, #001d3d 0%, #003a6e 45%, #005b9f 100%);
      position: relative; overflow: hidden;
    }
    .product_cloud_hero-grid {
      position: absolute; inset: 0; pointer-events: none;
      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: 60px 60px;
    }
    .product_cloud_hero-glow {
      position: absolute; inset: 0; pointer-events: none;
      background:
        radial-gradient(ellipse 60% 55% at 15% 55%, rgba(0,87,156,0.38) 0%, transparent 60%),
        radial-gradient(ellipse 50% 45% at 85% 38%, rgba(0,137,123,0.18) 0%, transparent 60%);
    }
    .product_cloud_hero-body { position: relative; z-index: 1; text-align: center; padding: 80px 32px 72px; }
    .product_cloud_hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
      color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.10);
      border: 1px solid rgba(255,255,255,0.20); border-radius: 100px;
      padding: 6px 16px; margin-bottom: 36px;
    }
    .product_cloud_hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: #4fc3f7; animation: product_cloud_pulse 2s infinite; }
    @keyframes product_cloud_pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.55;transform:scale(1.4)} }
    .product_cloud_hero-title {
      font-size: clamp(28px, 4.6vw, 66px); font-weight: 900;
      letter-spacing: -0.035em; line-height: 1.08;
      color: #fff; max-width: 1000px; margin: 0 auto 24px;
    }
    .product_cloud_hero-title .product_cloud_hero-grad {
      background: linear-gradient(125deg, #60b8ff 0%, #a8d8ff 55%, #7fe0d4 100%);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .product_cloud_hero-sub { font-size: clamp(16px,1.7vw,19px); color: rgba(255,255,255,0.68); line-height: 1.7; max-width: 580px; margin: 0 auto 44px; }
    .product_cloud_hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 72px; }
    /* Stats bar */
    .product_cloud_hero-stats {
      display: grid; grid-template-columns: repeat(4,1fr); gap: 10px;
      max-width: 900px; margin: 0 auto;
      background: rgba(255,255,255,0.04); backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,0.10); border-radius: 16px; padding: 6px;
    }
    .product_cloud_hero-stat { display: flex; align-items: center; gap: 14px; padding: 20px 18px; border-radius: 12px; }
    .product_cloud_hero-stat-bar { width: 3px; height: 40px; border-radius: 2px; flex-shrink: 0; }
    .product_cloud_hero-stat:nth-child(1) .product_cloud_hero-stat-bar { background: #4fc3f7; }
    .product_cloud_hero-stat:nth-child(2) .product_cloud_hero-stat-bar { background: #80cbc4; }
    .product_cloud_hero-stat:nth-child(3) .product_cloud_hero-stat-bar { background: #ffb74d; }
    .product_cloud_hero-stat:nth-child(4) .product_cloud_hero-stat-bar { background: #ce93d8; }
    .product_cloud_hero-stat-n { font-size: 26px; font-weight: 900; color: #fff; letter-spacing: -0.03em; line-height: 1; margin-bottom: 4px; }
    .product_cloud_hero-stat-l { font-size: 12px; color: rgba(255,255,255,0.50); line-height: 1.4; }

    /* ══ TRUST BAR ════════════════════════════════════════════════════ */
    .product_cloud_trust-bar { background: var(--bg-alt); padding: 56px 0; }
    .product_cloud_trust-bar-inner { display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; }
    .product_cloud_trust-card {
      display: flex; align-items: center; gap: 20px;
      background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
      padding: 20px 28px; flex: 1; min-width: 280px; max-width: 420px;
      transition: border-color .2s;
    }
    .product_cloud_trust-card:hover { border-color: var(--border-hi); }
    .product_cloud_trust-org { font-size: 18px; font-weight: 900; letter-spacing: -0.02em; color: var(--blue); flex-shrink: 0; font-family: var(--mono); min-width: 56px; text-align: center; }
    .product_cloud_trust-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }
    .product_cloud_trust-report { font-size: 13.5px; font-weight: 600; color: var(--t1); line-height: 1.4; margin-bottom: 4px; }
    .product_cloud_trust-meta { font-size: 11.5px; color: var(--t3); font-family: var(--mono); }

    /* ══ WHY ══════════════════════════════════════════════════════════ */
    .product_cloud_why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 56px; }
    .product_cloud_why-card {
      background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
      padding: 36px 32px; position: relative; overflow: hidden;
      transition: border-color .2s, transform .2s, box-shadow .2s;
    }
    .product_cloud_why-card:hover { border-color: var(--border-hi); transform: translateY(-3px); box-shadow: 0 8px 28px var(--blue-glow); }
    .product_cloud_why-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
    .product_cloud_why-card:nth-child(1)::before { background: linear-gradient(90deg,var(--blue),#0288d1); }
    .product_cloud_why-card:nth-child(2)::before { background: linear-gradient(90deg,var(--teal),var(--blue)); }
    .product_cloud_why-card:nth-child(3)::before { background: linear-gradient(90deg,var(--orange),#ff8a65); }
    .product_cloud_why-card:nth-child(4)::before { background: linear-gradient(90deg,#7c3aed,#a78bfa); }
    .product_cloud_why-icon { width: 48px; height: 48px; border-radius: 14px; margin-bottom: 20px; display: flex; align-items: center; justify-content: center; font-size: 22px; }
    .product_cloud_why-card:nth-child(1) .product_cloud_why-icon { background: var(--blue-faint); }
    .product_cloud_why-card:nth-child(2) .product_cloud_why-icon { background: var(--teal-dim); }
    .product_cloud_why-card:nth-child(3) .product_cloud_why-icon { background: var(--orange-dim); }
    .product_cloud_why-card:nth-child(4) .product_cloud_why-icon { background: rgba(124,58,237,0.08); }
    .product_cloud_why-title { font-size: 19px; font-weight: 800; letter-spacing: -0.02em; color: var(--t1); margin-bottom: 10px; }
    .product_cloud_why-txt { font-size: 14px; color: var(--t2); line-height: 1.68; }

    /* ══ ARCHITECTURE ═════════════════════════════════════════════════ */
    .product_cloud_arch-banner {
      background: var(--blue-faint); border: 1px solid var(--border-hi); border-radius: 12px;
      padding: 14px 24px; margin-bottom: 28px;
      display: flex; align-items: center; justify-content: center; gap: 12px;
      font-size: 13px; font-weight: 600; color: var(--blue);
    }
    .product_cloud_arch-banner-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }
    .product_cloud_arch-layers { display: flex; flex-direction: column; gap: 16px; }
    .product_cloud_layer-card { border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: border-color .2s, box-shadow .2s; }
    .product_cloud_layer-card:hover { border-color: var(--border-hi); box-shadow: 0 6px 24px var(--blue-glow); }
    .product_cloud_layer-card-header { display: flex; align-items: flex-start; gap: 20px; padding: 28px 32px; position: relative; }
    .product_cloud_layer-card-bar { position: absolute; left: 0; top: 0; bottom: 0; width: 4px; }
    .product_cloud_layer-card:nth-child(1) .product_cloud_layer-card-bar { background: var(--orange); }
    .product_cloud_layer-card:nth-child(2) .product_cloud_layer-card-bar { background: var(--teal); }
    .product_cloud_layer-card:nth-child(3) .product_cloud_layer-card-bar { background: var(--blue); }
    .product_cloud_layer-card-icon { width: 56px; height: 56px; border-radius: 16px; flex-shrink: 0; display: grid; place-items: center; font-size: 26px; }
    .product_cloud_layer-card:nth-child(1) .product_cloud_layer-card-icon { background: var(--orange-dim); }
    .product_cloud_layer-card:nth-child(2) .product_cloud_layer-card-icon { background: var(--teal-dim); }
    .product_cloud_layer-card:nth-child(3) .product_cloud_layer-card-icon { background: var(--blue-faint); }
    .product_cloud_layer-card-meta { flex: 1; }
    .product_cloud_layer-card-num { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--mono); margin-bottom: 6px; }
    .product_cloud_layer-card:nth-child(1) .product_cloud_layer-card-num { color: var(--orange); }
    .product_cloud_layer-card:nth-child(2) .product_cloud_layer-card-num { color: var(--teal); }
    .product_cloud_layer-card:nth-child(3) .product_cloud_layer-card-num { color: var(--blue); }
    .product_cloud_layer-card-name { font-size: 20px; font-weight: 800; letter-spacing: -0.02em; color: var(--t1); margin-bottom: 8px; }
    .product_cloud_layer-card-desc { font-size: 14px; color: var(--t2); line-height: 1.65; margin-bottom: 14px; max-width: 600px; }
    .product_cloud_layer-card-tags { display: flex; gap: 6px; flex-wrap: wrap; }
    .product_cloud_layer-tag { font-size: 11px; font-weight: 600; border-radius: 6px; padding: 3px 10px; font-family: var(--mono); }
    .product_cloud_layer-card:nth-child(1) .product_cloud_layer-tag { color: var(--orange); background: var(--orange-dim); border: 1px solid rgba(230,81,0,0.20); }
    .product_cloud_layer-card:nth-child(2) .product_cloud_layer-tag { color: var(--teal);   background: var(--teal-dim);   border: 1px solid rgba(0,137,123,0.20); }
    .product_cloud_layer-card:nth-child(3) .product_cloud_layer-tag { color: var(--blue);   background: var(--blue-faint);  border: 1px solid var(--border-hi); }
    .product_cloud_layer-card-body { border-top: 1px solid var(--border); padding: 24px 32px; background: var(--bg-alt); }
    .product_cloud_layer-feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 40px; }
    .product_cloud_layer-feat { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--t2); line-height: 1.6; }
    .product_cloud_layer-feat::before { content: ''; flex-shrink: 0; width: 5px; height: 5px; border-radius: 50%; margin-top: 7px; }
    .product_cloud_layer-card:nth-child(1) .product_cloud_layer-feat::before { background: var(--orange); }
    .product_cloud_layer-card:nth-child(2) .product_cloud_layer-feat::before { background: var(--teal); }
    .product_cloud_layer-card:nth-child(3) .product_cloud_layer-feat::before { background: var(--blue); }

    /* ══ ADVANTAGES ═══════════════════════════════════════════════════ */
    .product_cloud_adv-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; margin-top: 56px; }
    .product_cloud_adv-card {
      background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
      padding: 28px 22px; position: relative; overflow: hidden;
      transition: border-color .2s, transform .2s, box-shadow .2s;
    }
    .product_cloud_adv-card:hover { border-color: var(--border-hi); transform: translateY(-3px); box-shadow: 0 8px 28px var(--blue-glow); }
    .product_cloud_adv-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
    .product_cloud_adv-card:nth-child(1)::before { background: linear-gradient(90deg,var(--blue),#0288d1); }
    .product_cloud_adv-card:nth-child(2)::before { background: linear-gradient(90deg,var(--teal),var(--blue)); }
    .product_cloud_adv-card:nth-child(3)::before { background: linear-gradient(90deg,var(--orange),#ff8a65); }
    .product_cloud_adv-card:nth-child(4)::before { background: linear-gradient(90deg,#7c3aed,#a78bfa); }
    .product_cloud_adv-card:nth-child(5)::before { background: linear-gradient(90deg,#0277bd,var(--teal)); }
    .product_cloud_adv-icon { font-size: 28px; margin-bottom: 16px; }
    .product_cloud_adv-num { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--mono); color: var(--blue); background: var(--blue-faint); border: 1px solid var(--border-hi); border-radius: 5px; padding: 2px 8px; display: inline-block; margin-bottom: 14px; }
    .product_cloud_adv-title { font-size: 16px; font-weight: 800; letter-spacing: -0.015em; color: var(--t1); margin-bottom: 8px; }
    .product_cloud_adv-txt { font-size: 13px; color: var(--t2); line-height: 1.65; }

    /* ══ USE CASES ════════════════════════════════════════════════════ */
    .product_cloud_uc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 56px; }
    .product_cloud_uc-card {
      background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
      padding: 32px 28px; display: flex; flex-direction: column;
      position: relative; overflow: hidden;
      transition: border-color .2s, transform .2s, box-shadow .2s;
    }
    .product_cloud_uc-card:hover { border-color: var(--border-hi); transform: translateY(-3px); box-shadow: 0 8px 28px var(--blue-glow); }
    .product_cloud_uc-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
    .product_cloud_uc-card:nth-child(1)::before { background: linear-gradient(90deg,var(--blue),#0288d1); }
    .product_cloud_uc-card:nth-child(2)::before { background: linear-gradient(90deg,var(--teal),var(--blue)); }
    .product_cloud_uc-card:nth-child(3)::before { background: linear-gradient(90deg,var(--orange),#ff8a65); }
    .product_cloud_uc-num { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; font-family: var(--mono); color: var(--t3); margin-bottom: 14px; }
    .product_cloud_uc-title { font-size: 20px; font-weight: 800; letter-spacing: -0.02em; color: var(--t1); margin-bottom: 6px; }
    .product_cloud_uc-for { font-size: 13px; font-weight: 600; color: var(--blue); margin-bottom: 16px; }
    .product_cloud_uc-txt { font-size: 13.5px; color: var(--t2); line-height: 1.68; flex: 1; margin-bottom: 20px; }
    .product_cloud_uc-tags { display: flex; gap: 6px; flex-wrap: wrap; }
    .product_cloud_uc-tag { font-size: 11px; font-weight: 600; color: var(--t3); background: var(--bg-alt); border: 1px solid var(--border); border-radius: 6px; padding: 3px 10px; font-family: var(--mono); }

    /* ══ COMPATIBILITY ════════════════════════════════════════════════ */
    .product_cloud_compat-panel { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 32px; margin-bottom: 20px; }
    .product_cloud_compat-panel-title { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--t3); font-family: var(--mono); margin-bottom: 24px; display: flex; align-items: center; gap: 10px; }
    .product_cloud_compat-panel-title::after { content: ''; flex: 1; height: 1px; background: var(--border); }
    .product_cloud_compat-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
    .product_cloud_compat-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
    .product_cloud_compat-card { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 20px; transition: border-color .2s, transform .2s; }
    .product_cloud_compat-card:hover { border-color: var(--border-hi); transform: translateY(-2px); }
    .product_cloud_compat-icon { font-size: 22px; margin-bottom: 10px; }
    .product_cloud_compat-name { font-size: 15px; font-weight: 700; color: var(--t1); margin-bottom: 5px; }
    .product_cloud_compat-models { font-size: 12px; color: var(--t3); line-height: 1.55; margin-bottom: 12px; }
    .product_cloud_compat-status { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600; font-family: var(--mono); }
    .product_cloud_compat-status-dot { width: 6px; height: 6px; border-radius: 50%; }
    .product_cloud_compat-status--ok  { color: #16a34a; }
    .product_cloud_compat-status--ok  .product_cloud_compat-status-dot { background: #22c55e; }
    .product_cloud_compat-status--beta { color: #b45309; }
    .product_cloud_compat-status--beta .product_cloud_compat-status-dot { background: #f59e0b; }
    /* Platform cards */
    .product_cloud_platform-card { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 20px; transition: border-color .2s, transform .2s; }
    .product_cloud_platform-card:hover { border-color: var(--border-hi); transform: translateY(-2px); }
    .product_cloud_platform-card--overlay { background: linear-gradient(135deg,var(--blue-faint),rgba(0,137,123,0.05)); border-color: var(--border-hi); box-shadow: 0 4px 16px rgba(0,87,156,0.08); }
    .product_cloud_platform-tag { font-size: 12px; font-weight: 800; letter-spacing: 0.06em; font-family: var(--mono); border-radius: 6px; padding: 4px 10px; display: inline-block; margin-bottom: 10px; }
    .product_cloud_platform-tag--blue { background: var(--blue);  color: #fff; }
    .product_cloud_platform-tag--teal { background: var(--teal);  color: #fff; }
    .product_cloud_platform-tag--dark { background: #1a2744;      color: #fff; }
    .product_cloud_platform-name { font-size: 14px; font-weight: 700; color: var(--t1); margin-bottom: 4px; }
    .product_cloud_platform-desc { font-size: 12px; color: var(--t3); line-height: 1.55; }

    /* ══ CUSTOMER STORIES ═════════════════════════════════════════════ */
    .product_cloud_stories-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 56px; }
    .product_cloud_story-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px; display: flex; flex-direction: column; gap: 18px; transition: border-color .2s, transform .2s; }
    .product_cloud_story-card:hover { border-color: var(--border-hi); transform: translateY(-3px); }
    .product_cloud_story-industry { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); font-family: var(--mono); }
    .product_cloud_story-quote { font-size: 14.5px; color: var(--t2); line-height: 1.72; flex: 1; font-style: italic; }
    .product_cloud_story-divider { height: 1px; background: var(--border); }
    .product_cloud_story-org { display: flex; align-items: center; gap: 14px; }
    .product_cloud_story-avatar { width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0; display: grid; place-items: center; font-size: 16px; font-weight: 800; }
    .product_cloud_story-name { font-size: 14px; font-weight: 700; color: var(--t1); }
    .product_cloud_story-type { font-size: 12px; color: var(--t3); }
    .product_cloud_story-link { display: flex; align-items: center; gap: 5px; font-size: 12.5px; font-weight: 600; color: var(--blue); transition: gap .2s; }
    .product_cloud_story-card:hover .product_cloud_story-link { gap: 8px; }

    /* ══ CTA ══════════════════════════════════════════════════════════ */
    .product_cloud_cta-section {
      padding: 120px 0; position: relative; overflow: hidden;
      background: linear-gradient(150deg, #001d3d 0%, #003a6e 50%, #005b9f 100%);
    }
    .product_cloud_cta-section::before { content: ''; position: absolute; inset: 0; pointer-events: none; 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: 60px 60px; }
    .product_cloud_cta-glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 60% 60% at 20% 50%, rgba(0,87,156,0.3) 0%, transparent 65%), radial-gradient(ellipse 50% 50% at 80% 50%, rgba(0,137,123,0.15) 0%, transparent 65%); }
    .product_cloud_cta-inner { position: relative; z-index: 1; text-align: center; }
    .product_cloud_cta-title { font-size: clamp(32px,4.5vw,58px); font-weight: 900; letter-spacing: -0.035em; line-height: 1.08; color: #fff; margin: 20px 0 18px; }
    .product_cloud_cta-sub { font-size: 17px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 56px; max-width: 520px; margin-left: auto; margin-right: auto; }
    .product_cloud_cta-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 760px; margin: 0 auto; }
    .product_cloud_cta-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); border-radius: 16px; padding: 36px 30px; display: flex; flex-direction: column; gap: 14px; transition: background .2s, border-color .2s, transform .2s; text-decoration: none; }
    .product_cloud_cta-card:hover { background: rgba(255,255,255,0.13); border-color: rgba(255,255,255,0.30); transform: translateY(-3px); }
    .product_cloud_cta-card-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(255,255,255,0.12); display: grid; place-items: center; font-size: 22px; }
    .product_cloud_cta-card-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); font-family: var(--mono); }
    .product_cloud_cta-card-title { font-size: 20px; font-weight: 800; color: #fff; letter-spacing: -0.02em; }
    .product_cloud_cta-card-txt { font-size: 13.5px; color: rgba(255,255,255,0.60); line-height: 1.65; flex: 1; }
    .product_cloud_cta-card-action { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.75); margin-top: 4px; transition: color .15s, gap .15s; }
    .product_cloud_cta-card:hover .product_cloud_cta-card-action { color: #fff; gap: 9px; }

    /* ══ RESPONSIVE ═══════════════════════════════════════════════════ */
    @media (max-width: 1024px) {
      .product_cloud_adv-grid { grid-template-columns: repeat(3,1fr); }
      .product_cloud_compat-grid-3, .product_cloud_compat-grid-4 { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 900px) {
      .product_cloud_hero-stats { grid-template-columns: 1fr 1fr; }
      .product_cloud_why-grid, .product_cloud_uc-grid, .product_cloud_stories-grid, .product_cloud_cta-cards { grid-template-columns: 1fr; }
      .product_cloud_cta-cards { max-width: 420px; }
      .ft-top { grid-template-columns: 1fr 1fr; }
      .product_cloud_layer-feat-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 640px) {
      .wrap { padding: 0 20px; }
      .product_cloud_adv-grid { grid-template-columns: 1fr 1fr; }
      .product_cloud_compat-grid-3, .product_cloud_compat-grid-4 { grid-template-columns: 1fr; }
      .nav-links { display: none; }
      .product_cloud_hero-title { white-space: normal; }
    }
  
