#ns-tabs {
	position: fixed;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2147483000;
	display: flex;
	flex-direction: column;
	/* Fluid tab scale: full size on desktop, then gently reduces as the
	   viewport approaches phone width without a sudden breakpoint jump. */
	--ns-tab-font-size: clamp(13.25px, calc(11.2px + .55vw), 16px);
	--ns-tab-pad-y: clamp(11px, calc(8px + .55vw), 16px);
	--ns-tab-pad-x: clamp(4px, calc(3.5px + .12vw), 5px);
	--ns-tab-pad-x-active: clamp(9px, calc(5.5px + .65vw), 14px);
	--ns-tab-pad-x-peek: clamp(7px, calc(5px + .45vw), 11px);
	--ns-tab-gap: clamp(7px, calc(5.8px + .3vw), 10px);
	gap: var(--ns-tab-gap);
	align-items: flex-start;
}
/* nsPlaceTabs() reparents the spine to body and centres only the ordinary
   action tabs. The language selector is fixed independently lower down. */
#ns-tabs .ns-tab-btn {
	position: relative;
	isolation: isolate;
	/* Translucent navy glass (revised 2026-08-17, was opaque): gradient sheen
	   over rgba(17,34,74,.40) with backdrop blur - over photography the tabs
	   read as glass rather than a solid slab. */
	background-color: rgba(17,34,74,0.40) !important;
	background-image: linear-gradient(105deg, rgba(255,255,255,0.16), rgba(255,255,255,0.04) 60%, rgba(255,255,255,0.08)) !important;
	color: #E8EAF0 !important;
	border-width: 1px;
	border-style: solid;
	border-color: rgba(255,255,255,0.30);
	border-left-width: 0;
	backdrop-filter: blur(5px) saturate(1.10);
	-webkit-backdrop-filter: blur(5px) saturate(1.10);
	cursor: pointer;
	font-family: 'Special Elite', 'Courier New', Courier, monospace;
	font-size: var(--ns-tab-font-size);
	letter-spacing: .04em;
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	padding-top: var(--ns-tab-pad-y);
	padding-bottom: var(--ns-tab-pad-y);
	padding-left: var(--ns-tab-pad-x);
	padding-right: var(--ns-tab-pad-x);
	border-radius: 8px 0 0 8px;
	box-shadow: inset 1px 1px 1px rgba(255,255,255,0.22),
	            inset -1px -1px 1px rgba(160,190,255,0.08),
	            0 6px 18px rgba(2,7,22,0.45);
	white-space: nowrap;
	overflow: visible;
	transition: padding-left .34s cubic-bezier(.3,1.04,.35,1),
	            padding-right .34s cubic-bezier(.3,1.04,.35,1),
	            box-shadow .28s ease;
}

/* Language selector: a single 54px-tall tab. Closed it shows the current
   two-letter code. Hover/focus widens the SAME tab and shows only alternatives. */
#ns-tabs .ns-tab-langs {
	position: fixed;
	left: 0;
	top: 78vh;
	z-index: 2147483001;
	margin-top: 0;
	display: block;
	--ns-lang-count: 2;
	--ns-lang-open-col-width: 35px;
}
.ns-lang-tab {
	position: relative;
	isolation: isolate;
	display: block;
	width: calc(1em + (2 * var(--ns-tab-pad-x, 5px)) + 2px);
	height: 54px;
	margin: 0;
	padding: 0;
	border-width: 1px;
	border-style: solid;
	border-color: rgba(255,255,255,0.30);
	border-left-width: 0;
	border-radius: 0 8px 8px 0;
	background-color: rgba(17,34,74,0.40) !important;
	background-image: linear-gradient(105deg, rgba(255,255,255,0.16), rgba(255,255,255,0.04) 60%, rgba(255,255,255,0.08)) !important;
	color: #E8EAF0 !important;
	backdrop-filter: blur(5px) saturate(1.10);
	-webkit-backdrop-filter: blur(5px) saturate(1.10);
	font-family: 'Special Elite', 'Courier New', Courier, monospace;
	font-size: var(--ns-tab-font-size, 16px);
	letter-spacing: .04em;
	box-shadow: inset 1px 1px 1px rgba(255,255,255,0.22),
	            inset -1px -1px 1px rgba(160,190,255,0.08),
	            0 6px 18px rgba(2,7,22,0.45);
	overflow: visible;
	transition: width .34s cubic-bezier(.3,1.04,.35,1), box-shadow .28s ease;
}
.ns-lang-tab:focus-visible { outline: none; }
.ns-lang-current {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: inherit;
	line-height: 1;
	pointer-events: none;
	transition: opacity .14s ease;
}
/* Explicit rotation avoids browser/theme differences in vertical writing-mode.
   EN / DE / FR are always shown as a rotated vertical two-letter code. */
.ns-lang-code {
	display: inline-block;
	white-space: nowrap;
	line-height: 1;
	transform: rotate(-90deg);
	transform-origin: 50% 50%;
}
.ns-lang-alternatives {
	position: absolute;
	inset: 0;
	display: grid;
	grid-template-columns: repeat(var(--ns-lang-count, 2), minmax(0,1fr));
	overflow: hidden;
	border-radius: inherit;
	opacity: 0;
	pointer-events: none;
	transition: opacity .15s ease .05s;
}
.ns-lang-choice {
	-webkit-appearance: none !important;
	appearance: none !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: auto !important;
	min-width: 0 !important;
	height: auto !important;
	min-height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	border-width: 0 !important;
	border-style: solid !important;
	border-color: transparent !important;
	border-radius: 0 !important;
	background-color: transparent !important;
	background-image: none !important;
	color: #E0E2E6 !important;
	box-shadow: none !important;
	cursor: pointer;
	font-family: 'Special Elite', 'Courier New', Courier, monospace !important;
	font-size: var(--ns-tab-font-size, 16px) !important;
	font-weight: 400 !important;
	line-height: 1 !important;
	text-transform: none !important;
	letter-spacing: .04em !important;
	opacity: .78;
	transition: opacity .16s ease, background-color .16s ease, text-shadow .16s ease;
}
.ns-lang-choice + .ns-lang-choice {
	box-shadow: inset 1px 0 0 rgba(255,255,255,.12) !important;
}
.ns-tab-langs:hover .ns-lang-tab,
.ns-tab-langs:focus-within .ns-lang-tab {
	width: calc(var(--ns-lang-count, 2) * var(--ns-lang-open-col-width));
	box-shadow: inset 1px 1px 1px rgba(255,255,255,0.30),
	            0 3px 14px rgba(0,0,0,.28),
	            5px 0 20px rgba(255,255,255,.16);
}
.ns-tab-langs:hover .ns-lang-current,
.ns-tab-langs:focus-within .ns-lang-current {
	opacity: 0;
}
.ns-tab-langs:hover .ns-lang-alternatives,
.ns-tab-langs:focus-within .ns-lang-alternatives {
	opacity: 1;
	pointer-events: auto;
}
.ns-lang-choice:hover,
.ns-lang-choice:focus-visible {
	opacity: 1;
	color: #FFFFFF !important;
	background-color: rgba(255,255,255,.16) !important;
	outline: none;
}

/* Homepage language mode (revised 2026-08-17): the languages render as
   VERTICAL tabs like the rest of the left edge - rotated text, glass,
   flush against the viewport with no line on the flush edge - stacked and
   vertically centred. The current language is a marked, non-interactive
   tab; the alternatives keep the .ns-tab-lang click binding. */
#ns-home-lang {
	position: fixed;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2147483000;
}
#ns-home-lang .ns-tab-langs { display: block; }
#ns-home-lang .ns-lang-list {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	margin: 0;
	padding: 0;
	background: none;
	border-width: 0;
	box-shadow: none;
}
#ns-home-lang .ns-lang-item {
	-webkit-appearance: none;
	appearance: none;
	display: block;
	margin: 0;
	padding: 14px 6px;
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	background-color: rgba(17,34,74,0.40);
	background-image: linear-gradient(105deg, rgba(255,255,255,0.16), rgba(255,255,255,0.04) 60%, rgba(255,255,255,0.08));
	backdrop-filter: blur(5px) saturate(1.10);
	-webkit-backdrop-filter: blur(5px) saturate(1.10);
	border-width: 1px;
	border-style: solid;
	border-color: rgba(255,255,255,0.30);
	/* rotate(180deg) maps the element's RIGHT border onto the flush screen-
	   left edge - zeroed so the tabs sit lineless against the viewport */
	border-right-width: 0;
	border-radius: 8px 0 0 8px;
	color: #E0E2E6;
	opacity: .78;
	font-family: 'Special Elite', 'Courier New', Courier, monospace;
	font-size: 15px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: .04em;
	text-align: center;
	text-transform: none;
	white-space: nowrap;
	cursor: pointer;
	box-shadow: 0 6px 18px rgba(2,7,22,0.45);
	transition: opacity .16s ease, box-shadow .28s ease;
}
#ns-home-lang .ns-lang-item.is-current {
	opacity: 1;
	color: #FFFFFF;
	background-image: linear-gradient(105deg, rgba(255,255,255,0.24), rgba(255,255,255,0.08) 60%, rgba(255,255,255,0.14));
	cursor: default;
}
#ns-home-lang .ns-lang-item:hover:not(.is-current),
#ns-home-lang .ns-lang-item:focus-visible {
	opacity: 1;
	color: #FFFFFF;
	box-shadow: 0 3px 14px rgba(0,0,0,.28), 4px 0 18px rgba(255,255,255,.15);
	outline: none;
}
@media (max-width: 540px) {
	#ns-home-lang .ns-lang-item {
		font-size: 13px;
		padding: 11px 5px;
	}
}

/* One-time attention peek: a restrained thickness pulse, once per session. */
#ns-tabs.ns-peek > .ns-tab-btn {
	animation: nsTabPeek 3.2s cubic-bezier(.3,1.04,.35,1) .8s 1;
}
@keyframes nsTabPeek {
	0%   { padding-left: var(--ns-tab-pad-x); padding-right: var(--ns-tab-pad-x); }
	28%  { padding-left: var(--ns-tab-pad-x-peek); padding-right: var(--ns-tab-pad-x-peek); }
	62%  { padding-left: var(--ns-tab-pad-x); padding-right: var(--ns-tab-pad-x); }
	100% { padding-left: var(--ns-tab-pad-x); padding-right: var(--ns-tab-pad-x); }
}

/* Hover/focus grows and brightens the blurred surface without inversion. */
#ns-tabs .ns-tab-btn:hover,
#ns-tabs .ns-tab-btn:focus-visible {
	padding-left: var(--ns-tab-pad-x-active);
	padding-right: var(--ns-tab-pad-x-active);
	box-shadow: inset 1px 1px 1px rgba(255,255,255,0.30),
	            inset -1px -1px 1px rgba(160,190,255,0.10),
	            0 3px 14px rgba(0,0,0,.28),
	            4px 0 18px rgba(255,255,255,.15);
	outline: none;
}
#ns-tabs .ns-tab-btn.is-active {
	padding-left: var(--ns-tab-pad-x-active);
	padding-right: var(--ns-tab-pad-x-active);
	box-shadow: inset 1px 1px 1px rgba(255,255,255,0.30),
	            inset -1px -1px 1px rgba(160,190,255,0.10),
	            0 3px 14px rgba(0,0,0,.28),
	            5px 0 20px rgba(255,255,255,.17);
}

@media (prefers-reduced-motion: reduce) {
	#ns-tabs.ns-peek > .ns-tab-btn { animation: none; }
	#ns-tabs .ns-tab-btn,
	.ns-lang-tab,
	.ns-lang-current,
	.ns-lang-alternatives,
	.ns-lang-choice { transition: none; }
}
.ns-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,.55);
	z-index: 2147483600;
	align-items: center;
	justify-content: center;
	padding: 24px;
	box-sizing: border-box;
	/* The overlay may scroll on a genuinely short viewport, but the dialog/form
	   itself must never acquire a nested scrollbar. Hide the outer scrollbar
	   chrome while preserving wheel/touch scrolling when it is actually needed. */
	overflow-x: hidden;
	overflow-y: auto;
	overscroll-behavior: contain;
	scrollbar-width: none;
}
.ns-overlay::-webkit-scrollbar { width: 0; height: 0; }
.ns-overlay.open {
	display: flex !important;
}
/* Dialog: fuzzy cloud using the host site palette. The site font colour
   becomes the panel surface; the host page background palette becomes ink. */
.ns-dialog {
	position: relative;
	background: transparent;
	color: var(--ns-plugin-site-bg, #222b3f);
	border-radius: 14px;
	width: 100%;
	max-width: 420px;
	padding: 24px 28px 26px;
	box-sizing: border-box;
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 1.6;
	letter-spacing: normal;
	transform: translateX(var(--ns-dialog-shift-x, 0px));
	overflow: visible !important;
	max-height: none !important;
}
.ns-dialog-contact,
.ns-dialog-contact .ns-form { overflow: visible !important; max-height: none !important; }
.ns-dialog::before {
	content: "";
	position: absolute;
	inset: -4px;
	z-index: -1;
	border-radius: 14px;
	background: var(--ns-plugin-site-fg, #cfcfcf);
	opacity: .96;
	filter: blur(5px);
}
.ns-dialog-icons { max-width: 360px; }
.ns-dialog-follow { max-width: 300px; }
.ns-dialog .ns-dlg-h {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 0 10px;
	margin: 0 0 16px;
	font-family: 'Special Elite', 'Courier New', Courier, monospace;
	font-weight: 400;
	font-size: 25px;
	line-height: 1.2;
	letter-spacing: .01em;
	color: var(--ns-plugin-site-bg, #0d1530);
}
.ns-dialog .ns-dlg-sub {
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	font-size: 12.5px;
	font-weight: 400;
	letter-spacing: 0;
	opacity: .6;
	color: var(--ns-plugin-site-bg, #222b3f);
}
.ns-close {
	position: absolute;
	top: 12px;
	right: 14px;
	width: 28px;
	height: 28px;
	font-size: 24px;
	line-height: 1;
	color: var(--ns-plugin-site-bg, #555555);
	cursor: pointer;
	background-color: transparent;
	border-width: 0;
	border-radius: 50%;
	transition: background .2s, color .2s;
}
.ns-close:hover { color: var(--ns-plugin-site-bg, #0d1530); background: rgba(var(--ns-plugin-site-bg-rgb, 34,43,63),.12); }

/* ---- social icon grid (Share / Follow) ---- */
.ns-sb-grid {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}
.ns-sb-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	width: 62px;
	text-decoration: none;
}
.ns-sb-bubble {
	position: relative;
	width: 46px !important;
	height: 46px !important;
	border-radius: 50% !important;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	flex-shrink: 0 !important;
	box-sizing: border-box !important;
	transition: transform .28s cubic-bezier(.3,.9,.3,1);
}
.ns-sb-bubble::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: var(--ns-bc, #888);
	filter: blur(.5px);
	opacity: .92;
	box-shadow: 0 0 0 0 var(--ns-bc, #888);
	transition: filter .28s ease, opacity .28s ease, box-shadow .28s ease;
}
.ns-sb-bubble svg {
	position: relative;
	z-index: 1;
	display: block !important;
	flex-shrink: 0 !important;
	width: 22px !important;
	height: 22px !important;
}
.ns-sb-item:hover .ns-sb-bubble { transform: translateY(-4px); }
.ns-sb-item:hover .ns-sb-bubble::before {
	filter: blur(3px);
	opacity: 1;
	box-shadow: 0 0 18px 4px var(--ns-glow, rgba(207,207,207,.7));
}
.ns-sb-label {
	font-size: 11px;
	color: var(--ns-plugin-site-bg, #556);
	letter-spacing: .02em;
}
.ns-sb-bubble.ns-sb-linkedin { --ns-bc: #0a66c2; --ns-glow: rgba(10,102,194,.6); }
.ns-sb-bubble.ns-sb-bluesky  { --ns-bc: #0085ff; --ns-glow: rgba(0,133,255,.6); }
.ns-sb-bubble.ns-sb-substack { --ns-bc: #ff6719; --ns-glow: rgba(255,103,25,.6); }
.ns-sb-bubble.ns-sb-facebook { --ns-bc: #1877f2; --ns-glow: rgba(24,119,242,.6); }
.ns-sb-bubble.ns-sb-email    { --ns-bc: #555555; --ns-glow: rgba(180,180,180,.7); }

/* ---- contact form ---- */
.ns-form label {
	display: block;
	margin-bottom: 7px;
	font-size: 12.5px;
	color: var(--ns-plugin-site-bg, #0d1530);
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	font-weight: 600;
}
.ns-req { color: #c00; }
.ns-form input[type=text],
.ns-form input[type=email],
.ns-form input[type=tel],
.ns-form textarea {
	width: 100%;
	padding: 7px 10px;
	margin-top: 4px;
	border-width: 1px;
	border-style: solid;
	border-color: rgba(var(--ns-plugin-site-bg-rgb, 34,43,63),.35);
	border-radius: 8px;
	box-sizing: border-box;
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: 400;
	background: rgba(var(--ns-plugin-site-bg-rgb, 34,43,63),.12);
	color: var(--ns-plugin-site-bg, #222b3f);
	transition: border-color .2s, box-shadow .2s, background .2s;
}
.ns-form input[type=text]:focus,
.ns-form input[type=email]:focus,
.ns-form input[type=tel]:focus,
.ns-form textarea:focus {
	outline: none;
	border-color: rgba(var(--ns-plugin-site-bg-rgb, 34,43,63),.78);
	background: rgba(var(--ns-plugin-site-bg-rgb, 34,43,63),.20);
	box-shadow: 0 0 0 3px rgba(var(--ns-plugin-site-bg-rgb, 34,43,63),.18);
}
.ns-form textarea { resize: vertical; min-height: 58px; overflow-x: hidden; overflow-y: auto; }
.ns-counter {
	font-size: 11px;
	color: var(--ns-plugin-site-bg, #566);
	opacity: .72;
	text-align: right;
	margin: -5px 0 9px;
}
.ns-consent {
	position: relative;
	font-size: 11px;
	color: var(--ns-plugin-site-bg, #222b3f);
	line-height: 1.4;
	margin-bottom: 10px;
	font-weight: 400;
	padding-left: 30px;
}
.ns-consent input {
	position: absolute;
	left: 2px;
	top: 0;
	width: 19px;
	height: 19px;
	margin: 0;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
	border-width: 1px;
	border-style: solid;
	border-color: rgba(var(--ns-plugin-site-bg-rgb, 34,43,63),.45);
	border-radius: 5px;
	background: rgba(var(--ns-plugin-site-bg-rgb, 34,43,63),.12);
	transition: background .2s, border-color .2s, box-shadow .2s;
}
.ns-consent input:hover {
	border-color: rgba(var(--ns-plugin-site-bg-rgb, 34,43,63),.78);
	background: rgba(var(--ns-plugin-site-bg-rgb, 34,43,63),.18);
}
.ns-consent input:focus-visible {
	outline: none;
	box-shadow: 0 0 0 3px rgba(var(--ns-plugin-site-bg-rgb, 34,43,63),.18);
}
.ns-consent input:checked {
	background: var(--ns-plugin-site-bg, #0d1530);
	border-color: var(--ns-plugin-site-bg, #0d1530);
}
.ns-consent input:checked::after {
	content: "";
	position: absolute;
	left: 6px;
	top: 2px;
	width: 5px;
	height: 10px;
	border-style: solid;
	border-color: var(--ns-plugin-site-fg, #dcdcdc);
	border-width: 0 2px 2px 0;
	transform: rotate(43deg);
}
.ns-consent a { color: var(--ns-plugin-site-bg, #0d1530); text-decoration: underline; }
.ns-hp { position: absolute; left: -9999px; }
.ns-actions {
	display: flex;
	justify-content: flex-end;
	margin-top: 8px;
}
.ns-submit {
	background: var(--ns-plugin-site-bg, #333333);
	color: var(--ns-plugin-site-fg, #dcdcdc);
	border-width: 0;
	border-style: solid;
	border-color: transparent;
	/* Special Elite sits optically high in its line box; bias the padding by
	   2px so the label is visually centred without changing button height. */
	padding: 12px 28px 8px;
	border-radius: 8px;
	cursor: pointer;
	font-family: 'Special Elite', 'Courier New', Courier, monospace;
	font-size: 15px;
	letter-spacing: .03em;
	transition: filter .2s, box-shadow .2s;
}
.ns-submit:hover { filter: brightness(1.12); box-shadow: 0 0 18px 3px rgba(var(--ns-plugin-site-bg-rgb, 34,43,63),.35); }
.ns-submit:disabled { opacity: .6; cursor: default; }
.ns-msg {
	margin: 10px 0 0;
	font-size: 13px;
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
/* ---- Schedule (Cal.com) embed ---- */
.ns-dialog-schedule { max-width: 560px; }
.ns-cal-embed {
	width: 100%;
	min-height: 580px;
	height: 70vh;
	max-height: 760px;
	border-radius: 10px;
	overflow: hidden;
	background: rgba(var(--ns-plugin-site-bg-rgb, 34,43,63),.12);
}
.ns-cal-embed iframe {
	width: 100% !important;
	height: 100% !important;
	border-width: 0;
	border-radius: 10px;
}
.ns-cal-loading {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	min-height: 580px;
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	font-size: 13px;
	color: var(--ns-plugin-site-bg, #0d1530);
	opacity: .65;
}
.ns-cal-empty {
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	font-size: 13.5px;
	line-height: 1.6;
	color: var(--ns-plugin-site-bg, #222b3f);
}
@media (max-width: 700px) {
	.ns-dialog { transform: none; }
}
@media (max-width: 600px) {
	.ns-cal-embed { height: 78vh; min-height: 520px; }
}


/* =====================================================================
 * SITE CHROME: top menu liquid glass (approved 2026-08-17, /foldout-test).
 * Scoped under html:not(.ns-menu-off): add class "ns-menu-off" to <html>
 * to disable the whole treatment in an emergency.
 * Bar: rgba(17,34,74,.26) + blur(6). Open panels: .40 + blur(6).
 * Refraction is a separate JS-built overlay (.ns-lg-refr) carrying a lone
 * url() filter: some Chromium builds drop an entire backdrop-filter list
 * containing url() next to blur()/saturate(), so the layers MUST stay
 * separate. Popups (.ns-overlay/.ns-dialog) are intentionally untouched.
 * ===================================================================== */
html:not(.ns-menu-off) body #main-header {
	background-color: rgba(17,34,74,0.26) !important;
	/* Divi puts `transition: all` on the header; during the hover solidify
	   that re-animates the whole paint stack. Restrict it to the one property
	   that actually changes. */
	transition: background-color .28s ease-in-out !important;
	background-image: linear-gradient(180deg, rgba(255,255,255,0.13), rgba(255,255,255,0.03) 55%, rgba(255,255,255,0.06)) !important;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: rgba(255,255,255,0.20);
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 10px 30px rgba(2,7,22,0.40);
	backdrop-filter: blur(6px) saturate(1.10);
	-webkit-backdrop-filter: blur(6px) saturate(1.10);
}
html:not(.ns-menu-off) body #main-header.et-fixed-header {
	background-color: rgba(17,34,74,0.26) !important;
}
html:not(.ns-menu-off) body #main-header .logo_container img { filter: none !important; }
html:not(.ns-menu-off) body #main-header::before,
html:not(.ns-menu-off) body #main-header::after { background: transparent !important; box-shadow: none !important; }
/* Keep the bar's content above the refraction overlay. */
html:not(.ns-menu-off) body #main-header > *:not(.ns-lg-refr) {
	position: relative;
	z-index: 2;
}
.ns-lg-refr {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	opacity: 1;
	transition: opacity .25s ease;
}
/* While the bar is in use, fade the refraction layer out via OPACITY: it
   animates smoothly (filter-to-none is a discrete jump - the first flash),
   and at 0 the url() backdrop leaves the compositor stack entirely, which
   also sidesteps raster glitches some Chromium builds show while animating
   a background under stacked backdrop effects. */
html:not(.ns-menu-off) body #main-header:hover > .ns-lg-refr,
html:not(.ns-menu-off) body #main-header:focus-within > .ns-lg-refr,
html:not(.ns-menu-off) body #main-header:has(.nav li:hover) > .ns-lg-refr,
html:not(.ns-menu-off) body #main-header:has(.nav li:focus-within) > .ns-lg-refr {
	opacity: 0;
}
/* Hover/focus: the bar solidifies for reading. The blur and refraction
   layers stay RUNNING: `backdrop-filter: none` is a discrete jump (filters
   cannot interpolate to none), so dropping them here un-blurred the page
   behind the still-translucent bar for the length of the background
   transition - a sharp flash of content before the solid arrived. Behind
   the opaque #0E1D42 the backdrop is invisible anyway, so keeping the
   layers active is visually identical at rest and seamless in motion. */
html:not(.ns-menu-off) body #main-header:hover,
html:not(.ns-menu-off) body #main-header:focus-within,
html:not(.ns-menu-off) body #main-header:has(.nav li:hover),
html:not(.ns-menu-off) body #main-header:has(.nav li:focus-within) {
	background-color: #0E1D42 !important;
}
html:not(.ns-menu-off) body #main-header .nav li a,
html:not(.ns-menu-off) body #main-header #et_search_icon:before,
html:not(.ns-menu-off) body #main-header .mobile_menu_bar:before,
html:not(.ns-menu-off) body #main-header .et-search-field { color: #E0E2E6 !important; }
/* Open panels: dropdown sub-menus and the mobile menu. */
html:not(.ns-menu-off) body #main-header .nav li ul.sub-menu,
html:not(.ns-menu-off) body #main-header .et_mobile_menu {
	background-color: rgba(17,34,74,0.40) !important;
	background-image: linear-gradient(165deg, rgba(255,255,255,0.10), rgba(255,255,255,0.02)) !important;
	border-width: 1px;
	border-style: solid;
	border-color: rgba(255,255,255,0.18) !important;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 18px 44px rgba(0,0,0,0.50) !important;
	backdrop-filter: blur(6px) saturate(1.10) !important;
	-webkit-backdrop-filter: blur(6px) saturate(1.10) !important;
}
html:not(.ns-menu-off) body #main-header .nav li ul.sub-menu > li,
html:not(.ns-menu-off) body #main-header .et_mobile_menu > li {
	position: relative;
	z-index: 2;
}
html:not(.ns-menu-off) body #main-header .nav li ul.sub-menu::before,
html:not(.ns-menu-off) body #main-header .nav li ul.sub-menu::after,
html:not(.ns-menu-off) body #main-header .et_mobile_menu::before,
html:not(.ns-menu-off) body #main-header .et_mobile_menu::after { background: transparent !important; box-shadow: none !important; }
html:not(.ns-menu-off) body #main-header .nav li ul.sub-menu a,
html:not(.ns-menu-off) body #main-header .et_mobile_menu a { color: #E0E2E6 !important; }
/* The li-bearing selector variants out-rank the legacy hover wash in
   ns-framework lab.css (same importance, higher specificity), which would
   otherwise win by cascade order. Keep the plain variants as well. */
html:not(.ns-menu-off) body #main-header .nav li ul.sub-menu li a:hover,
html:not(.ns-menu-off) body #main-header .nav li ul.sub-menu li a:focus-visible,
html:not(.ns-menu-off) body #main-header .et_mobile_menu li a:hover,
html:not(.ns-menu-off) body #main-header .et_mobile_menu li a:focus-visible,
html:not(.ns-menu-off) body #main-header .nav li ul.sub-menu a:hover,
html:not(.ns-menu-off) body #main-header .nav li ul.sub-menu a:focus-visible,
html:not(.ns-menu-off) body #main-header .et_mobile_menu a:hover,
html:not(.ns-menu-off) body #main-header .et_mobile_menu a:focus-visible {
	background-color: rgba(255,255,255,0.16) !important;
	color: #FFFFFF !important;
}