#ns-tabs {
	position: fixed;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2147483000;
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: flex-start;
}
#ns-tabs .ns-tab-btn {
	position: relative;
	background: #dcdcdc;
	color: #333333;
	border-width: 0;
	border-style: solid;
	border-color: transparent;
	cursor: pointer;
	font-family: 'Special Elite', 'Courier New', Courier, monospace;
	font-size: 16px;
	letter-spacing: .04em;
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	/* Horizontal padding (left/right) controls the tab's thickness. The flex
	   container is align-items:flex-start, so growing this padding keeps the
	   left edge pinned to the screen edge and extends the tab to the right —
	   no gap. */
	padding-top: 16px;
	padding-bottom: 16px;
	padding-left: 5px;
	padding-right: 5px;
	border-radius: 8px 0 0 8px;
	box-shadow: 0 2px 10px rgba(0,0,0,.18);
	white-space: nowrap;
	overflow: hidden;
	transition: padding-left .45s cubic-bezier(.3,1.12,.35,1),
	            padding-right .45s cubic-bezier(.3,1.12,.35,1),
	            background .45s cubic-bezier(.3,1.12,.35,1),
	            color .45s cubic-bezier(.3,1.12,.35,1),
	            box-shadow .45s ease;
}
/* One-time attention "peek": every tab thickens to the right and settles back,
   left edge pinned. Runs only when JS adds .ns-peek (once per session). */
#ns-tabs.ns-peek .ns-tab-btn {
	animation: nsTabPeek 4.2s cubic-bezier(.3,1.12,.35,1) .9s 2;
}
@keyframes nsTabPeek {
	0%   { padding-left: 5px;  padding-right: 5px; }
	22%  { padding-left: 13px; padding-right: 13px; }
	55%  { padding-left: 5px;  padding-right: 5px; }
	100% { padding-left: 5px;  padding-right: 5px; }
}
/* Faint slow light-sweep travelling along the vertical text. */
#ns-tabs .ns-tab-btn::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: -40%;
	height: 40%;
	background: linear-gradient(to bottom, transparent, rgba(255,255,255,.28), transparent);
	animation: nsTabShimmer 16s linear infinite;
	pointer-events: none;
}
@keyframes nsTabShimmer {
	0%   { top: -40%; opacity: 0; }
	8%   { opacity: .9; }
	28%  { top: 100%; opacity: 0; }
	100% { top: 100%; opacity: 0; }
}
/* Hover/active: ONLY the chosen tab thickens to the right and inverts colour,
   in sync. A soft white halo keeps the dark inverted tab's edges visible
   against the dark page background. */
#ns-tabs .ns-tab-btn:hover,
#ns-tabs .ns-tab-btn.is-active {
	padding-left: 14px;
	padding-right: 14px;
	background: #333333;
	color: #dcdcdc;
	box-shadow: 0 0 0 1px rgba(255,255,255,.45),
	            0 0 14px 2px rgba(255,255,255,.35),
	            0 4px 16px rgba(0,0,0,.28);
}
@media (prefers-reduced-motion: reduce) {
	#ns-tabs.ns-peek .ns-tab-btn { animation: none; }
	#ns-tabs .ns-tab-btn::after { animation: none; display: none; }
	#ns-tabs .ns-tab-btn { transition: background .3s, color .3s, box-shadow .3s; }
	#ns-tabs .ns-tab-btn:hover,
	#ns-tabs .ns-tab-btn.is-active { padding-left: 5px; padding-right: 5px; }
}
.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;
}
.ns-overlay.open {
	display: flex !important;
}
/* Dialog: "fuzzy fog" cloud matching the homepage orbit bubbles. The only
   visible fill is the blurred ::before fog band (inset -4px, blur 5px). */
.ns-dialog {
	position: relative;
	background: transparent;
	color: #222b3f;
	border-radius: 14px;
	width: 100%;
	max-width: 420px;
	padding: 24px 28px 26px;
	box-sizing: border-box;
	font-family: inherit;
	font-size: 14px;
	line-height: 1.6;
	letter-spacing: normal;
}
.ns-dialog::before {
	content: "";
	position: absolute;
	inset: -4px;
	z-index: -1;
	border-radius: 14px;
	background: rgba(207,207,207,.88);
	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: #0d1530;
}
.ns-dialog .ns-dlg-sub {
	font-family: inherit;
	font-size: 12.5px;
	font-weight: 400;
	letter-spacing: 0;
	opacity: .6;
	color: #222b3f;
}
.ns-close {
	position: absolute;
	top: 12px;
	right: 14px;
	width: 28px;
	height: 28px;
	font-size: 24px;
	line-height: 1;
	color: #555;
	cursor: pointer;
	background-color: transparent;
	border-width: 0;
	border-radius: 50%;
	transition: background .2s, color .2s;
}
.ns-close:hover { color: #0d1530; background: rgba(255,255,255,.25); }

/* ---- 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: #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-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: #0d1530;
	font-family: inherit;
	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(255,255,255,.5);
	border-radius: 8px;
	box-sizing: border-box;
	font-family: inherit;
	font-size: 14px;
	font-weight: 400;
	background: rgba(255,255,255,.42);
	color: #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(255,255,255,.95);
	background: rgba(255,255,255,.68);
	box-shadow: 0 0 0 3px rgba(255,255,255,.3);
}
.ns-form textarea { resize: vertical; min-height: 58px; }
.ns-counter {
	font-size: 11px;
	color: #566;
	text-align: right;
	margin: -5px 0 9px;
}
.ns-consent {
	position: relative;
	font-size: 11px;
	color: #222b3f;
	line-height: 1.4;
	margin-bottom: 10px;
	font-weight: 400;
	padding-left: 30px;
}
.ns-consent input {
	position: absolute;
	left: 2px;
	top: 0;
	width: 17px;
	height: 17px;
	margin: 0;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
	border-width: 1px;
	border-style: solid;
	border-color: rgba(255,255,255,.6);
	border-radius: 5px;
	background: rgba(255,255,255,.42);
	transition: background .2s, border-color .2s, box-shadow .2s;
}
.ns-consent input:hover {
	border-color: rgba(255,255,255,.95);
	background: rgba(255,255,255,.6);
}
.ns-consent input:focus-visible {
	outline: none;
	box-shadow: 0 0 0 3px rgba(255,255,255,.3);
}
.ns-consent input:checked {
	background: #0d1530;
	border-color: #0d1530;
}
.ns-consent input:checked::after {
	content: "";
	position: absolute;
	left: 5px;
	top: 1px;
	width: 5px;
	height: 9px;
	border-style: solid;
	border-color: #dcdcdc;
	border-width: 0 2px 2px 0;
	transform: rotate(43deg);
}
.ns-consent a { color: #0d1530; text-decoration: underline; }
.ns-hp { position: absolute; left: -9999px; }
.ns-actions {
	display: flex;
	justify-content: flex-end;
	margin-top: 8px;
}
.ns-submit {
	background: #333333;
	color: #dcdcdc;
	border-width: 0;
	border-style: solid;
	border-color: transparent;
	padding: 10px 28px;
	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.3); box-shadow: 0 0 18px 3px rgba(207,207,207,.6); }
.ns-submit:disabled { opacity: .6; cursor: default; }
.ns-msg {
	margin: 10px 0 0;
	font-size: 13px;
	font-family: inherit;
}
/* ---- 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(20,22,34,.35);
}
.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: inherit;
	font-size: 13px;
	color: #0d1530;
	opacity: .65;
}
.ns-cal-empty {
	font-family: inherit;
	font-size: 13.5px;
	line-height: 1.6;
	color: #222b3f;
}
@media (max-width: 600px) {
	#ns-tabs .ns-tab-btn { font-size: 15px; padding: 14px 4px; }
	.ns-cal-embed { height: 78vh; min-height: 520px; }
}