@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap");

:root {
	--ns-bg: #07090b;
	--ns-bg-accent: #0c1724;
	--ns-blue-light: #7ad4ff;
	--ns-blue: #3fb3ff;
	--ns-blue-deep: #1771b8;
	--ns-text-main: #e6f6ff;
	--ns-text-muted: #9bb7cf;
	--ns-border-soft: rgba(255, 255, 255, 0.08);
	--ns-glass: rgba(5, 7, 11, 0.78);
	--ns-glass-deep: rgba(4, 19, 34, 0.96);
	--ns-shadow: 0 26px 80px rgba(0, 0, 0, 0.9);
}

html {
	background: var(--ns-bg);
}

body,
input,
textarea,
select,
button {
	font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

body.ns-site {
	background: var(--ns-bg);
	color: var(--ns-text-main);
}

body.ns-site::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -2;
	background:
		radial-gradient(circle at 20% 0%, rgba(63, 179, 255, 0.16), transparent 32rem),
		radial-gradient(circle at 80% 100%, rgba(23, 113, 184, 0.18), transparent 34rem),
		var(--ns-bg);
}

a {
	color: var(--ns-blue-light);
}

a:hover {
	color: var(--ns-blue);
}

strong, b {
	font-weight: 700;
	color: var(--ns-text-main);
}

h1, h2, h3, h4, h5, h6 {
	color: var(--ns-text-main);
	font-weight: 700;
	line-height: 1.2;
}

h2 {
	font-size: clamp(1.75em, 3.3vw, 2.45em);
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

p {
	color: var(--ns-text-muted);
}


/* No bundled icon fonts required in this merged package. */
.icon:before {
	display: none !important;
	content: none !important;
}

#headerToggle .toggle:before {
	content: "☰" !important;
	font-family: "Montserrat", system-ui, sans-serif !important;
	font-weight: 800 !important;
	font-size: 22px !important;
}

.ns-email-link {
	display: inline-block;
	padding: 0.45em 0.9em;
	border: 1px solid rgba(122, 212, 255, 0.25);
	border-radius: 999px;
	color: var(--ns-blue-light) !important;
	font-size: 0.72em;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.ns-email-link:hover {
	background: rgba(6, 30, 52, 0.85);
	border-color: rgba(122, 212, 255, 0.5);
}

/* Header/sidebar */


#header {
	background:
		linear-gradient(180deg, rgba(12, 23, 36, 0.98), rgba(7, 9, 11, 0.98)),
		url("images/overlay.png");
	border-right: 1px solid rgba(122, 212, 255, 0.16);
	box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.03), 20px 0 60px rgba(0, 0, 0, 0.35);
}

#logo {
	margin: 1.5em 1.35em 1.75em;
	min-height: 76px;
	text-align: left;
}

#logo .image.avatar48 {
	width: 68px;
	height: 68px;
	background: transparent;
	border-radius: 0;
	overflow: hidden;
	box-shadow: 0 0 32px rgba(122, 212, 255, 0.16);
}

#logo .image.avatar48 img {
	width: 68px;
	height: 68px;
	object-fit: cover;
	object-position: center;
}

#logo h1 {
	font-size: 0.95em;
	font-weight: 800;
	letter-spacing: 0.18em;
	line-height: 1.15;
	text-transform: uppercase;
	color: var(--ns-blue-light);
	text-shadow: 0 8px 24px rgba(0, 0, 0, 0.9);
	padding-left: 86px;
}

#logo p {
	padding-left: 86px;
	font-size: 0.52em;
	line-height: 1.35;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ns-text-muted);
}

#nav ul li a {
	color: rgba(230, 246, 255, 0.62);
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

#nav ul li a span:before {
	color: rgba(122, 212, 255, 0.35);
}

#nav ul li a.active,
#nav ul li a:hover {
	background: rgba(6, 30, 52, 0.86);
	box-shadow: inset 3px 0 0 var(--ns-blue-light), 0 0 34px rgba(63, 179, 255, 0.08);
	color: var(--ns-text-main);
}

#nav ul li a.active span:before,
#nav ul li a:hover span:before {
	color: var(--ns-blue-light);
}

#header .icons a {
	color: rgba(122, 212, 255, 0.55);
}

#header .icons a:hover {
	color: var(--ns-blue-light);
}

#headerToggle .toggle:before {
	background: rgba(4, 19, 34, 0.96);
	border: 1px solid rgba(122, 212, 255, 0.35);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.55), 0 0 28px rgba(63, 179, 255, 0.12);
	color: var(--ns-blue-light);
}


/* Index top banner */

.ns-index-topbar {
	--ns-index-topbar-height: 116px;
	position: sticky;
	top: 0;
	z-index: 20;
	min-height: var(--ns-index-topbar-height);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	padding: 1.8rem clamp(2rem, 4vw, 4rem);
	background: rgba(5, 7, 11, 0.94);
	border-bottom: 1px solid rgba(122, 212, 255, 0.14);
	box-shadow: 0 18px 52px rgba(0, 0, 0, 0.35);
	backdrop-filter: blur(10px);
}

.ns-index-wordmark {
	font-family: "Montserrat", system-ui, sans-serif;
	font-size: clamp(0.95rem, 1.45vw, 1.45rem);
	font-weight: 800;
	letter-spacing: 0.28em;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
	color: var(--ns-text-main) !important;
	text-shadow: 0 8px 24px rgba(0, 0, 0, 0.9);
}

.ns-index-wordmark span {
	color: var(--ns-blue-light);
}

.ns-index-meta {
	font-size: clamp(0.55rem, 0.8vw, 0.75rem);
	font-weight: 600;
	letter-spacing: 0.08em;
	line-height: 1.35;
	text-transform: uppercase;
	color: var(--ns-text-muted);
	text-align: right;
}

/* Main page sections */

#main {
	background: var(--ns-bg);
}

#main > section {
	background-image: none;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

#main > section.two,
#main > section.three,
#main > section.four {
	background:
		radial-gradient(circle at top, rgba(18, 33, 51, 0.88) 0, rgba(5, 7, 11, 0.98) 68%),
		var(--ns-bg);
	border-top: 1px solid rgba(122, 212, 255, 0.08);
}

#main > section.three {
	background:
		radial-gradient(circle at 50% 0%, rgba(23, 113, 184, 0.2), transparent 28rem),
		linear-gradient(180deg, rgba(5, 7, 11, 0.99), rgba(12, 23, 36, 0.92));
}

#top {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	min-height: calc(100vh - 116px);
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--ns-bg) !important;
}

#top .container {
	position: relative;
	z-index: 2;
}

.ns-bg-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
	pointer-events: none;
	background: transparent;
	-webkit-user-select: none;
	user-select: none;
	filter: saturate(1.16) contrast(1.04) brightness(0.98);
}

.ns-video-fog {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background:
		radial-gradient(circle at top, rgba(26, 59, 87, 0.42) 0, rgba(3, 7, 12, 0.08) 45%),
		radial-gradient(circle at bottom, rgba(7, 17, 29, 0.56) 0, rgba(0, 0, 0, 0.42) 65%),
		linear-gradient(90deg, rgba(7, 9, 11, 0.46), rgba(7, 9, 11, 0.12) 46%, rgba(7, 9, 11, 0.36));
	backdrop-filter: blur(0.75px);
}

.ns-hero-card {
	max-width: 860px;
	margin: 0 auto;
	padding: clamp(1.5rem, 4vw, 3rem);
	border-radius: 28px;
	background: rgba(5, 7, 11, 0.72);
	border: 1px solid var(--ns-border-soft);
	box-shadow: var(--ns-shadow), 0 0 40px rgba(63, 179, 255, 0.12);
	backdrop-filter: blur(8px);
}

#top h2.alt {
	margin: 0;
	color: var(--ns-text-main);
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-shadow: 0 8px 24px rgba(0, 0, 0, 0.9);
}

#top h2.alt strong {
	color: var(--ns-blue-light);
}

#top p {
	max-width: 48rem;
	margin-left: auto;
	margin-right: auto;
	color: rgba(230, 246, 255, 0.78);
}

.ns-kicker {
	display: inline-flex;
	align-items: center;
	gap: 0.6em;
	margin: 0 0 1.2em;
	padding: 0.35em 0.8em;
	border-radius: 999px;
	background: rgba(6, 30, 52, 0.9);
	border: 1px solid rgba(112, 189, 255, 0.45);
	color: var(--ns-blue-light) !important;
	font-size: 0.58em;
	font-weight: 700;
	letter-spacing: 0.14em;
	line-height: 1.2;
	text-transform: uppercase;
}

.ns-kicker.centered {
	justify-content: center;
}

.ns-dot {
	width: 0.72em;
	height: 0.72em;
	border-radius: 999px;
	background: radial-gradient(circle, var(--ns-blue-light) 0, var(--ns-blue-deep) 70%);
	box-shadow: 0 0 0 0.42em rgba(55, 160, 255, 0.22);
	flex: 0 0 auto;
}

.ns-section-intro {
	max-width: 56rem;
	margin-left: auto;
	margin-right: auto;
}

.item.ns-service-card {
	height: 100%;
	margin-bottom: 0;
	background: linear-gradient(145deg, rgba(4, 19, 34, 0.96), rgba(5, 29, 49, 0.99));
	border: 1px solid rgba(122, 212, 255, 0.28);
	border-radius: 22px;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55), 0 0 40px rgba(63, 179, 255, 0.08);
	overflow: hidden;
}

.item.ns-service-card header {
	height: 100%;
	padding: 1.6em;
	background: transparent;
}

.item.ns-service-card h3 {
	font-size: 1em;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ns-blue-light);
}

.item.ns-service-card p {
	font-size: 0.72em;
	line-height: 1.7;
	margin: 0.9em 0 0;
}

.ns-about-panel {
	max-width: 850px;
	margin: 0 auto;
	padding: clamp(1.5rem, 4vw, 2.6rem);
	border-radius: 28px;
	background: rgba(5, 7, 11, 0.68);
	border: 1px solid rgba(122, 212, 255, 0.16);
	box-shadow: 0 20px 55px rgba(0, 0, 0, 0.45);
	backdrop-filter: blur(6px);
}

.ns-tagline {
	margin-top: 1.5em;
	font-size: 0.68em;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(196, 225, 255, 0.9) !important;
}

/* Forms and buttons */

form input[type="text"],
form input[type="email"],
form input[type="password"],
form select,
form textarea {
	background: rgba(1, 9, 17, 0.9);
	border: 1px solid rgba(143, 200, 255, 0.45);
	border-radius: 18px;
	box-shadow: none;
	color: var(--ns-text-main);
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form input[type="password"]:focus,
form select:focus,
form textarea:focus {
	background: rgba(3, 16, 29, 0.95);
	border-color: var(--ns-blue-light);
	box-shadow: 0 0 0 1px rgba(122, 212, 255, 0.35), 0 0 28px rgba(63, 179, 255, 0.12);
}

form ::-webkit-input-placeholder { color: rgba(155, 183, 207, 0.7) !important; }
form :-moz-placeholder { color: rgba(155, 183, 207, 0.7) !important; }
form ::-moz-placeholder { color: rgba(155, 183, 207, 0.7) !important; }
form :-ms-input-placeholder { color: rgba(155, 183, 207, 0.7) !important; }

input[type="button"],
input[type="submit"],
input[type="reset"],
button,
.button,
.ns-policy .contact-btn {
	border-radius: 999px;
	background-color: var(--ns-blue-light) !important;
	background-image: linear-gradient(135deg, #3fb3ff 0%, #9be3ff 58%, #52c3ff 100%) !important;
	color: #020308 !important;
	font-size: 0.8em;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-shadow: none !important;
	border: 1px solid rgba(230, 246, 255, 0.28) !important;
	box-shadow:
		0 12px 30px rgba(17, 113, 184, 0.72),
		0 0 34px rgba(63, 179, 255, 0.34),
		inset 0 1px 0 rgba(255, 255, 255, 0.34);
	transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}

input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
button:hover,
.button:hover,
.ns-policy .contact-btn:hover {
	filter: brightness(1.08) saturate(1.04);
	transform: translateY(-1px);
	box-shadow:
		0 16px 36px rgba(17, 113, 184, 0.9),
		0 0 46px rgba(63, 179, 255, 0.48),
		inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

#footer {
	background: linear-gradient(180deg, rgba(5, 7, 11, 0.98), rgba(7, 9, 11, 1));
	border-top: 1px solid rgba(122, 212, 255, 0.10);
	color: rgba(128, 156, 179, 0.9);
}

#footer .copyright li {
	border-left-color: rgba(122, 212, 255, 0.18);
}

/* Policy page */

body.ns-policy {
	background:
		radial-gradient(circle at top, rgba(18, 33, 51, 0.88) 0, rgba(5, 7, 11, 0.98) 68%),
		var(--ns-bg);
	color: var(--ns-text-main);
	font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
	font-weight: 400;
}

.ns-policy header {
	background: rgba(5, 7, 11, 0.88);
	border-bottom: 1px solid rgba(122, 212, 255, 0.14);
	backdrop-filter: blur(10px);
}

.ns-policy .wordmark {
	font-family: "Montserrat", system-ui, sans-serif;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ns-blue-light);
}

.ns-policy .wordmark span {
	color: var(--ns-text-main);
}

.ns-policy .effective-date,
.ns-policy nav p,
.ns-policy footer {
	color: var(--ns-text-muted);
}

.ns-policy nav ul li,
.ns-policy nav ul li:last-child,
.ns-policy .intro,
.ns-policy .policy-section,
.ns-policy footer {
	border-color: rgba(122, 212, 255, 0.14);
}

.ns-policy nav ul li a {
	color: rgba(230, 246, 255, 0.72);
	letter-spacing: 0.04em;
}

.ns-policy nav ul li a:hover,
.ns-policy a {
	color: var(--ns-blue-light) !important;
}

.ns-policy .hero-label,
.ns-policy ul.policy-list li::before {
	color: var(--ns-blue-light);
}

.ns-policy h1,
.ns-policy h2 {
	font-family: "Montserrat", system-ui, sans-serif;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--ns-text-main);
}

.ns-policy p,
.ns-policy ul.policy-list li {
	color: var(--ns-text-muted);
}

.ns-policy .section-tag {
	background: rgba(6, 30, 52, 0.9);
	border: 1px solid rgba(112, 189, 255, 0.45);
	border-radius: 999px;
	color: var(--ns-blue-light);
	font-weight: 700;
}

.ns-policy .contact-card,
.ns-policy .highlight-box {
	background: linear-gradient(145deg, rgba(4, 19, 34, 0.96), rgba(5, 29, 49, 0.99));
	border: 1px solid rgba(122, 212, 255, 0.28);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55), 0 0 40px rgba(63, 179, 255, 0.08);
}

.ns-policy .highlight-box {
	border-left: 3px solid var(--ns-blue-light);
}

.ns-policy ul.policy-list li {
	border-color: rgba(122, 212, 255, 0.12);
}

.ns-policy footer {
	background: rgba(5, 7, 11, 0.78);
}


@media screen and (max-width: 960px) {
	.ns-index-topbar {
		min-height: 92px;
		padding: 1.25rem 1.5rem 1.25rem 5.25rem;
	}

	#top {
		min-height: calc(100vh - 92px);
	}
}

@media screen and (max-width: 520px) {
	.ns-index-topbar {
		align-items: flex-start;
		flex-direction: column;
		gap: 0.65rem;
	}

	.ns-index-meta {
		text-align: left;
	}
}

@media screen and (max-width: 960px) {
	#header {
		background: linear-gradient(180deg, rgba(12, 23, 36, 0.98), rgba(7, 9, 11, 0.98));
	}

	#top {
		min-height: 92vh;
	}
}

@media screen and (max-width: 736px) {
	#logo h1,
	#logo p {
		padding-left: 82px;
	}

	#top h2.alt {
		letter-spacing: 0.05em;
	}

	.ns-hero-card {
		border-radius: 20px;
	}
}

/* Index full-width banner + collapsible side menu */
body.ns-site.ns-has-index-banner {
	--ns-index-topbar-height: 116px;
	--ns-sidebar-width: 300px;
}

body.ns-site.ns-has-index-banner #headerToggle {
	display: none !important;
}

body.ns-site.ns-has-index-banner #logo {
	display: none !important;
}

body.ns-site.ns-has-index-banner #header {
	top: var(--ns-index-topbar-height);
	height: calc(100vh - var(--ns-index-topbar-height));
	width: var(--ns-sidebar-width);
	z-index: 10002;
	transform: translateX(0);
	transition: transform 0.35s ease;
}

body.ns-site.ns-has-index-banner #header .top {
	padding-top: 1.25rem;
}

body.ns-site.ns-has-index-banner #main {
	margin-left: var(--ns-sidebar-width);
	padding-top: var(--ns-index-topbar-height);
	transition: margin-left 0.35s ease, transform 0.35s ease;
}

body.ns-site.ns-has-index-banner #footer {
	margin-left: var(--ns-sidebar-width);
	transition: margin-left 0.35s ease;
}

body.ns-site.ns-has-index-banner.ns-sidebar-collapsed #header {
	transform: translateX(calc(-1 * var(--ns-sidebar-width)));
}

body.ns-site.ns-has-index-banner.ns-sidebar-collapsed #main,
body.ns-site.ns-has-index-banner.ns-sidebar-collapsed #footer {
	margin-left: 0;
}

body.ns-site.ns-has-index-banner .ns-index-topbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: var(--ns-index-topbar-height);
	min-height: 0;
	z-index: 10005;
	box-sizing: border-box;
}

body.ns-site.ns-has-index-banner #top {
	min-height: calc(100vh - var(--ns-index-topbar-height));
	padding-top: 3rem !important;
	padding-bottom: 5rem !important;
	align-items: flex-start;
}

body.ns-site.ns-has-index-banner #top,
body.ns-site.ns-has-index-banner #portfolio,
body.ns-site.ns-has-index-banner #about,
body.ns-site.ns-has-index-banner #contact {
	scroll-margin-top: calc(var(--ns-index-topbar-height) + 24px);
}

.ns-sidebar-toggle {
	appearance: none;
	-webkit-appearance: none;
	position: fixed;
	top: calc(var(--ns-index-topbar-height, 116px) + 42vh);
	left: calc(var(--ns-sidebar-width, 300px) - 21px);
	z-index: 10004;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0 !important;
	border: 1px solid rgba(122, 212, 255, 0.38) !important;
	border-radius: 999px !important;
	background: rgba(4, 19, 34, 0.96) !important;
	background-image: none !important;
	color: var(--ns-blue-light) !important;
	font-family: "Montserrat", system-ui, sans-serif !important;
	font-size: 1.35rem !important;
	font-weight: 800 !important;
	line-height: 1 !important;
	letter-spacing: 0 !important;
	text-transform: none !important;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.65), 0 0 28px rgba(63, 179, 255, 0.16) !important;
	cursor: pointer;
	transition: left 0.35s ease, transform 0.12s ease, border-color 0.12s ease, box-shadow 0.12s ease;
}

.ns-sidebar-toggle:hover {
	transform: translateY(-1px);
	border-color: rgba(122, 212, 255, 0.72) !important;
	box-shadow: 0 15px 34px rgba(0, 0, 0, 0.75), 0 0 36px rgba(63, 179, 255, 0.24) !important;
	filter: none !important;
}

.ns-sidebar-toggle span {
	display: block;
	transform: translateY(-1px);
}

body.ns-site.ns-has-index-banner.ns-sidebar-collapsed .ns-sidebar-toggle {
	left: -21px;
}

body.ns-site.ns-has-index-banner.ns-sidebar-collapsed .ns-sidebar-toggle span {
	transform: translate(9px, -1px);
}

@media screen and (max-width: 960px) {
	body.ns-site.ns-has-index-banner {
		--ns-index-topbar-height: 92px;
		--ns-sidebar-width: 275px;
	}

	body.ns-site.ns-has-index-banner .ns-index-topbar {
		height: var(--ns-index-topbar-height);
		padding: 1.25rem 1.5rem 1.25rem 4.75rem;
	}

	/* Tablet/mobile: keep the side menu fully off-screen until the hamburger opens it. */
	body.ns-site.ns-has-index-banner #header {
		top: var(--ns-index-topbar-height);
		height: calc(100vh - var(--ns-index-topbar-height));
		width: var(--ns-sidebar-width);
		transform: translateX(calc(-100% - 8px));
		box-shadow: none;
	}

	body.ns-site.ns-has-index-banner.header-visible #header {
		transform: translateX(0);
		box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.03), 20px 0 60px rgba(0, 0, 0, 0.55);
	}

	body.ns-site.ns-has-index-banner #main,
	body.ns-site.ns-has-index-banner.header-visible #main {
		margin-left: 0;
		padding-top: var(--ns-index-topbar-height);
		transform: none !important;
	}

	body.ns-site.ns-has-index-banner #footer {
		margin-left: 0;
	}

	body.ns-site.ns-has-index-banner #top {
		min-height: calc(100vh - var(--ns-index-topbar-height));
	}

	/* The desktop half-visible caret becomes a normal hamburger on tablet/mobile. */
	body.ns-site.ns-has-index-banner .ns-sidebar-toggle,
	body.ns-site.ns-has-index-banner.ns-sidebar-collapsed .ns-sidebar-toggle,
	body.ns-site.ns-has-index-banner.header-visible .ns-sidebar-toggle {
		top: calc((var(--ns-index-topbar-height) - 44px) / 2);
		left: 1.15rem;
		width: 44px;
		height: 44px;
		border-radius: 12px !important;
		font-size: 1.35rem !important;
		z-index: 10006;
		transform: none !important;
	}

	body.ns-site.ns-has-index-banner .ns-sidebar-toggle span,
	body.ns-site.ns-has-index-banner.ns-sidebar-collapsed .ns-sidebar-toggle span,
	body.ns-site.ns-has-index-banner.header-visible .ns-sidebar-toggle span {
		transform: translateY(-1px);
	}
}

@media screen and (max-width: 520px) {
	body.ns-site.ns-has-index-banner .ns-index-topbar {
		align-items: flex-start;
		flex-direction: column;
		gap: 0.65rem;
	}
}

body.ns-site.ns-has-index-banner #headerToggle,
body.ns-site.ns-has-index-banner #headerToggle .toggle,
body.ns-site.ns-has-index-banner #headerToggle .toggle:before {
	display: none !important;
	visibility: hidden !important;
	pointer-events: none !important;
}

/* Kill native browser video UI/placeholder overlays on the hero background video. */
body.ns-site .ns-bg-video::-webkit-media-controls,
body.ns-site .ns-bg-video::-webkit-media-controls-enclosure,
body.ns-site .ns-bg-video::-webkit-media-controls-panel,
body.ns-site .ns-bg-video::-webkit-media-controls-play-button,
body.ns-site .ns-bg-video::-webkit-media-controls-start-playback-button,
body.ns-site .ns-bg-video::-webkit-media-controls-overlay-play-button,
body.ns-site .ns-bg-video::-webkit-media-controls-current-time-display,
body.ns-site .ns-bg-video::-webkit-media-controls-time-remaining-display,
body.ns-site .ns-bg-video::-webkit-media-controls-timeline,
body.ns-site .ns-bg-video::-webkit-media-controls-volume-slider,
body.ns-site .ns-bg-video::-webkit-media-controls-mute-button,
body.ns-site .ns-bg-video::-webkit-media-controls-fullscreen-button,
body.ns-site .ns-bg-video::-internal-media-controls-overlay-cast-button {
	display: none !important;
	opacity: 0 !important;
	visibility: hidden !important;
	-webkit-appearance: none !important;
}

body.ns-site .ns-bg-video {
	pointer-events: none !important;
}

/*remove unerline on link*/
.ns-topbar-logo,
.ns-topbar-logo a,
.ns-brand,
.ns-brand a,
#title a,
#logo a {
  border-bottom: none !important;
  text-decoration: none !important;
  box-shadow: none !important;
}

body.ns-site .ns-index-topbar a,
body.ns-site .ns-index-topbar a:hover,
body.ns-site .ns-index-topbar a:focus {
  border-bottom: none !important;
  text-decoration: none !important;
  box-shadow: none !important;
}


/* Default-page tablet/mobile hamburger menu
   Add `.ns-page-nav` to the page sidebar and `#nsPageMenuToggle` to the header. */
.ns-page-menu-toggle {
	display: none;
}

@media screen and (max-width: 960px) {
	body.ns-default-page {
		--ns-policy-header-height: 82px;
	}

	body.ns-default-page .page-wrap {
		grid-template-columns: 1fr;
		gap: 0;
	}

	body.ns-default-page .policy-header,
	body.ns-default-page > header {
		min-height: var(--ns-policy-header-height);
		padding-left: 4.75rem;
	}

	body.ns-default-page .ns-page-menu-toggle {
		appearance: none;
		-webkit-appearance: none;
		position: fixed;
		top: 1.15rem;
		left: 1.15rem;
		z-index: 10006;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		padding: 0 !important;
		border: 1px solid rgba(122, 212, 255, 0.38) !important;
		border-radius: 12px !important;
		background: rgba(4, 19, 34, 0.96) !important;
		background-image: none !important;
		color: var(--ns-blue-light) !important;
		font-family: "Montserrat", system-ui, sans-serif !important;
		font-size: 1.35rem !important;
		font-weight: 800 !important;
		line-height: 1 !important;
		letter-spacing: 0 !important;
		text-transform: none !important;
		box-shadow: 0 12px 30px rgba(0, 0, 0, 0.65), 0 0 28px rgba(63, 179, 255, 0.16) !important;
		cursor: pointer;
		transition: transform 0.12s ease, border-color 0.12s ease, box-shadow 0.12s ease;
	}

	body.ns-default-page .ns-page-menu-toggle:hover {
		transform: translateY(-1px);
		border-color: rgba(122, 212, 255, 0.72) !important;
		box-shadow: 0 15px 34px rgba(0, 0, 0, 0.75), 0 0 36px rgba(63, 179, 255, 0.24) !important;
		filter: none !important;
	}

	body.ns-default-page .ns-page-menu-toggle span {
		display: block;
		transform: translateY(-1px);
	}

	/* Tablet/mobile: hide the page sidebar fully until the hamburger opens it. */
	body.ns-default-page .ns-page-nav {
		position: fixed;
		top: var(--ns-policy-header-height);
		left: 0;
		z-index: 10004;
		width: min(82vw, 300px);
		height: calc(100vh - var(--ns-policy-header-height));
		overflow-y: auto;
		padding: 1.5rem 1.25rem 2rem;
		background: linear-gradient(180deg, rgba(12, 23, 36, 0.98), rgba(7, 9, 11, 0.98));
		border-right: 1px solid rgba(122, 212, 255, 0.16);
		box-shadow: none;
		transform: translateX(calc(-100% - 8px));
		transition: transform 0.35s ease, box-shadow 0.35s ease;
	}

	body.ns-default-page.ns-page-menu-visible .ns-page-nav {
		transform: translateX(0);
		box-shadow: 20px 0 60px rgba(0, 0, 0, 0.55);
	}
}

@media screen and (max-width: 520px) {
	body.ns-default-page {
		--ns-policy-header-height: 88px;
	}

	body.ns-default-page .policy-header,
	body.ns-default-page > header {
		align-items: flex-start;
		flex-direction: column;
		gap: 0.4rem;
		padding-left: 4.75rem;
	}
}

/* Default inner-page logo reveal
   Add `ns-default-page` to any non-home page body to reuse this effect. */
body.ns-default-page,
body.ns-policy {
  --ns-logo-scroll-opacity: 0;
  --ns-logo-max-opacity: 0.15;
  --ns-logo-size: min(68vw, 860px);
  position: relative;
  isolation: isolate;
}

body.ns-default-page::before,
body.ns-policy::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("../../images/logo.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: var(--ns-logo-size) auto;
  opacity: var(--ns-logo-scroll-opacity);
  filter: saturate(1.05) drop-shadow(0 0 46px rgba(63, 179, 255, 0.20));
  transition: opacity 0.08s linear;
}

body.ns-default-page > *,
body.ns-policy > * {
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 736px) {
  body.ns-default-page,
  body.ns-policy {
    --ns-logo-size: min(100vw, 620px);
  }
}



/* Centered mobile/tablet banner layout for index and default pages. */
@media screen and (max-width: 960px) {
	body.ns-site.ns-has-index-banner .ns-index-topbar {
		align-items: center;
		justify-content: center;
		flex-direction: column;
		gap: 0.45rem;
		padding: 1.15rem 4.75rem !important;
		text-align: center;
	}

	body.ns-site.ns-has-index-banner .ns-index-wordmark,
	body.ns-site.ns-has-index-banner .ns-index-meta {
		width: 100%;
		text-align: center;
	}

	body.ns-site.ns-has-index-banner .ns-index-meta {
		font-size: 0.66rem;
		letter-spacing: 0.09em;
	}

	body.ns-default-page .policy-header,
	body.ns-default-page > header {
		align-items: center;
		justify-content: center;
		flex-direction: column;
		gap: 0.55rem;
		padding: 1.15rem 4.75rem !important;
		text-align: center;
	}

	body.ns-default-page .policy-header .wordmark,
	body.ns-default-page .policy-header .effective-date {
		width: 100%;
		text-align: center;
	}
}

@media screen and (max-width: 520px) {
	body.ns-site.ns-has-index-banner .ns-index-topbar,
	body.ns-default-page .policy-header,
	body.ns-default-page > header {
		align-items: center;
		justify-content: center;
		text-align: center;
		padding-left: 4.75rem !important;
		padding-right: 4.75rem !important;
	}
}

body.ns-site.ns-has-index-banner .ns-index-wordmark {
  font-size: 1.5rem;
  letter-spacing: 0.18em;
}
/* Protected contact form helpers */
.ns-honeypot {
	position: absolute !important;
	left: -10000px !important;
	top: auto !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.ns-contact-form input[disabled] {
	cursor: wait;
	filter: grayscale(0.2) brightness(0.92);
	opacity: 0.78;
}

.ns-turnstile-wrap {
	display: flex;
	justify-content: center;
}

.ns-form-status {
	min-height: 1.4em;
	margin: 0 0 1rem 0;
	font-size: 0.88rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-align: center;
	color: rgba(196, 225, 255, 0.86);
}

.ns-form-status.is-success {
	color: #9be3ff;
	text-shadow: 0 0 16px rgba(63, 179, 255, 0.26);
}

.ns-form-status.is-error {
	color: #ffc4c4;
	text-shadow: 0 0 16px rgba(255, 82, 82, 0.22);
}

.ns-form-status.is-loading {
	color: rgba(196, 225, 255, 0.92);
}
