/**
 * FixSteel chrome stack — admin bar → ticker top → app nav → content → ticker bottom.
 */

:root {
	--fsp-wp-admin: 0px;
	--fsp-ticker-top-h: 0px;
	--fsp-nav-height: 64px;
	--fsp-nav-font-brand: 18px;
	--fsp-nav-font-link: 16px;
	--fsp-ticker-bottom-h: 0px;
	--fsp-mobile-dock-h: 0px;
	--fsp-chrome-fixed-top: calc(var(--fsp-wp-admin) + var(--fsp-ticker-top-h) + 64px);
	--fsp-chrome-content-offset: calc(var(--fsp-ticker-top-h) + 64px);
	--fsp-nav-bg: #1c1f26;
	--fsp-nav-bg-2: #2a3038;
	--fsp-nav-text: #ffffff;
	--fsp-nav-muted: #b8c0cc;
	--fsp-nav-border: rgba(255, 255, 255, 0.09);
	--fsp-z-admin: 99999;
	--fsp-z-ticker: 99998;
	--fsp-z-nav: 99997;
	/* Module hub hero — matches home slideshow viewport */
	--fsp-module-hero-h: 80vh;
	--fsp-module-hero-min: 420px;
	--fsp-module-hero-max: 860px;
	--fsp-page-pad-x: 20px;
	/* Module hero glass — home slideshow parity */
	--fsp-hero-dark-base: #090d12;
	--fsp-hero-dark-mid: #1a2332;
	--fsp-hero-dark-deep: #0b1018;
	--fsp-hero-glass-edge: rgba(255, 255, 255, 0.1);
	--fsp-hero-text: #f1f5f9;
	--fsp-hero-muted: #94a3b8;
	--fsp-hero-lead: #c8d0dc;
	--fsp-hero-chrome: #eef2f7;
}

body.admin-bar,
html.admin-bar {
	--fsp-wp-admin: 32px;
}

@media screen and (max-width: 782px) {
	body.admin-bar,
	html.admin-bar {
		--fsp-wp-admin: 46px;
	}
}

body.fsp-has-ticker-top {
	--fsp-ticker-top-h: var(--fsp-ticker-height, 48px);
}

body.fsp-has-ticker-bottom {
	--fsp-ticker-bottom-h: var(--fsp-ticker-height, 48px);
}

/* App pages: content offset — WP html margin-top already accounts for admin bar */
body.fsp-has-app-nav {
	padding-top: var(--fsp-chrome-content-offset);
	padding-bottom: calc(var(--fsp-ticker-bottom-h) + var(--fsp-mobile-dock-h));
	padding-inline: 0;
	margin: 0;
	width: 100%;
	max-width: 100%;
	font-family: 'Vazirmatn', Tahoma, 'Segoe UI', system-ui, sans-serif;
	-webkit-font-smoothing: antialiased;
	overflow-x: clip;
	box-sizing: border-box;
}

html:has(body.fsp-has-app-nav) {
	overflow-x: clip;
	max-width: 100%;
}

body:not(.admin-bar).fsp-has-app-nav {
	padding-top: var(--fsp-chrome-fixed-top);
}

body.fsp-theme-home { --fsp-module-accent: var(--fsp-brand-blue, #1e40af); }
body.fsp-theme-products { --fsp-module-accent: var(--fsp-brand-blue, #1e40af); }
body.fsp-theme-tools { --fsp-module-accent: #4a6fa5; }
body.fsp-theme-knowledge { --fsp-module-accent: var(--fsp-brand-gold, #ffcc00); }
body.fsp-theme-quote { --fsp-module-accent: var(--fsp-brand-orange, #f97316); }
body.fsp-theme-catalogs { --fsp-module-accent: #94a3b8; }
body.fsp-theme-about { --fsp-module-accent: var(--fsp-brand-blue, #1e40af); }
body.fsp-theme-commerce { --fsp-module-accent: var(--fsp-brand-orange, #f97316); }

body.fsp-has-app-nav.fsp-theme-commerce {
	overflow-x: clip;
	max-width: 100%;
}

body.fsp-has-app-nav.fsp-theme-commerce main.fsp-cart-shell,
body.fsp-has-app-nav.fsp-theme-commerce main.fsp-checkout-shell {
	width: 100%;
	max-width: 100%;
	padding-inline: 0;
	overflow-x: clip;
	box-sizing: border-box;
}

body.fsp-theme-quote,
body.fsp-theme-knowledge,
body.fsp-theme-catalogs,
body.fsp-theme-about,
body.fsp-theme-contact {
	overflow-x: clip;
	max-width: 100%;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

/* ─── Fixed app nav (charcoal + grey) ─────────────────────── */
.fsp-site-nav {
	position: fixed;
	top: calc(var(--fsp-wp-admin) + var(--fsp-ticker-top-h));
	left: 0;
	right: 0;
	z-index: var(--fsp-z-nav);
	height: 64px;
	max-height: 64px;
	overflow: visible;
	background: linear-gradient(180deg, var(--fsp-nav-bg) 0%, var(--fsp-nav-bg-2) 100%);
	color: var(--fsp-nav-text);
	border-bottom: 1px solid var(--fsp-nav-border);
	box-shadow:
		0 5px 16px rgba(0, 0, 0, 0.22),
		0 2px 6px rgba(0, 0, 0, 0.14),
		0 1px 0 rgba(0, 0, 0, 0.1);
	font-family: 'Vazirmatn', Tahoma, 'Segoe UI', system-ui, sans-serif;
}

/* Shadow bleed — continues nav depth into page canvas */
.fsp-site-nav::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	height: 32px;
	pointer-events: none;
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0.16) 0%,
		rgba(0, 0, 0, 0.07) 45%,
		transparent 100%
	);
}

.fsp-site-nav__inner {
	max-width: 1280px;
	height: 100%;
	margin: 0 auto;
	padding: 0 18px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
}

.fsp-site-nav__brand {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-inline-start: auto;
	color: var(--fsp-nav-text);
	font-weight: 800;
	font-size: var(--fsp-nav-font-brand);
	flex-shrink: 1;
	min-width: 0;
	max-width: 100%;
	letter-spacing: -0.01em;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
	overflow: visible;
}

.fsp-site-nav__brand-home,
.fsp-site-nav__crumb-page {
	color: inherit;
	text-decoration: none;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 42vw;
}

.fsp-site-nav__brand-home:hover,
.fsp-site-nav__crumb-page:hover {
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.fsp-site-nav__crumb-sep {
	opacity: 0.45;
	font-weight: 600;
	font-size: 0.85em;
	flex-shrink: 0;
}

.fsp-site-nav__mark {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--fsp-brand-blue, #1e40af), #60a5fa);
	box-shadow: 0 0 8px rgba(59, 130, 246, 0.45);
}

.fsp-site-nav__toggle {
	display: none;
	align-items: center;
	gap: 6px;
	padding: 8px 12px;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.05);
	color: var(--fsp-nav-text);
	font-family: inherit;
	font-size: 13px;
	font-weight: 800;
	cursor: pointer;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
	-webkit-tap-highlight-color: transparent;
}

.fsp-site-nav__toggle-icon {
	display: block;
	width: 16px;
	height: 2px;
	background: currentColor;
	border-radius: 999px;
	box-shadow: 0 -5px 0 currentColor, 0 5px 0 currentColor;
}

.fsp-site-nav__menu {
	flex: 1;
	display: flex;
	justify-content: flex-start;
	min-width: 0;
}

.fsp-site-nav__list {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 2px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.fsp-site-nav__item {
	position: relative;
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.fsp-site-nav__link {
	display: inline-block;
	padding: 9px 12px;
	border-radius: 8px;
	color: var(--fsp-nav-muted);
	text-decoration: none;
	font-size: var(--fsp-nav-font-link);
	font-weight: 800;
	white-space: nowrap;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
	transition: color 0.15s ease, background 0.15s ease;
}

.fsp-site-nav__link:hover {
	color: var(--fsp-nav-text);
	background: rgba(255, 255, 255, 0.07);
}

.fsp-site-nav__item.is-active > .fsp-site-nav__link {
	color: var(--fsp-nav-text);
	background: rgba(255, 255, 255, 0.09);
	box-shadow: inset 0 -3px 0 var(--fsp-module-accent, #94a3b8);
}

.fsp-site-nav__sub-toggle {
	display: none;
	width: 26px;
	height: 26px;
	margin-right: 2px;
	border: none;
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.07) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M2 4l4 4 4-4'/%3E%3C/svg%3E") center no-repeat;
	cursor: pointer;
}

.fsp-site-nav__sub {
	display: none;
	position: absolute;
	top: calc(100% + 4px);
	right: 0;
	min-width: 240px;
	margin: 0;
	padding: 6px;
	list-style: none;
	border-radius: 12px;
	background: linear-gradient(180deg, #232830 0%, #1a1d24 100%);
	border: 1px solid var(--fsp-nav-border);
	box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
	z-index: calc(var(--fsp-z-nav) + 1);
}

.fsp-site-nav__item.has-children:hover > .fsp-site-nav__sub,
.fsp-site-nav__item.has-children:focus-within > .fsp-site-nav__sub {
	display: block;
}

.fsp-site-nav__sub a {
	display: block;
	padding: 9px 12px;
	border-radius: 8px;
	color: var(--fsp-nav-muted);
	text-decoration: none;
	font-size: var(--fsp-nav-font-link);
	font-weight: 700;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
	transition: background 0.12s ease, color 0.12s ease;
}

.fsp-site-nav__sub a:hover {
	background: rgba(255, 255, 255, 0.07);
	color: var(--fsp-nav-text);
}

/* ─── Mobile (phones + tablets) ───────────────────────────── */
@media (max-width: 1024px) {
	:root {
		--fsp-nav-height: 52px;
		--fsp-nav-font-brand: 16px;
		--fsp-nav-font-link: 15px;
		--fsp-mobile-dock-h: calc(56px + env(safe-area-inset-bottom, 0px));
		--fsp-chrome-fixed-top: calc(var(--fsp-wp-admin) + var(--fsp-ticker-top-h) + 52px);
		--fsp-chrome-content-offset: calc(var(--fsp-ticker-top-h) + 52px);
		--fsp-module-hero-h: 72vh;
		--fsp-module-hero-min: 280px;
		--fsp-module-hero-max: 640px;
		--fsp-page-pad-x: 16px;
	}

	.fsp-site-nav:not(.is-open) {
		height: 52px;
		max-height: 52px;
		overflow: hidden;
	}

	.fsp-site-nav.is-open {
		height: auto;
		max-height: none;
		overflow: visible;
		box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
	}

	.fsp-site-nav__inner {
		flex-wrap: nowrap;
		padding: 8px 14px;
		min-height: 52px;
		height: auto;
	}

	.fsp-site-nav__brand {
		order: 1;
		margin-inline-start: 0;
		margin-inline-end: auto;
		max-width: 100%;
		flex: 1 1 auto;
	}

	.fsp-site-nav--dock-only .fsp-site-nav__toggle,
	.fsp-site-nav--dock-only .fsp-site-nav__menu,
	body.fsp-has-app-nav .fsp-site-nav__toggle,
	body.fsp-has-app-nav .fsp-site-nav__menu {
		display: none !important;
		visibility: hidden !important;
		pointer-events: none !important;
	}

	.fsp-site-nav--dock-only .fsp-site-nav__inner,
	body.fsp-has-app-nav .fsp-site-nav__inner {
		justify-content: flex-start;
	}

	.fsp-site-nav__brand-home,
	.fsp-site-nav__crumb-page {
		max-width: 38vw;
	}

	.fsp-site-nav__toggle {
		display: none;
		order: 2;
		flex-shrink: 0;
		min-height: 44px;
	}

	.fsp-site-nav__menu {
		display: none;
		width: 100%;
		padding: 8px 0 12px;
		order: 3;
		flex: 1 1 100%;
		max-height: min(58vh, 420px);
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}

	.fsp-site-nav.is-open .fsp-site-nav__inner {
		flex-wrap: wrap;
		align-items: flex-start;
		min-height: 52px;
	}

	.fsp-site-nav.is-open .fsp-site-nav__menu {
		display: block;
		border-top: 1px solid rgba(255, 255, 255, 0.08);
		margin-top: 4px;
	}

	.fsp-site-nav__list {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
		gap: 4px;
	}

	.fsp-site-nav__item {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
	}

	.fsp-site-nav__link {
		white-space: normal;
		padding: 12px 14px;
		min-height: 44px;
		display: flex;
		align-items: center;
	}

	.fsp-site-nav__sub-toggle {
		display: block;
		position: absolute;
		left: 8px;
		top: 8px;
		width: 32px;
		height: 32px;
	}

	.fsp-site-nav__sub {
		position: static;
		display: none;
		box-shadow: none;
		border: none;
		background: rgba(0, 0, 0, 0.22);
		margin: 4px 0 8px;
		padding: 4px;
	}

	.fsp-site-nav__item.is-sub-open > .fsp-site-nav__sub {
		display: block;
	}

	.fsp-site-nav__item.has-children:hover > .fsp-site-nav__sub {
		display: none;
	}

	.fsp-site-nav__item.is-sub-open.has-children > .fsp-site-nav__sub {
		display: block;
	}

	body.fsp-nav-open {
		overflow: hidden;
	}
}

/* ─── Mobile bottom dock ──────────────────────────────────── */
.fsp-mobile-dock {
	display: none;
}

@media (max-width: 1024px) {
	.fsp-mobile-dock {
		display: block;
		position: fixed;
		left: 0;
		right: 0;
		bottom: var(--fsp-ticker-bottom-h, 0px);
		z-index: calc(var(--fsp-z-nav) - 1);
		height: var(--fsp-mobile-dock-h);
		padding-bottom: env(safe-area-inset-bottom, 0px);
		background: linear-gradient(180deg, #232830 0%, #1a1d24 100%);
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.28);
		font-family: 'Vazirmatn', Tahoma, 'Segoe UI', system-ui, sans-serif;
	}

	.fsp-mobile-dock__list {
		display: grid;
		grid-template-columns: repeat(var(--fsp-dock-cols, 5), minmax(0, 1fr));
		align-items: stretch;
		height: 56px;
		margin: 0;
		padding: 0;
		list-style: none;
		width: 100%;
		box-sizing: border-box;
	}

	.fsp-mobile-dock__item {
		min-width: 0;
		max-width: 100%;
	}

	.fsp-mobile-dock__link,
	.fsp-mobile-dock__link--expand,
	.fsp-mobile-dock__link--more,
	.fsp-mobile-dock a.fsp-mobile-dock__link,
	.fsp-mobile-dock button.fsp-mobile-dock__link {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 2px;
		height: 100%;
		padding: 6px 4px;
		text-decoration: none;
		color: #dbeafe !important;
		font-size: 10px;
		font-weight: 900;
		line-height: 1.2;
		text-align: center;
		-webkit-tap-highlight-color: transparent;
		transition: color 0.12s ease, background 0.12s ease;
		box-sizing: border-box;
		width: 100%;
		min-width: 0;
		max-width: 100%;
	}

	.fsp-mobile-dock__icon,
	.fsp-mobile-dock__label {
		color: #dbeafe !important;
	}

	.fsp-mobile-dock__item.is-disabled .fsp-mobile-dock__link,
	.fsp-mobile-dock__item.is-disabled .fsp-mobile-dock__icon,
	.fsp-mobile-dock__item.is-disabled .fsp-mobile-dock__label {
		color: #94a3b8 !important;
		opacity: 0.55;
	}

	.fsp-mobile-dock__icon {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 28px;
		height: 22px;
		font-size: 15px;
		line-height: 1;
	}

	.fsp-mobile-dock__label {
		display: block;
		max-width: 100%;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		font-size: 9px;
		letter-spacing: -0.01em;
	}

	.fsp-mobile-dock__item.is-active .fsp-mobile-dock__link,
	.fsp-mobile-dock__item.is-active .fsp-mobile-dock__icon,
	.fsp-mobile-dock__item.is-active .fsp-mobile-dock__label {
		color: #fff !important;
		background: rgba(255, 255, 255, 0.06);
		box-shadow: inset 0 -3px 0 var(--fsp-module-accent, #94a3b8);
	}

	.fsp-mobile-dock__link--expand {
		width: 100%;
		max-width: 100%;
		border: none;
		background: transparent;
		font-family: inherit;
		cursor: pointer;
	}

	.fsp-mobile-dock__link--more {
		width: 100%;
		max-width: 100%;
		border: none;
		background: transparent;
		font-family: inherit;
		cursor: pointer;
	}

	.fsp-mobile-dock__item--more .fsp-mobile-dock__icon {
		font-size: 18px;
		letter-spacing: 0;
	}

	.fsp-mobile-dock__item.has-children.is-active .fsp-mobile-dock__link--expand,
	.fsp-mobile-dock.is-sub-open .fsp-mobile-dock__item.has-children .fsp-mobile-dock__link--expand[aria-expanded="true"] {
		color: #fff !important;
		background: rgba(255, 255, 255, 0.08);
	}

	.fsp-mobile-dock__sub {
		position: absolute;
		left: 0;
		right: 0;
		bottom: 100%;
		z-index: 2;
		max-height: min(52vh, 360px);
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		background: linear-gradient(180deg, #2a3038 0%, #1c1f26 100%);
		border-top: 1px solid rgba(255, 255, 255, 0.12);
		box-shadow: 0 -12px 32px rgba(0, 0, 0, 0.35);
		padding: 12px var(--fsp-page-pad-x, 16px) 14px;
		box-sizing: border-box;
	}

	.fsp-mobile-dock__sub-head {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 10px;
		margin-bottom: 10px;
	}

	.fsp-mobile-dock__sub-title {
		font-size: 14px;
		font-weight: 800;
		color: #f1f5f9;
	}

	.fsp-mobile-dock__sub-close {
		width: 36px;
		height: 36px;
		border: 1px solid rgba(255, 255, 255, 0.14);
		border-radius: 10px;
		background: rgba(255, 255, 255, 0.06);
		color: #e2e8f0;
		font-size: 22px;
		line-height: 1;
		cursor: pointer;
	}

	.fsp-mobile-dock__sub-list {
		list-style: none;
		margin: 0 0 10px;
		padding: 0;
		display: grid;
		gap: 6px;
	}

	.fsp-mobile-dock__sub-list a {
		display: block;
		padding: 12px 14px;
		border-radius: 10px;
		background: rgba(255, 255, 255, 0.06);
		border: 1px solid rgba(255, 255, 255, 0.1);
		color: #e2e8f0;
		text-decoration: none;
		font-size: 14px;
		font-weight: 800;
		box-sizing: border-box;
		max-width: 100%;
	}

	.fsp-mobile-dock__sub-list li.is-child a {
		font-size: 13px;
		font-weight: 700;
		color: #bfdbfe;
		background: rgba(255, 255, 255, 0.04);
		padding: 10px 14px 10px 22px;
	}

	.fsp-mobile-dock__sub-list a:hover,
	.fsp-mobile-dock__sub-list a:focus {
		background: rgba(255, 255, 255, 0.1);
		color: #fff;
	}

	.fsp-mobile-dock__sub-hub {
		display: block;
		padding: 10px 14px;
		border-radius: 10px;
		text-align: center;
		font-size: 13px;
		font-weight: 800;
		color: var(--fsp-module-accent, #94a3b8);
		text-decoration: none;
		border: 1px dashed rgba(255, 255, 255, 0.18);
	}

	.fsp-brand-trust__inner,
	.fsp-brand-gateway__inner {
		padding-bottom: calc(20px + var(--fsp-mobile-dock-h, 56px));
	}
}

/* ─── Mobile layout foundation (≤1024px) — desktop untouched ─ */
@media (max-width: 1024px) {
	.fsp-site-nav {
		height: var(--fsp-nav-height);
		max-height: var(--fsp-nav-height);
	}

	body.fsp-has-app-nav main {
		width: 100%;
		max-width: 100%;
		margin-inline: 0;
		padding-inline: 0;
		overflow-x: clip;
		box-sizing: border-box;
	}

	.fsp-module-hero .fsp-mhero-copy,
	.fsp-module-hero .fsp-mhero-points {
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
	}
}

/* Legacy breakpoint alias — skip when bottom dock is active */
@media (max-width: 960px) {
	body:not(.fsp-has-app-nav) .fsp-site-nav__toggle {
		display: inline-flex;
	}
}

/* Home — flat nav (top-level links only, no mega dropdown) */
.fsp-site-nav--flat .fsp-site-nav__sub-toggle,
.fsp-site-nav--flat .fsp-site-nav__sub {
	display: none !important;
}

.fsp-site-nav--flat .fsp-site-nav__item.has-children:hover > .fsp-site-nav__sub {
	display: none !important;
}

.fsp-site-nav--flat .fsp-site-nav__item.has-children {
	flex-direction: row;
}

/* ─── Glass page canvas (unified hub modules) ──────────────── */
body.fsp-has-app-nav.fsp-theme-products,
body.fsp-has-app-nav.fsp-theme-tools,
body.fsp-has-app-nav.fsp-theme-knowledge,
body.fsp-has-app-nav.fsp-theme-quote,
body.fsp-has-app-nav.fsp-theme-catalogs,
body.fsp-has-app-nav.fsp-theme-about,
body.fsp-has-app-nav.fsp-theme-contact {
	--fsp-canvas-base-a: #a8afb8;
	--fsp-canvas-base-b: #b2b9c2;
	--fsp-canvas-base-c: #bbc2cb;
	--fsp-canvas-glass: rgba(186, 194, 203, 0.76);
	--fsp-canvas-glass-solid: rgba(186, 194, 203, 0.96);
	--fsp-canvas-border: rgba(255, 255, 255, 0.22);
	--fsp-canvas-lead: #374151;
	position: relative;
	isolation: isolate;
	background: transparent;
}

body.fsp-has-app-nav.fsp-theme-products::before,
body.fsp-has-app-nav.fsp-theme-tools::before,
body.fsp-has-app-nav.fsp-theme-knowledge::before,
body.fsp-has-app-nav.fsp-theme-quote::before,
body.fsp-has-app-nav.fsp-theme-catalogs::before,
body.fsp-has-app-nav.fsp-theme-about::before,
body.fsp-has-app-nav.fsp-theme-contact::before {
	content: '';
	position: fixed;
	inset: 0;
	z-index: -2;
	pointer-events: none;
	background:
		radial-gradient(ellipse 72% 52% at 14% -4%, rgba(100, 116, 139, 0.14), transparent 58%),
		radial-gradient(ellipse 58% 46% at 88% 6%, rgba(148, 163, 184, 0.11), transparent 52%),
		radial-gradient(ellipse 42% 36% at 50% 100%, rgba(148, 163, 184, 0.16), transparent 62%),
		linear-gradient(180deg, var(--fsp-canvas-base-a) 0%, var(--fsp-canvas-base-b) 42%, var(--fsp-canvas-base-c) 100%);
}

body.fsp-has-app-nav.fsp-theme-products::after,
body.fsp-has-app-nav.fsp-theme-tools::after,
body.fsp-has-app-nav.fsp-theme-knowledge::after,
body.fsp-has-app-nav.fsp-theme-quote::after,
body.fsp-has-app-nav.fsp-theme-catalogs::after,
body.fsp-has-app-nav.fsp-theme-about::after,
body.fsp-has-app-nav.fsp-theme-contact::after {
	content: '';
	position: fixed;
	top: var(--fsp-chrome-fixed-top);
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
	pointer-events: none;
	background: var(--fsp-canvas-glass);
	border-top: 1px solid var(--fsp-canvas-border);
	box-shadow:
		inset 0 14px 28px -22px rgba(15, 23, 42, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.32);
	-webkit-backdrop-filter: blur(22px) saturate(1.08);
	backdrop-filter: blur(22px) saturate(1.08);
}

/* Hub lead lines — readable on gray glass (below hero) */
.fsp-phub-catalog__head p,
.fsp-knowledge-shell:not(.fsp-knowledge-shell--article) .fsp-knowledge-card p,
.fsp-quote-help,
.fsp-catalogs-summary {
	color: var(--fsp-canvas-lead, #374151);
	font-weight: 650;
	font-size: clamp(1rem, 2.1vw, 1.08rem);
	line-height: 1.72;
}

@supports not (backdrop-filter: blur(1px)) {
	body.fsp-has-app-nav.fsp-theme-products::after,
	body.fsp-has-app-nav.fsp-theme-tools::after,
	body.fsp-has-app-nav.fsp-theme-knowledge::after,
	body.fsp-has-app-nav.fsp-theme-quote::after,
	body.fsp-has-app-nav.fsp-theme-catalogs::after,
	body.fsp-has-app-nav.fsp-theme-about::after,
	body.fsp-has-app-nav.fsp-theme-contact::after {
		background: var(--fsp-canvas-glass-solid);
	}
}

/* ─── Module hub hero height (home slideshow parity) — hub pages only ── */
.fsp-module-hero,
.fsp-phub-hero,
body.fsp-tools--hub .fsp-thub-console,
body.fsp-knowledge--hub .fsp-knowledge-hero,
body.fsp-quote--hub .fsp-quote-hero,
body.fsp-catalogs--hub .fsp-catalogs-hero,
body.fsp-about--hub .fsp-about-hero,
body.fsp-contact--hub .fsp-contact-hero {
	box-sizing: border-box;
	min-height: var(--fsp-module-hero-min);
	height: var(--fsp-module-hero-h);
	max-height: var(--fsp-module-hero-max);
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	isolation: isolate;
	overflow: hidden;
	color: var(--fsp-hero-text);
	background:
		radial-gradient(ellipse 80% 60% at 70% 40%, rgba(200, 208, 220, 0.14), transparent 60%),
		linear-gradient(160deg, var(--fsp-hero-dark-mid) 0%, var(--fsp-hero-dark-deep) 45%, #151b24 100%);
	border-bottom: 1px solid var(--fsp-hero-glass-edge);
}

/* Hub heroes + home showcase: full width (no 100vw — breaks RTL mobile) */
body.fsp-has-app-nav .fsp-module-hero,
body.fsp-has-app-nav .fsp-phub-hero,
body.fsp-tools--hub .fsp-thub-console,
body.fsp-home--hub .fsp-hhub-showcase,
body.fsp-home--hub .fsp-hhub-showcase__viewport {
	width: 100%;
	max-width: 100%;
	margin-inline: 0;
	box-sizing: border-box;
}

/* Hub shells: no horizontal inset — content sections add their own pad */
body[class*="--hub"] main[class*="-shell"] {
	width: 100%;
	max-width: 100%;
	padding-inline: 0;
	overflow-x: clip;
	box-sizing: border-box;
}

.fsp-module-hero::before,
.fsp-phub-hero::before,
body.fsp-tools--hub .fsp-thub-console::before,
body.fsp-knowledge--hub .fsp-knowledge-hero::before,
body.fsp-quote--hub .fsp-quote-hero::before,
body.fsp-catalogs--hub .fsp-catalogs-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background:
		repeating-linear-gradient(
			115deg,
			rgba(255, 255, 255, 0.03) 0,
			rgba(255, 255, 255, 0.03) 1px,
			transparent 1px,
			transparent 24px
		),
		radial-gradient(circle at 28% 18%, rgba(232, 236, 241, 0.1), transparent 46%),
		radial-gradient(circle at 82% 72%, rgba(148, 163, 184, 0.1), transparent 42%);
}

.fsp-module-hero::after,
.fsp-phub-hero::after,
body.fsp-tools--hub .fsp-thub-console::after,
body.fsp-knowledge--hub .fsp-knowledge-hero::after,
body.fsp-quote--hub .fsp-quote-hero::after,
body.fsp-catalogs--hub .fsp-catalogs-hero::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background:
		linear-gradient(0deg, rgba(9, 13, 18, 0.72) 0%, rgba(9, 13, 18, 0.22) 44%, rgba(9, 13, 18, 0.48) 100%),
		linear-gradient(270deg, rgba(9, 13, 18, 0.55) 0%, transparent 55%);
	-webkit-backdrop-filter: blur(14px) saturate(1.06);
	backdrop-filter: blur(14px) saturate(1.06);
}

.fsp-phub-hero > *:not(.fsp-mhero-backdrop),
body.fsp-tools--hub .fsp-thub-console__inner,
body.fsp-tools--hub .fsp-thub-console__grid,
body.fsp-knowledge--hub .fsp-knowledge-hero__inner,
body.fsp-quote--hub .fsp-quote-hero__inner,
body.fsp-catalogs--hub .fsp-catalogs-hero__inner,
body.fsp-products--hub .fsp-phub-hero__frame {
	position: relative;
	z-index: 1;
}

/* Hero typography — light on dark glass (module-hero.css extends sizes) */
.fsp-phub-hero h1,
body.fsp-tools--hub .fsp-thub-console h1,
body.fsp-knowledge--hub .fsp-knowledge-hero h1,
body.fsp-quote--hub .fsp-quote-hero h1,
body.fsp-catalogs--hub .fsp-catalogs-hero h1 {
	color: var(--fsp-hero-text, #f1f5f9);
}

.fsp-phub-chrome__inner,
.fsp-phub-deck__label,
body.fsp-tools--hub .fsp-thub-console__kicker,
body.fsp-tools--hub .fsp-thub-console__lcd-label,
body.fsp-knowledge--hub .fsp-knowledge-kicker,
body.fsp-knowledge--hub .fsp-mhero-kicker,
body.fsp-quote--hub .fsp-quote-kicker,
body.fsp-quote--hub .fsp-mhero-kicker,
body.fsp-catalogs--hub .fsp-catalogs-kicker,
body.fsp-catalogs--hub .fsp-mhero-kicker,
body.fsp-knowledge--hub .fsp-knowledge-kicker a,
body.fsp-catalogs--hub .fsp-catalogs-kicker a {
	color: var(--fsp-hero-muted, #94a3b8);
}

.fsp-phub-deck__lead,
body.fsp-tools--hub .fsp-thub-lead,
body.fsp-knowledge--hub .fsp-knowledge-hero > p:not(.fsp-knowledge-kicker),
body.fsp-knowledge--hub .fsp-knowledge-hero__lead,
body.fsp-knowledge--hub .fsp-mhero-lead,
body.fsp-quote--hub .fsp-quote-hero__lead,
body.fsp-quote--hub .fsp-mhero-lead,
body.fsp-catalogs--hub .fsp-catalogs-hero__lead,
body.fsp-catalogs--hub .fsp-mhero-lead {
	color: var(--fsp-hero-lead, #cbd5e1);
	line-height: 1.75;
}

.fsp-phub-deck__metric-val,
.fsp-phub-deck__stat dd,
body.fsp-tools--hub .fsp-thub-console__lcd-val,
body.fsp-tools--hub .fsp-thub-console__readouts dd {
	color: #fff;
}

.fsp-phub-deck__metric-key,
.fsp-phub-deck__stat dt,
body.fsp-tools--hub .fsp-thub-console__readouts dt {
	color: var(--fsp-hero-muted, #94a3b8);
}

@supports not (backdrop-filter: blur(1px)) {
	.fsp-module-hero::after,
	.fsp-phub-hero::after,
	body.fsp-tools--hub .fsp-thub-console::after,
	body.fsp-knowledge--hub .fsp-knowledge-hero::after,
	body.fsp-quote--hub .fsp-quote-hero::after,
	body.fsp-catalogs--hub .fsp-catalogs-hero::after {
		background:
			linear-gradient(0deg, rgba(9, 13, 18, 0.88) 0%, rgba(26, 35, 50, 0.72) 100%);
	}
}

@media (max-width: 640px) {
	:root {
		--fsp-module-hero-h: 56vh;
		--fsp-module-hero-min: 240px;
		--fsp-module-hero-max: none;
		--fsp-page-pad-x: 16px;
	}

	/* Hub module heroes: grow with content; keep backdrop clipped */
	.fsp-module-hero,
	.fsp-phub-hero,
	body.fsp-tools--hub .fsp-thub-console,
	body.fsp-knowledge--hub .fsp-knowledge-hero,
	body.fsp-quote--hub .fsp-quote-hero,
	body.fsp-catalogs--hub .fsp-catalogs-hero,
	body.fsp-about--hub .fsp-about-hero,
	body.fsp-contact--hub .fsp-contact-hero {
		height: auto;
		min-height: 0;
		max-height: none;
		overflow: hidden;
		justify-content: flex-start;
	}

	.fsp-mhero--has-image.fsp-module-hero,
	body.fsp-tools--hub .fsp-thub-console.fsp-mhero--has-image,
	body.fsp-knowledge--hub .fsp-knowledge-hero.fsp-mhero--has-image,
	body.fsp-quote--hub .fsp-quote-hero.fsp-mhero--has-image,
	body.fsp-catalogs--hub .fsp-catalogs-hero.fsp-mhero--has-image,
	body.fsp-products--hub .fsp-phub-hero.fsp-mhero--has-image {
		min-height: 220px;
	}

	.fsp-knowledge-hero__inner,
	.fsp-quote-hero__inner,
	.fsp-catalogs-hero__inner,
	.fsp-thub-console__inner,
	.fsp-phub-deck__inner {
		padding: 28px var(--fsp-page-pad-x) 24px;
	}
}

.fsp-knowledge-article__content img,
.fsp-knowledge-article__content video,
.fsp-knowledge-article__content iframe,
.fsp-catalogs-content img,
.fsp-psingle-copy img,
.fsp-prose img {
	max-width: 100%;
	height: auto;
}

.fsp-knowledge-article__content table,
.fsp-catalogs-content table,
.fsp-prose table {
	display: block;
	max-width: 100%;
	overflow-x: auto;
}

/* ─── Shared brand footer (trust + gateway) ─────────────────── */
.fsp-brand-trust,
.fsp-brand-gateway {
	width: 100%;
	max-width: 100%;
	overflow-x: clip;
	box-sizing: border-box;
}

.fsp-brand-trust {
	background: rgba(238, 242, 247, 0.72);
	border-top: 1px solid rgba(226, 232, 240, 0.88);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
}

.fsp-brand-trust__inner {
	max-width: 1180px;
	margin: 0 auto;
	padding: 32px var(--fsp-page-pad-x, 20px);
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
	box-sizing: border-box;
	width: 100%;
}

.fsp-brand-trust__item {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.fsp-brand-trust__item strong {
	font-size: 14px;
	font-weight: 800;
	color: #0f172a;
}

.fsp-brand-trust__item span {
	font-size: 13px;
	color: #64748b;
	line-height: 1.6;
}

.fsp-brand-gateway {
	background: rgba(255, 255, 255, 0.55);
	border-top: 1px solid rgba(226, 232, 240, 0.88);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

.fsp-brand-gateway__inner {
	max-width: 1180px;
	margin: 0 auto;
	padding: 28px var(--fsp-page-pad-x, 20px) 40px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	box-sizing: border-box;
	width: 100%;
	min-width: 0;
}

.fsp-brand-gateway__copy {
	flex: 1 1 200px;
	min-width: 0;
}

.fsp-brand-gateway__copy strong {
	display: block;
	margin-bottom: 4px;
	font-size: 15px;
	color: #0f172a;
}

.fsp-brand-gateway__copy p {
	margin: 0;
	font-size: 14px;
	color: #64748b;
}

.fsp-brand-gateway__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 22px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	color: var(--fsp-brand-blue, #1e40af);
	background: transparent;
	border: 1px solid rgba(30, 64, 175, 0.35);
	transition: background 0.15s ease, transform 0.15s ease;
	box-sizing: border-box;
	max-width: 100%;
	min-width: 0;
	flex-shrink: 1;
	white-space: normal;
	text-align: center;
}

.fsp-brand-gateway__btn:hover {
	background: rgba(30, 64, 175, 0.06);
	transform: translateY(-1px);
	color: var(--fsp-brand-blue, #1e40af);
}

@media (max-width: 900px) {
	.fsp-brand-trust__inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.fsp-brand-trust__inner {
		grid-template-columns: 1fr;
		padding: 20px var(--fsp-page-pad-x, 16px);
		gap: 12px;
	}

	.fsp-brand-trust__item {
		padding: 14px 16px;
		border-radius: 12px;
		background: rgba(255, 255, 255, 0.72);
		border: 1px solid rgba(226, 232, 240, 0.95);
	}

	.fsp-brand-gateway__inner {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
		padding: 24px var(--fsp-page-pad-x, 16px) 32px;
	}

	.fsp-brand-gateway__btn {
		width: 100%;
		max-width: 100%;
		min-height: 48px;
		align-self: stretch;
	}
}

/* ─── Floating retail tab (single-unit showcase) ─────────── */
a.fsp-retail-tab,
body.fsp-app a.fsp-retail-tab,
body.fsp-home a.fsp-retail-tab,
body.fsp-tools a.fsp-retail-tab,
body.fsp-products a.fsp-retail-tab {
	position: fixed;
	left: 0;
	top: auto;
	bottom: calc(var(--fsp-mobile-dock-h, 56px) + var(--fsp-ticker-bottom-h, 0px) + 10px);
	z-index: 100000;
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	gap: 5px;
	min-width: 0;
	min-height: 40px;
	height: auto;
	width: auto;
	max-width: calc(100vw - 10px);
	padding: 6px 10px 6px 6px;
	border: 0;
	border-radius: 0 10px 10px 0;
	border-inline-end: 1px solid rgba(201, 169, 98, 0.35);
	background: linear-gradient(180deg, var(--fsp-retail-mid, #4a5d73) 0%, var(--fsp-retail-dark, #2f3b4a) 100%);
	color: #ffffff;
	text-decoration: none;
	box-shadow: 4px 2px 14px rgba(47, 59, 74, 0.28);
	transform: translateX(0);
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.2s ease;
}

@media (min-width: 1025px) {
	a.fsp-retail-tab,
	body.fsp-app a.fsp-retail-tab,
	body.fsp-home a.fsp-retail-tab,
	body.fsp-tools a.fsp-retail-tab,
	body.fsp-products a.fsp-retail-tab {
		bottom: calc(var(--fsp-ticker-bottom-h, 0px) + 14px);
	}
}

html.fsp-retail-tab-animate a.fsp-retail-tab,
html.fsp-retail-tab-animate body.fsp-app a.fsp-retail-tab,
html.fsp-retail-tab-animate body.fsp-home a.fsp-retail-tab,
html.fsp-retail-tab-animate body.fsp-tools a.fsp-retail-tab,
html.fsp-retail-tab-animate body.fsp-products a.fsp-retail-tab {
	transform: translateX(-110%);
}

html.fsp-retail-tab-animate a.fsp-retail-tab.is-visible,
html.fsp-retail-tab-animate body.fsp-app a.fsp-retail-tab.is-visible,
html.fsp-retail-tab-animate body.fsp-home a.fsp-retail-tab.is-visible,
html.fsp-retail-tab-animate body.fsp-tools a.fsp-retail-tab.is-visible,
html.fsp-retail-tab-animate body.fsp-products a.fsp-retail-tab.is-visible {
	transform: translateX(0);
}

a.fsp-retail-tab:hover,
a.fsp-retail-tab:focus-visible {
	color: #ffffff;
	box-shadow: 6px 2px 18px rgba(47, 59, 74, 0.36);
	outline: none;
}

.fsp-retail-tab__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	flex: 0 0 20px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
	color: #ffffff;
}

.fsp-retail-tab__icon svg {
	width: 14px;
	height: 14px;
}

.fsp-retail-tab__label,
a.fsp-retail-tab .fsp-retail-tab__label,
body.fsp-products a.fsp-retail-tab .fsp-retail-tab__label,
body.fsp-home a.fsp-retail-tab .fsp-retail-tab__label,
body.fsp-tools a.fsp-retail-tab .fsp-retail-tab__label,
body.fsp-app a.fsp-retail-tab .fsp-retail-tab__label {
	writing-mode: horizontal-tb;
	text-orientation: mixed;
	color: #ffffff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.15;
	white-space: nowrap;
}

a.fsp-retail-tab:hover .fsp-retail-tab__label,
a.fsp-retail-tab:focus-visible .fsp-retail-tab__label {
	color: #ffffff;
}

@media (max-width: 480px) {
	a.fsp-retail-tab,
	body.fsp-app a.fsp-retail-tab,
	body.fsp-home a.fsp-retail-tab,
	body.fsp-tools a.fsp-retail-tab,
	body.fsp-products a.fsp-retail-tab {
		min-height: 38px;
		padding: 5px 9px 5px 5px;
		gap: 4px;
		border-radius: 0 9px 9px 0;
	}

	.fsp-retail-tab__icon {
		width: 18px;
		height: 18px;
		flex-basis: 18px;
	}

	.fsp-retail-tab__icon svg {
		width: 13px;
		height: 13px;
	}

	.fsp-retail-tab__label,
	a.fsp-retail-tab .fsp-retail-tab__label,
	body.fsp-products a.fsp-retail-tab .fsp-retail-tab__label,
	body.fsp-home a.fsp-retail-tab .fsp-retail-tab__label,
	body.fsp-tools a.fsp-retail-tab .fsp-retail-tab__label,
	body.fsp-app a.fsp-retail-tab .fsp-retail-tab__label {
		font-size: 10px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html.fsp-retail-tab-animate a.fsp-retail-tab,
	html.fsp-retail-tab-animate body.fsp-app a.fsp-retail-tab,
	html.fsp-retail-tab-animate body.fsp-home a.fsp-retail-tab,
	html.fsp-retail-tab-animate body.fsp-tools a.fsp-retail-tab,
	html.fsp-retail-tab-animate body.fsp-products a.fsp-retail-tab {
		transform: translateX(0);
	}
}
