/* ==========================================================================
   Nordic Cloud ApS - Nordic Aurora design system
   1. Tokens
   2. Base
   3. Preloader
   4. Header & brand
   5. Navigation links
   6. Services mega panel
   7. Buttons
   8. Hero
   9. Modals & forms
   10. Floating utilities
   11. Motion preferences
   ========================================================================== */

/* 1. Tokens
   ========================================================================== */
:root {
	--nc-ink: #070B14;
	--nc-ink-raised: #0F1A2E;
	--nc-ink-deep: #050810;
	--nc-text: #E8EEF7;
	--nc-muted: #93A4BF;
	--nc-line: rgba(232, 238, 247, 0.12);
	--nc-line-strong: rgba(232, 238, 247, 0.22);
	--nc-surface: rgba(232, 238, 247, 0.04);
	--nc-surface-raised: rgba(232, 238, 247, 0.07);
	--nc-aurora-teal: #35F0C0;
	--nc-aurora-blue: #4CC2FF;
	--nc-aurora-violet: #7C5CFF;
	--nc-aurora-gradient: linear-gradient(120deg, #35F0C0 0%, #4CC2FF 48%, #7C5CFF 100%);
	--nc-glow: 0 18px 60px rgba(76, 194, 255, 0.18);
	--nc-shadow: 0 30px 80px rgba(3, 6, 14, 0.65);
	--nc-ease: cubic-bezier(0.25, 1, 0.5, 1);
	--nc-ease-soft: cubic-bezier(0.32, 0.72, 0.28, 1);
	--nc-header-height: 84px;
	--nc-font-display: "Bricolage Grotesque", "Segoe UI", sans-serif;
	--nc-font-accent: "Instrument Serif", Georgia, serif;
	--nc-font-body: "Inter", "Segoe UI", sans-serif;
	--nc-font-mono: "JetBrains Mono", "SFMono-Regular", monospace;
}

/* 2. Base
   ========================================================================== */
html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--nc-header-height) + 24px);
}

body {
	background-color: var(--nc-ink);
	color: var(--nc-text);
	font-family: var(--nc-font-body);
	font-size: 1rem;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

h1, h2, h3, h4 {
	font-family: var(--nc-font-display);
	letter-spacing: -0.02em;
}

::selection {
	background: rgba(124, 92, 255, 0.45);
	color: #FFFFFF;
}

.nc-skip {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 2000;
	padding: 10px 18px;
	border-radius: 999px;
	background: var(--nc-ink-raised);
	color: var(--nc-text);
	font-size: 0.85rem;
	text-decoration: none;
	transform: translateY(-160%);
	transition: transform 0.4s var(--nc-ease);
}

.nc-skip:focus-visible {
	transform: translateY(0);
	outline: 2px solid var(--nc-aurora-blue);
	outline-offset: 2px;
}

/* Scroll reveal primitive */
.nc-reveal {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity 0.9s var(--nc-ease), transform 0.9s var(--nc-ease);
}

.nc-reveal.is-visible {
	opacity: 1;
	transform: none;
}

.nc-reveal[data-reveal-delay="1"] { transition-delay: 0.08s; }
.nc-reveal[data-reveal-delay="2"] { transition-delay: 0.16s; }
.nc-reveal[data-reveal-delay="3"] { transition-delay: 0.24s; }
.nc-reveal[data-reveal-delay="4"] { transition-delay: 0.32s; }

/* 3. Preloader
   ========================================================================== */
.nc-preloader {
	position: fixed;
	inset: 0;
	z-index: 3000;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 26px;
	background: radial-gradient(circle at 50% 45%, #0E1A2E 0%, var(--nc-ink-deep) 70%);
	transition: opacity 0.7s var(--nc-ease), visibility 0.7s var(--nc-ease);
}

.nc-preloader.is-done {
	opacity: 0;
	visibility: hidden;
}

.nc-preloader__mark {
	position: relative;
	width: 92px;
	height: 92px;
}

.nc-preloader__ring {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 1px solid transparent;
	border-top-color: var(--nc-aurora-blue);
	border-right-color: var(--nc-aurora-violet);
	animation: nc-spin 1.5s var(--nc-ease-soft) infinite;
}

.nc-preloader__ring:last-of-type {
	inset: 14px;
	border-top-color: var(--nc-aurora-teal);
	border-right-color: transparent;
	border-left-color: var(--nc-aurora-blue);
	animation-duration: 2.1s;
	animation-direction: reverse;
}

.nc-preloader__core {
	position: absolute;
	inset: 36px;
	border-radius: 50%;
	background: var(--nc-aurora-gradient);
	filter: blur(6px);
	animation: nc-pulse 2s ease-in-out infinite;
}

.nc-preloader__label {
	margin: 0;
	font-family: var(--nc-font-mono);
	font-size: 0.75rem;
	letter-spacing: 0.42em;
	text-transform: uppercase;
	color: var(--nc-muted);
}

@keyframes nc-spin {
	to { transform: rotate(360deg); }
}

@keyframes nc-pulse {
	0%, 100% { opacity: 0.55; transform: scale(0.88); }
	50% { opacity: 1; transform: scale(1.06); }
}

/* 4. Header & brand
   ========================================================================== */
.nc-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1040;
	transition: transform 0.55s var(--nc-ease), background-color 0.45s var(--nc-ease),
		backdrop-filter 0.45s var(--nc-ease), border-color 0.45s var(--nc-ease), box-shadow 0.45s var(--nc-ease);
	border-bottom: 1px solid transparent;
}

.nc-header.is-scrolled {
	background: rgba(7, 11, 20, 0.72);
	backdrop-filter: blur(18px) saturate(160%);
	-webkit-backdrop-filter: blur(18px) saturate(160%);
	border-bottom-color: var(--nc-line);
	box-shadow: 0 18px 50px rgba(3, 6, 14, 0.45);
}

.nc-header.is-hidden {
	transform: translateY(-105%);
}

.nc-navbar {
	padding: 0;
}

.nc-navbar__inner {
	position: relative;
	display: flex;
	align-items: center;
	gap: 24px;
	min-height: var(--nc-header-height);
}

.nc-brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	text-decoration: none;
	color: var(--nc-text);
	border-radius: 16px;
	transition: transform 0.5s var(--nc-ease);
}

.nc-brand:hover {
	transform: translateY(-1px);
}

.nc-brand:focus-visible {
	outline: 2px solid var(--nc-aurora-blue);
	outline-offset: 6px;
}

.nc-brand__mark {
	display: block;
	width: 44px;
	height: 44px;
	flex: 0 0 auto;
}

.nc-brand__mark svg {
	width: 100%;
	height: 100%;
	overflow: visible;
	fill: none;
}

.nc-brand__frame {
	fill: rgba(232, 238, 247, 0.03);
	stroke: var(--nc-line-strong);
	stroke-width: 1;
	transition: stroke 0.6s var(--nc-ease), fill 0.6s var(--nc-ease);
}

.nc-brand__arc,
.nc-brand__letter {
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.nc-brand__arc {
	stroke-width: 1.6;
	opacity: 0.5;
	stroke-dasharray: 46;
	transition: opacity 0.6s var(--nc-ease), transform 0.7s var(--nc-ease);
	transform-origin: 22px 22px;
}

.nc-brand__arc--mid {
	opacity: 0.28;
}

.nc-brand__letter {
	stroke-width: 2.6;
	stroke-dasharray: 78;
	stroke-dashoffset: 0;
	transition: stroke-dashoffset 0.9s var(--nc-ease);
}

.nc-brand:hover .nc-brand__frame {
	stroke: rgba(76, 194, 255, 0.55);
	fill: rgba(76, 194, 255, 0.06);
}

.nc-brand:hover .nc-brand__arc {
	opacity: 0.9;
	transform: translateX(1.5px);
}

.nc-brand:hover .nc-brand__letter {
	animation: nc-trace 1.1s var(--nc-ease);
}

@keyframes nc-trace {
	from { stroke-dashoffset: 78; }
	to { stroke-dashoffset: 0; }
}

.nc-brand__type {
	display: flex;
	flex-direction: column;
	line-height: 1.15;
}

.nc-brand__name {
	font-family: var(--nc-font-display);
	font-weight: 700;
	font-size: 1.22rem;
	letter-spacing: -0.03em;
}

.nc-brand__name-accent {
	background: var(--nc-aurora-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	margin-left: 0.22em;
}

.nc-brand__meta {
	font-family: var(--nc-font-mono);
	font-size: 0.62rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--nc-muted);
}

/* Mobile toggler */
.nc-toggler {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 46px;
	height: 46px;
	margin-left: auto;
	padding: 0 12px;
	border: 1px solid var(--nc-line);
	border-radius: 14px;
	background: var(--nc-surface);
	transition: border-color 0.4s var(--nc-ease), background-color 0.4s var(--nc-ease);
}

.nc-toggler__bar {
	display: block;
	height: 1.5px;
	background: var(--nc-text);
	border-radius: 2px;
	transition: transform 0.45s var(--nc-ease), opacity 0.3s var(--nc-ease), width 0.45s var(--nc-ease);
}

.nc-toggler__bar:nth-child(2) { width: 70%; }

.nc-toggler:hover {
	border-color: var(--nc-line-strong);
	background: var(--nc-surface-raised);
}

.nc-toggler:focus-visible {
	outline: 2px solid var(--nc-aurora-blue);
	outline-offset: 3px;
}

.nc-toggler[aria-expanded="true"] .nc-toggler__bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nc-toggler[aria-expanded="true"] .nc-toggler__bar:nth-child(2) { opacity: 0; width: 0; }
.nc-toggler[aria-expanded="true"] .nc-toggler__bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* 5. Navigation links
   ========================================================================== */
.nc-collapse {
	align-items: center;
	gap: 18px;
}

.nc-nav {
	position: relative;
	align-items: center;
	gap: 6px;
}

/* Highlight that glides between the hovered items */
.nc-nav__pill {
	position: absolute;
	left: 0;
	top: 50%;
	height: 38px;
	width: 0;
	border-radius: 999px;
	background: rgba(232, 238, 247, 0.07);
	border: 1px solid transparent;
	opacity: 0;
	pointer-events: none;
	transform: translate3d(0, -50%, 0);
	transition: transform 0.45s var(--nc-ease), width 0.45s var(--nc-ease), opacity 0.3s var(--nc-ease),
		border-color 0.45s var(--nc-ease);
}

.nc-nav.is-tracking .nc-nav__pill {
	opacity: 1;
	border-color: rgba(76, 194, 255, 0.22);
}

.nc-link {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 10px 16px;
	border: 0;
	background: transparent;
	color: var(--nc-muted);
	font-size: 0.92rem;
	font-weight: 500;
	letter-spacing: 0.01em;
	text-decoration: none;
	border-radius: 999px;
	transition: color 0.4s var(--nc-ease);
}

.nc-link:hover,
.nc-link.show,
.nc-link.is-current {
	color: var(--nc-text);
}

.nc-link:focus-visible {
	outline: 2px solid var(--nc-aurora-blue);
	outline-offset: 2px;
}

/* Label swap: the visible line lifts out while its twin rises into place */
.nc-link__text {
	position: relative;
	display: block;
	overflow: hidden;
	height: 1.35em;
}

.nc-link__line {
	display: block;
	transition: transform 0.55s var(--nc-ease);
}

.nc-link__line--ghost {
	position: absolute;
	left: 0;
	top: 100%;
	width: 100%;
	color: var(--nc-text);
}

.nc-link:hover .nc-link__line,
.nc-link:focus-visible .nc-link__line,
.nc-link.show .nc-link__line {
	transform: translateY(-100%);
}

/* Aurora dot marking the section currently in view */
.nc-link__dot {
	position: absolute;
	left: 50%;
	bottom: 1px;
	width: 4px;
	height: 4px;
	margin-left: -2px;
	border-radius: 50%;
	background: var(--nc-aurora-gradient);
	opacity: 0;
	transform: scale(0.4);
	transition: opacity 0.45s var(--nc-ease), transform 0.45s var(--nc-ease);
}

.nc-link.is-current .nc-link__dot {
	opacity: 1;
	transform: scale(1);
}

.nc-link__chevron {
	font-size: 0.6rem;
	color: currentcolor;
	opacity: 0.7;
	transition: transform 0.45s var(--nc-ease), opacity 0.45s var(--nc-ease);
}

.nc-link.show .nc-link__chevron {
	transform: rotate(180deg);
	opacity: 1;
}

/* 6. Services mega panel
   ========================================================================== */
.nc-dropdown {
	position: static;
}

/* Positioned by CSS rather than Popper, so the panel keeps its own transform.
   The [data-bs-popper] pair is required: Bootstrap sets that attribute while the
   menu is open and its own rule would otherwise pull the panel to the left edge. */
.nc-mega,
.nc-mega[data-bs-popper] {
	position: absolute;
	top: calc(100% - 12px);
	right: 0;
	bottom: auto;
	left: auto;
	display: block;
	width: min(760px, calc(100vw - 48px));
	margin: 0;
	padding: 22px;
	border: 1px solid var(--nc-line);
	border-radius: 24px;
	background: linear-gradient(160deg, rgba(15, 26, 46, 0.96) 0%, rgba(7, 11, 20, 0.97) 100%);
	backdrop-filter: blur(22px);
	-webkit-backdrop-filter: blur(22px);
	box-shadow: var(--nc-shadow), var(--nc-glow);
	/* Closed state: blurred, scaled down and lifted */
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(-14px) scale(0.97);
	filter: blur(8px);
	transition: opacity 0.42s var(--nc-ease), transform 0.52s var(--nc-ease),
		filter 0.42s var(--nc-ease), visibility 0.52s var(--nc-ease);
}

.nc-mega.show {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0) scale(1);
	filter: blur(0);
}

/* Aurora hairline running along the top edge of the panel */
.nc-mega::before {
	content: "";
	position: absolute;
	top: 0;
	left: 18%;
	right: 18%;
	height: 1px;
	background: var(--nc-aurora-gradient);
	opacity: 0;
	transition: opacity 0.6s var(--nc-ease) 0.12s, left 0.7s var(--nc-ease) 0.12s, right 0.7s var(--nc-ease) 0.12s;
}

.nc-mega.show::before {
	opacity: 0.8;
	left: 4%;
	right: 4%;
}

.nc-mega__head {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 8px;
	padding: 0 8px 16px;
	border-bottom: 1px solid var(--nc-line);
}

.nc-mega__eyebrow {
	font-family: var(--nc-font-mono);
	font-size: 0.68rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--nc-text);
}

.nc-mega__hint {
	font-size: 0.78rem;
	color: var(--nc-muted);
}

.nc-mega__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	padding: 16px 0;
}

.nc-mega__card {
	position: relative;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: start;
	gap: 14px;
	padding: 16px;
	border: 1px solid transparent;
	border-radius: 18px;
	background: var(--nc-surface);
	text-align: left;
	color: var(--nc-text);
	white-space: normal;
	overflow: hidden;
	transition: transform 0.5s var(--nc-ease), border-color 0.5s var(--nc-ease),
		background-color 0.5s var(--nc-ease), box-shadow 0.5s var(--nc-ease);
}

/* Staggered entrance of the cards once the panel opens */
.nc-mega__card {
	opacity: 0;
	transform: translateY(12px);
}

.nc-mega.show .nc-mega__card {
	opacity: 1;
	transform: translateY(0);
	transition: opacity 0.5s var(--nc-ease), transform 0.55s var(--nc-ease),
		border-color 0.5s var(--nc-ease), background-color 0.5s var(--nc-ease), box-shadow 0.5s var(--nc-ease);
}

.nc-mega.show .nc-mega__card:nth-child(1) { transition-delay: 0.08s; }
.nc-mega.show .nc-mega__card:nth-child(2) { transition-delay: 0.14s; }
.nc-mega.show .nc-mega__card:nth-child(3) { transition-delay: 0.20s; }
.nc-mega.show .nc-mega__card:nth-child(4) { transition-delay: 0.26s; }

.nc-mega__card:hover,
.nc-mega__card:focus,
.nc-mega__card:focus-visible,
.nc-mega__card:active {
	transform: translateY(-3px);
	color: var(--nc-text);
	border-color: rgba(76, 194, 255, 0.35);
	background: var(--nc-surface-raised);
	box-shadow: 0 16px 40px rgba(3, 6, 14, 0.55);
	outline: none;
}

.nc-mega__card:focus-visible {
	border-color: var(--nc-aurora-blue);
}

.nc-mega__icon {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 13px;
	border: 1px solid var(--nc-line);
	background: rgba(76, 194, 255, 0.08);
	color: var(--nc-aurora-blue);
	font-size: 0.95rem;
	transition: color 0.5s var(--nc-ease), border-color 0.5s var(--nc-ease), transform 0.5s var(--nc-ease);
}

.nc-mega__card:hover .nc-mega__icon {
	color: var(--nc-aurora-teal);
	border-color: rgba(53, 240, 192, 0.4);
	transform: scale(1.06);
}

.nc-mega__body {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.nc-mega__title {
	font-family: var(--nc-font-display);
	font-size: 0.97rem;
	font-weight: 600;
	line-height: 1.3;
}

.nc-mega__text {
	font-size: 0.82rem;
	line-height: 1.5;
	color: var(--nc-muted);
}

.nc-mega__arrow {
	align-self: center;
	font-size: 0.72rem;
	color: var(--nc-muted);
	opacity: 0;
	transform: translateX(-6px);
	transition: opacity 0.45s var(--nc-ease), transform 0.45s var(--nc-ease), color 0.45s var(--nc-ease);
}

.nc-mega__card:hover .nc-mega__arrow,
.nc-mega__card:focus-visible .nc-mega__arrow {
	opacity: 1;
	transform: translateX(0);
	color: var(--nc-aurora-blue);
}

.nc-mega__foot {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 16px 8px 4px;
	border-top: 1px solid var(--nc-line);
}

.nc-mega__footnote {
	font-size: 0.78rem;
	color: var(--nc-muted);
}

.nc-mega__cta {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 9px 18px;
	border: 1px solid var(--nc-line-strong);
	border-radius: 999px;
	background: transparent;
	color: var(--nc-text);
	font-size: 0.83rem;
	font-weight: 500;
	transition: border-color 0.45s var(--nc-ease), background-color 0.45s var(--nc-ease), color 0.45s var(--nc-ease);
}

.nc-mega__cta i {
	font-size: 0.7rem;
	transition: transform 0.45s var(--nc-ease);
}

.nc-mega__cta:hover {
	border-color: rgba(76, 194, 255, 0.5);
	background: rgba(76, 194, 255, 0.1);
	color: #FFFFFF;
}

.nc-mega__cta:hover i {
	transform: translateX(3px);
}

.nc-mega__cta:focus-visible {
	outline: 2px solid var(--nc-aurora-blue);
	outline-offset: 3px;
}

/* 7. Buttons
   ========================================================================== */
.nc-cta,
.nc-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 13px 24px;
	border: 0;
	border-radius: 999px;
	font-family: var(--nc-font-body);
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	overflow: hidden;
	transition: transform 0.45s var(--nc-ease), box-shadow 0.45s var(--nc-ease),
		background-color 0.45s var(--nc-ease), border-color 0.45s var(--nc-ease), color 0.45s var(--nc-ease);
}

.nc-cta i,
.nc-btn i {
	font-size: 0.78rem;
	transition: transform 0.45s var(--nc-ease);
}

.nc-cta:hover i,
.nc-btn:hover i {
	transform: translateX(3px);
}

.nc-btn--ghost:hover i {
	transform: translateY(-2px);
}

.nc-cta,
.nc-btn--primary {
	background: var(--nc-aurora-gradient);
	color: #04070E;
	box-shadow: 0 12px 34px rgba(76, 194, 255, 0.24);
}

/* Sheen sweeping across the primary action on hover */
.nc-cta::after,
.nc-btn--primary::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.55) 50%, transparent 80%);
	transform: translateX(-110%);
	transition: transform 0.85s var(--nc-ease);
}

.nc-cta:hover,
.nc-btn--primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 44px rgba(76, 194, 255, 0.34);
}

.nc-cta:hover::after,
.nc-btn--primary:hover::after {
	transform: translateX(110%);
}

.nc-cta:focus-visible,
.nc-btn:focus-visible {
	outline: 2px solid var(--nc-aurora-blue);
	outline-offset: 4px;
}

.nc-btn--ghost {
	background: var(--nc-surface);
	border: 1px solid var(--nc-line-strong);
	color: var(--nc-text);
}

.nc-btn--ghost:hover {
	transform: translateY(-2px);
	border-color: rgba(76, 194, 255, 0.45);
	background: var(--nc-surface-raised);
}

.nc-btn--sm {
	padding: 10px 18px;
	font-size: 0.82rem;
}

.nc-btn--block {
	width: 100%;
	margin-top: 22px;
}

/* 8. Hero
   ========================================================================== */
.nc-hero {
	position: relative;
	padding: calc(var(--nc-header-height) + 90px) 0 110px;
	overflow: hidden;
	isolation: isolate;
}

.nc-hero__aurora {
	position: absolute;
	inset: -20% -10% auto;
	height: 120%;
	z-index: -3;
	filter: blur(90px);
	opacity: 0.55;
	transform: translate3d(var(--nc-parallax-x, 0px), var(--nc-parallax-y, 0px), 0);
	transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
	animation: nc-aurora-breathe 18s ease-in-out infinite alternate;
}

@keyframes nc-aurora-breathe {
	0% { opacity: 0.42; filter: blur(90px) hue-rotate(0deg); }
	100% { opacity: 0.62; filter: blur(78px) hue-rotate(-14deg); }
}

/* Light curtains sweeping diagonally, the way an aurora actually moves */
.nc-hero__curtains {
	position: absolute;
	inset: -25% -25% auto;
	height: 105%;
	z-index: -2;
	opacity: 0.5;
	background: repeating-linear-gradient(
		104deg,
		rgba(53, 240, 192, 0) 0px,
		rgba(53, 240, 192, 0.16) 3px,
		rgba(76, 194, 255, 0.12) 10px,
		rgba(124, 92, 255, 0.1) 18px,
		rgba(124, 92, 255, 0) 40px
	);
	filter: blur(26px);
	mask-image: radial-gradient(ellipse 58% 68% at 70% 2%, #000 8%, transparent 72%);
	-webkit-mask-image: radial-gradient(ellipse 58% 68% at 70% 2%, #000 8%, transparent 72%);
	animation: nc-curtain-drift 26s ease-in-out infinite alternate;
}

@keyframes nc-curtain-drift {
	0% { transform: translate3d(-4%, 0, 0) skewX(-7deg) scaleY(1); opacity: 0.38; }
	50% { opacity: 0.62; }
	100% { transform: translate3d(5%, 3%, 0) skewX(4deg) scaleY(1.1); opacity: 0.44; }
}

/* Fine grain keeps the large gradients from banding */
.nc-hero__grain {
	position: absolute;
	inset: -20%;
	z-index: -1;
	opacity: 0.05;
	pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
	animation: nc-grain-shift 6s steps(5) infinite;
}

@keyframes nc-grain-shift {
	0% { transform: translate3d(0, 0, 0); }
	25% { transform: translate3d(-4%, 3%, 0); }
	50% { transform: translate3d(3%, -4%, 0); }
	75% { transform: translate3d(-3%, -3%, 0); }
	100% { transform: translate3d(0, 0, 0); }
}

.nc-hero__band {
	position: absolute;
	border-radius: 50%;
}

.nc-hero__band--one {
	top: 4%;
	left: 6%;
	width: 46vw;
	height: 34vw;
	background: radial-gradient(circle, rgba(76, 194, 255, 0.55) 0%, transparent 68%);
	animation: nc-drift-a 20s ease-in-out infinite alternate;
}

.nc-hero__band--two {
	top: 0;
	right: 2%;
	width: 40vw;
	height: 40vw;
	background: radial-gradient(circle, rgba(124, 92, 255, 0.5) 0%, transparent 66%);
	animation: nc-drift-b 26s ease-in-out infinite alternate;
}

.nc-hero__band--three {
	top: 42%;
	left: 34%;
	width: 34vw;
	height: 26vw;
	background: radial-gradient(circle, rgba(53, 240, 192, 0.3) 0%, transparent 70%);
	animation: nc-drift-c 32s ease-in-out infinite alternate;
}

@keyframes nc-drift-a {
	to { transform: translate3d(7%, 5%, 0) scale(1.12); }
}

@keyframes nc-drift-b {
	to { transform: translate3d(-9%, 8%, 0) scale(1.08); }
}

@keyframes nc-drift-c {
	to { transform: translate3d(5%, -7%, 0) scale(1.15); }
}

.nc-hero__grid-lines {
	position: absolute;
	inset: 0;
	z-index: -2;
	transform: translate3d(calc(var(--nc-parallax-x, 0px) * -0.4), calc(var(--nc-parallax-y, 0px) * -0.4), 0);
	transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
	background-image:
		linear-gradient(to right, rgba(232, 238, 247, 0.05) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(232, 238, 247, 0.05) 1px, transparent 1px);
	background-size: 84px 84px;
	mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 100%);
	-webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 30%, transparent 100%);
}

.nc-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
	align-items: start;
	column-gap: 70px;
}

.nc-hero__copy {
	max-width: 42rem;
}

/* Status strip: fixed location tag plus a cycling discipline */
.nc-hero__strip {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 34px;
	font-family: var(--nc-font-mono);
	font-size: 0.7rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--nc-muted);
}

.nc-hero__pin {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: var(--nc-text);
}

.nc-hero__strip-rule {
	width: 42px;
	height: 1px;
	background: linear-gradient(90deg, rgba(76, 194, 255, 0.7), rgba(76, 194, 255, 0));
}

.nc-hero__rotator {
	position: relative;
	display: inline-block;
	height: 1.4em;
	overflow: hidden;
	vertical-align: bottom;
}

.nc-hero__rotator-track {
	display: block;
	animation: nc-rotate-terms 16s cubic-bezier(0.76, 0, 0.24, 1) infinite;
}

.nc-hero__rotator-track span {
	display: block;
	height: 1.4em;
	line-height: 1.4em;
	color: var(--nc-aurora-teal);
	white-space: nowrap;
}

@keyframes nc-rotate-terms {
	0%, 18% { transform: translateY(0); }
	25%, 43% { transform: translateY(-1.4em); }
	50%, 68% { transform: translateY(-2.8em); }
	75%, 93% { transform: translateY(-4.2em); }
	100% { transform: translateY(-5.6em); }
}

.nc-hero__pulse {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--nc-aurora-teal);
	box-shadow: 0 0 0 0 rgba(53, 240, 192, 0.6);
	animation: nc-beacon 2.4s ease-out infinite;
}

@keyframes nc-beacon {
	70% { box-shadow: 0 0 0 10px rgba(53, 240, 192, 0); }
	100% { box-shadow: 0 0 0 0 rgba(53, 240, 192, 0); }
}

.nc-hero__title {
	max-width: 22ch;
	margin-bottom: 28px;
	font-size: clamp(2.4rem, 5.2vw, 3.95rem);
	font-weight: 600;
	line-height: 1.02;
	letter-spacing: -0.035em;
}

.nc-hero__title-accent {
	display: block;
	margin-top: 0.06em;
	font-family: var(--nc-font-accent);
	font-style: italic;
	font-weight: 400;
	font-size: 1.06em;
	letter-spacing: -0.015em;
	background: var(--nc-aurora-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.nc-hero__lead {
	max-width: 58ch;
	margin-bottom: 38px;
	font-size: clamp(1rem, 1.5vw, 1.12rem);
	color: var(--nc-muted);
}

.nc-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 0;
}

/* Payback model panel */
.nc-payback {
	padding: 26px 26px 22px;
	border: 1px solid var(--nc-line);
	border-radius: 26px;
	background: linear-gradient(165deg, rgba(15, 26, 46, 0.86) 0%, rgba(7, 11, 20, 0.92) 100%);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	box-shadow: var(--nc-shadow);
}

.nc-payback__head {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 8px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--nc-line);
}

.nc-payback__label {
	font-family: var(--nc-font-mono);
	font-size: 0.66rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--nc-aurora-blue);
}

.nc-payback__hint {
	font-size: 0.74rem;
	color: var(--nc-muted);
}

.nc-payback__chart svg {
	display: block;
	width: 100%;
	height: auto;
	margin: 12px 0 4px;
	overflow: visible;
}

.nc-payback__grid line {
	stroke: rgba(232, 238, 247, 0.07);
	stroke-width: 1;
}

.nc-payback__area {
	fill: url(#ncPaybackFill);
	transition: opacity 0.4s var(--nc-ease);
}

.nc-payback__line {
	fill: none;
	stroke: url(#ncPaybackStroke);
	stroke-width: 2.4;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.nc-payback__threshold {
	stroke: rgba(232, 238, 247, 0.34);
	stroke-width: 1;
	stroke-dasharray: 4 5;
	transition: transform 0.45s var(--nc-ease);
}

.nc-payback__threshold-label,
.nc-payback__axis text {
	fill: var(--nc-muted);
	font-family: var(--nc-font-mono);
	font-size: 8.5px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.nc-payback__threshold-label {
	transition: transform 0.45s var(--nc-ease);
}

.nc-payback__marker {
	transition: transform 0.45s var(--nc-ease), opacity 0.35s var(--nc-ease);
}

.nc-payback__marker line {
	stroke: rgba(53, 240, 192, 0.45);
	stroke-width: 1;
	stroke-dasharray: 3 4;
}

.nc-payback__marker circle {
	fill: var(--nc-aurora-teal);
	stroke: rgba(7, 11, 20, 0.9);
	stroke-width: 2;
}

.nc-payback.is-unreachable .nc-payback__marker {
	opacity: 0;
}

.nc-payback__assumption {
	margin: 2px 0 0;
	font-size: 0.7rem;
	line-height: 1.5;
	color: rgba(147, 164, 191, 0.75);
}

.nc-payback__result {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 10px;
	padding: 16px 0 18px;
	border-bottom: 1px solid var(--nc-line);
}

.nc-payback__value {
	font-family: var(--nc-font-display);
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1;
	background: var(--nc-aurora-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.nc-payback__unit {
	font-size: 0.86rem;
	color: var(--nc-text);
}

.nc-payback__verdict {
	flex: 1 0 100%;
	margin-top: 4px;
	font-size: 0.8rem;
	line-height: 1.5;
	color: var(--nc-muted);
}

.nc-payback__controls {
	display: grid;
	gap: 14px;
	padding-top: 18px;
}

.nc-payback__control label {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 8px;
	font-size: 0.76rem;
	color: var(--nc-muted);
}

.nc-payback__control label span {
	font-family: var(--nc-font-mono);
	font-size: 0.76rem;
	color: var(--nc-text);
}

.nc-payback__control input[type="range"] {
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 4px;
	border-radius: 999px;
	background: rgba(232, 238, 247, 0.12);
	outline: none;
}

.nc-payback__control input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 16px;
	height: 16px;
	border: 0;
	border-radius: 50%;
	background: var(--nc-aurora-gradient);
	box-shadow: 0 0 0 0 rgba(76, 194, 255, 0.28);
	cursor: pointer;
	transition: box-shadow 0.35s var(--nc-ease), transform 0.35s var(--nc-ease);
}

.nc-payback__control input[type="range"]::-moz-range-thumb {
	width: 16px;
	height: 16px;
	border: 0;
	border-radius: 50%;
	background: #4CC2FF;
	cursor: pointer;
}

.nc-payback__control input[type="range"]:hover::-webkit-slider-thumb {
	transform: scale(1.12);
	box-shadow: 0 0 0 6px rgba(76, 194, 255, 0.14);
}

.nc-payback__control input[type="range"]:focus-visible::-webkit-slider-thumb {
	box-shadow: 0 0 0 6px rgba(76, 194, 255, 0.28);
}

.nc-hero__facts {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	margin: 76px 0 0;
	border-top: 1px solid var(--nc-line);
	background: var(--nc-line);
}

.nc-hero__fact {
	padding: 22px 20px 0;
	background: var(--nc-ink);
}

.nc-hero__fact dt {
	margin-bottom: 8px;
	font-family: var(--nc-font-mono);
	font-size: 0.66rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--nc-aurora-blue);
}

.nc-hero__fact dd {
	margin: 0;
	font-size: 0.93rem;
	color: var(--nc-text);
}

/* 8b. Approach timeline
   ========================================================================== */
.nc-eyebrow {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 22px;
	font-family: var(--nc-font-mono);
	font-size: 0.7rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--nc-aurora-blue);
}

.nc-eyebrow__rule {
	width: 34px;
	height: 1px;
	background: var(--nc-aurora-gradient);
}

.nc-approach {
	position: relative;
	padding: 120px 0 130px;
	border-top: 1px solid var(--nc-line);
}

.nc-approach__layout {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 90px;
}

.nc-approach__aside {
	position: sticky;
	top: calc(var(--nc-header-height) + 56px);
	align-self: start;
}

.nc-approach__title {
	margin-bottom: 22px;
	font-size: clamp(1.8rem, 3.1vw, 2.6rem);
	font-weight: 600;
	line-height: 1.14;
}

.nc-approach__text {
	margin-bottom: 30px;
	color: var(--nc-muted);
}

.nc-approach__actions {
	margin-bottom: 26px;
}

.nc-approach__note {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.82rem;
	color: var(--nc-muted);
}

.nc-approach__note i {
	color: var(--nc-aurora-teal);
}

.nc-approach__media,
.nc-company__media {
	position: relative;
	margin: 34px 0 0;
	border: 1px solid var(--nc-line);
	border-radius: 22px;
	overflow: hidden;
	background: var(--nc-ink-raised);
}

.nc-approach__media img,
.nc-company__media img {
	display: block;
	width: 100%;
	height: auto;
	transform: scale(1.02);
	transition: transform 1.2s var(--nc-ease), filter 1.2s var(--nc-ease);
	filter: saturate(0.92);
}

.nc-approach__media:hover img,
.nc-company__media:hover img {
	transform: scale(1.06);
	filter: saturate(1.05);
}

.nc-approach__media::after,
.nc-company__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(190deg, rgba(76, 194, 255, 0.1) 0%, rgba(7, 11, 20, 0) 45%, rgba(7, 11, 20, 0.6) 100%);
	pointer-events: none;
}

.nc-company__media figcaption {
	position: absolute;
	left: 18px;
	bottom: 16px;
	z-index: 1;
	font-family: var(--nc-font-mono);
	font-size: 0.66rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--nc-text);
}

/* Timeline rail */
.nc-steps {
	position: relative;
	margin: 0;
	padding: 6px 0 0 54px;
	list-style: none;
	--nc-progress: 0;
}

.nc-steps::before,
.nc-steps::after {
	content: "";
	position: absolute;
	left: 13px;
	top: 14px;
	bottom: 60px;
	width: 1px;
}

.nc-steps::before {
	background: var(--nc-line);
}

/* Aurora line drawn in step with the scroll position */
.nc-steps::after {
	background: var(--nc-aurora-gradient);
	transform: scaleY(var(--nc-progress));
	transform-origin: top center;
	box-shadow: 0 0 12px rgba(76, 194, 255, 0.5);
	transition: transform 0.25s linear;
}

.nc-step {
	position: relative;
	padding-bottom: 58px;
	opacity: 0.38;
	transform: translateY(18px);
	transition: opacity 0.7s var(--nc-ease), transform 0.7s var(--nc-ease);
}

.nc-step.is-visible {
	transform: none;
	opacity: 0.55;
}

.nc-step.is-active {
	opacity: 1;
}

.nc-step:last-child {
	padding-bottom: 0;
}

.nc-step__dot {
	position: absolute;
	left: -48px;
	top: 6px;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	border: 1px solid var(--nc-line-strong);
	background: var(--nc-ink);
	transition: border-color 0.5s var(--nc-ease), box-shadow 0.5s var(--nc-ease), transform 0.5s var(--nc-ease);
}

.nc-step__dot::after {
	content: "";
	position: absolute;
	inset: 3px;
	border-radius: 50%;
	background: var(--nc-aurora-gradient);
	opacity: 0;
	transition: opacity 0.5s var(--nc-ease);
}

.nc-step.is-active .nc-step__dot {
	border-color: rgba(76, 194, 255, 0.6);
	box-shadow: 0 0 0 5px rgba(76, 194, 255, 0.1);
	transform: scale(1.1);
}

.nc-step.is-active .nc-step__dot::after {
	opacity: 1;
}

.nc-step__index {
	display: block;
	margin-bottom: 10px;
	font-family: var(--nc-font-mono);
	font-size: 0.68rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--nc-muted);
	transition: color 0.5s var(--nc-ease);
}

.nc-step.is-active .nc-step__index {
	color: var(--nc-aurora-blue);
}

.nc-step__title {
	margin-bottom: 12px;
	font-size: clamp(1.25rem, 2vw, 1.55rem);
	font-weight: 600;
}

.nc-step__text {
	margin-bottom: 16px;
	max-width: 52ch;
	color: var(--nc-muted);
}

.nc-step__deliverable {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	padding: 10px 16px;
	border: 1px solid var(--nc-line);
	border-radius: 999px;
	background: var(--nc-surface);
	font-size: 0.8rem;
	color: var(--nc-text);
	transition: border-color 0.5s var(--nc-ease), background-color 0.5s var(--nc-ease);
}

.nc-step__deliverable i {
	font-size: 0.78rem;
	color: var(--nc-aurora-teal);
}

.nc-step.is-active .nc-step__deliverable {
	border-color: rgba(53, 240, 192, 0.28);
	background: var(--nc-surface-raised);
}

/* 8c. Work ledger
   ========================================================================== */
.nc-work {
	padding: 110px 0 130px;
	border-top: 1px solid var(--nc-line);
}

.nc-work__head {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	align-items: end;
	gap: 50px;
	margin-bottom: 56px;
}

.nc-work__title {
	margin: 0;
	font-size: clamp(1.8rem, 3.1vw, 2.6rem);
	font-weight: 600;
	line-height: 1.14;
}

.nc-work__lead {
	margin: 0;
	color: var(--nc-muted);
}

.nc-ledger {
	border-top: 1px solid var(--nc-line);
}

.nc-ledger__legend,
.nc-ledger__row {
	display: grid;
	grid-template-columns: 78px minmax(0, 1fr) 210px 52px;
	align-items: center;
	gap: 20px;
}

.nc-ledger__legend {
	padding: 14px 18px;
	font-family: var(--nc-font-mono);
	font-size: 0.62rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--nc-muted);
	border-bottom: 1px solid var(--nc-line);
}

.nc-ledger__row {
	position: relative;
	width: 100%;
	padding: 24px 18px;
	border: 0;
	border-bottom: 1px solid var(--nc-line);
	background: transparent;
	color: var(--nc-text);
	text-align: left;
	transition: background-color 0.5s var(--nc-ease), padding-left 0.5s var(--nc-ease);
}

/* Aurora edge that grows out of the left margin on hover */
.nc-ledger__row::before {
	content: "";
	position: absolute;
	left: 0;
	top: 12%;
	bottom: 12%;
	width: 2px;
	background: var(--nc-aurora-gradient);
	transform: scaleY(0);
	transform-origin: center;
	transition: transform 0.5s var(--nc-ease);
}

.nc-ledger__row:hover,
.nc-ledger__row:focus-visible {
	background: var(--nc-surface);
	padding-left: 28px;
	outline: none;
}

.nc-ledger__row:focus-visible {
	box-shadow: inset 0 0 0 1px rgba(76, 194, 255, 0.5);
}

.nc-ledger__row:hover::before,
.nc-ledger__row:focus-visible::before {
	transform: scaleY(1);
}

.nc-ledger__ref {
	font-family: var(--nc-font-mono);
	font-size: 0.78rem;
	color: var(--nc-muted);
	transition: color 0.5s var(--nc-ease);
}

.nc-ledger__row:hover .nc-ledger__ref,
.nc-ledger__row:focus-visible .nc-ledger__ref {
	color: var(--nc-aurora-blue);
}

.nc-ledger__body {
	display: block;
}

.nc-ledger__name {
	display: block;
	font-family: var(--nc-font-display);
	font-size: clamp(1.02rem, 1.6vw, 1.22rem);
	font-weight: 600;
	line-height: 1.3;
}

/* Preview line unrolls only when the row is engaged */
.nc-ledger__preview {
	display: block;
	max-width: 62ch;
	font-size: 0.85rem;
	line-height: 1.55;
	color: var(--nc-muted);
	opacity: 0;
	max-height: 0;
	transform: translateY(-4px);
	overflow: hidden;
	transition: opacity 0.45s var(--nc-ease), max-height 0.55s var(--nc-ease), transform 0.5s var(--nc-ease),
		margin-top 0.55s var(--nc-ease);
}

.nc-ledger__row:hover .nc-ledger__preview,
.nc-ledger__row:focus-visible .nc-ledger__preview {
	opacity: 1;
	max-height: 90px;
	margin-top: 8px;
	transform: translateY(0);
}

.nc-ledger__tag {
	justify-self: start;
	padding: 7px 14px;
	border: 1px solid var(--nc-line);
	border-radius: 999px;
	font-family: var(--nc-font-mono);
	font-size: 0.64rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--nc-muted);
	white-space: nowrap;
	transition: border-color 0.5s var(--nc-ease), color 0.5s var(--nc-ease), background-color 0.5s var(--nc-ease);
}

.nc-ledger__row:hover .nc-ledger__tag,
.nc-ledger__row:focus-visible .nc-ledger__tag {
	border-color: rgba(53, 240, 192, 0.32);
	background: rgba(53, 240, 192, 0.07);
	color: var(--nc-text);
}

.nc-ledger__go {
	display: grid;
	place-items: center;
	justify-self: end;
	width: 40px;
	height: 40px;
	border: 1px solid var(--nc-line);
	border-radius: 13px;
	color: var(--nc-muted);
	font-size: 0.76rem;
	transition: border-color 0.5s var(--nc-ease), color 0.5s var(--nc-ease), transform 0.5s var(--nc-ease),
		background-color 0.5s var(--nc-ease);
}

.nc-ledger__row:hover .nc-ledger__go,
.nc-ledger__row:focus-visible .nc-ledger__go {
	border-color: rgba(76, 194, 255, 0.45);
	background: rgba(76, 194, 255, 0.1);
	color: var(--nc-text);
	transform: translateX(3px);
}

/* 8d. Company
   ========================================================================== */
.nc-company {
	padding: 110px 0 120px;
	border-top: 1px solid var(--nc-line);
}

.nc-company__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: 30px 80px;
	align-items: start;
}

/* The photograph closes the gap left by the shorter specification column */
.nc-company__statement {
	grid-row: 1 / span 2;
}

.nc-company__media {
	grid-column: 2;
	margin-top: 0;
}

.nc-company__title {
	margin-bottom: 24px;
	font-size: clamp(1.8rem, 3.1vw, 2.6rem);
	font-weight: 600;
	line-height: 1.14;
}

.nc-company__text {
	margin-bottom: 18px;
	max-width: 56ch;
	color: var(--nc-muted);
}

.nc-company__actions {
	margin-top: 30px;
}

.nc-specs {
	margin: 0;
	border-top: 1px solid var(--nc-line);
}

.nc-specs__row {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
	gap: 20px;
	padding: 20px 4px;
	border-bottom: 1px solid var(--nc-line);
	transition: background-color 0.5s var(--nc-ease), padding-left 0.5s var(--nc-ease);
}

.nc-specs__row:hover {
	background: var(--nc-surface);
	padding-left: 14px;
}

.nc-specs dt {
	font-family: var(--nc-font-mono);
	font-size: 0.64rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--nc-muted);
}

.nc-specs dd {
	margin: 0;
	font-size: 0.93rem;
	color: var(--nc-text);
}

/* 8e. Contact
   ========================================================================== */
.nc-contact {
	padding: 40px 0 120px;
}

.nc-contact__panel {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 70px;
	padding: 64px;
	border: 1px solid var(--nc-line);
	border-radius: 32px;
	background:
		radial-gradient(circle at 12% 0%, rgba(76, 194, 255, 0.14) 0%, transparent 52%),
		radial-gradient(circle at 92% 110%, rgba(124, 92, 255, 0.16) 0%, transparent 55%),
		linear-gradient(165deg, rgba(15, 26, 46, 0.9) 0%, rgba(7, 11, 20, 0.95) 100%);
	overflow: hidden;
}

.nc-contact__panel::before {
	content: "";
	position: absolute;
	top: 0;
	left: 8%;
	right: 8%;
	height: 1px;
	background: var(--nc-aurora-gradient);
	opacity: 0.55;
}

.nc-contact__title {
	margin-bottom: 20px;
	font-size: clamp(1.8rem, 3.1vw, 2.5rem);
	font-weight: 600;
	line-height: 1.14;
}

.nc-contact__text {
	margin-bottom: 28px;
	max-width: 48ch;
	color: var(--nc-muted);
}

.nc-contact__points {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 12px;
}

.nc-contact__points li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 0.9rem;
	color: var(--nc-text);
}

.nc-contact__points i {
	display: grid;
	place-items: center;
	width: 22px;
	height: 22px;
	flex: 0 0 auto;
	border-radius: 50%;
	background: rgba(53, 240, 192, 0.14);
	color: var(--nc-aurora-teal);
	font-size: 0.6rem;
}

/* 8f. Footer
   ========================================================================== */
.nc-footer {
	padding: 90px 0 36px;
	border-top: 1px solid var(--nc-line);
	background: linear-gradient(180deg, rgba(7, 11, 20, 0) 0%, rgba(5, 8, 16, 0.9) 100%);
}

.nc-footer__top {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr) minmax(0, 0.8fr) minmax(0, 1.2fr);
	gap: 50px;
	padding-bottom: 60px;
	border-bottom: 1px solid var(--nc-line);
}

.nc-footer__logo {
	display: block;
	margin-bottom: 18px;
	font-family: var(--nc-font-display);
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: -0.03em;
}

.nc-footer__tagline {
	max-width: 36ch;
	margin-bottom: 22px;
	font-size: 0.88rem;
	color: var(--nc-muted);
}

.nc-footer__address {
	margin: 0;
	font-family: var(--nc-font-mono);
	font-size: 0.74rem;
	line-height: 1.8;
	letter-spacing: 0.06em;
	color: var(--nc-muted);
}

.nc-footer__heading {
	margin-bottom: 20px;
	font-family: var(--nc-font-mono);
	font-size: 0.64rem;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--nc-text);
}

.nc-footer__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 12px;
}

.nc-footer__list a,
.nc-footer__list button {
	position: relative;
	display: inline-block;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--nc-muted);
	font-size: 0.88rem;
	text-align: left;
	text-decoration: none;
	transition: color 0.45s var(--nc-ease), transform 0.45s var(--nc-ease);
}

.nc-footer__list a::after,
.nc-footer__list button::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -3px;
	width: 0;
	height: 1px;
	background: var(--nc-aurora-gradient);
	transition: width 0.45s var(--nc-ease);
}

.nc-footer__list a:hover,
.nc-footer__list button:hover,
.nc-footer__list a:focus-visible,
.nc-footer__list button:focus-visible {
	color: var(--nc-text);
	transform: translateX(2px);
}

.nc-footer__list a:hover::after,
.nc-footer__list button:hover::after,
.nc-footer__list a:focus-visible::after,
.nc-footer__list button:focus-visible::after {
	width: 100%;
}

.nc-footer__note {
	max-width: 34ch;
	margin-bottom: 18px;
	font-size: 0.85rem;
	color: var(--nc-muted);
}

.nc-subscribe {
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 6px 6px 6px 6px;
	border: 1px solid var(--nc-line);
	border-radius: 999px;
	background: var(--nc-surface);
	transition: border-color 0.45s var(--nc-ease), background-color 0.45s var(--nc-ease);
}

.nc-subscribe:focus-within {
	border-color: rgba(76, 194, 255, 0.5);
	background: var(--nc-surface-raised);
}

.nc-subscribe .form-control {
	border: 0;
	background: transparent;
	color: var(--nc-text);
	font-size: 0.86rem;
	padding: 8px 12px;
	box-shadow: none;
}

.nc-subscribe .form-control:focus {
	background: transparent;
	box-shadow: none;
}

.nc-subscribe .form-control.is-invalid {
	box-shadow: none;
	animation: nc-shake 0.4s var(--nc-ease);
}

.nc-subscribe__btn {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	flex: 0 0 auto;
	border: 0;
	border-radius: 50%;
	background: var(--nc-aurora-gradient);
	color: #04070E;
	font-size: 0.78rem;
	transition: transform 0.45s var(--nc-ease), box-shadow 0.45s var(--nc-ease);
}

.nc-subscribe__btn:hover {
	transform: translateX(2px);
	box-shadow: 0 8px 22px rgba(76, 194, 255, 0.3);
}

.nc-subscribe__btn:focus-visible {
	outline: 2px solid var(--nc-aurora-blue);
	outline-offset: 3px;
}

.nc-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-top: 28px;
}

.nc-footer__copy {
	margin: 0;
	font-size: 0.8rem;
	color: var(--nc-muted);
}

.nc-footer__legal {
	display: flex;
	flex-wrap: wrap;
	gap: 26px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.nc-footer__legal a {
	font-size: 0.8rem;
	color: var(--nc-muted);
	text-decoration: none;
	transition: color 0.45s var(--nc-ease);
}

.nc-footer__legal a:hover,
.nc-footer__legal a:focus-visible {
	color: var(--nc-aurora-blue);
}

/* Map embed
   ========================================================================== */
.nc-map {
	position: relative;
	margin-bottom: 22px;
	border: 1px solid var(--nc-line);
	border-radius: 18px;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: var(--nc-ink-raised);
}

.nc-map iframe {
	width: 100%;
	height: 100%;
	border: 0;
	filter: invert(0.92) hue-rotate(180deg) saturate(0.75) contrast(0.9);
}

.nc-map__credit {
	margin: 16px 0 0;
	font-size: 0.72rem;
	color: var(--nc-muted);
}

.nc-map__credit a {
	color: var(--nc-muted);
}

/* 8g. Legal pages
   ========================================================================== */
.nc-legal {
	position: relative;
	padding: calc(var(--nc-header-height) + 80px) 0 110px;
}

.nc-legal::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 480px;
	z-index: -1;
	background:
		radial-gradient(circle at 18% 0%, rgba(76, 194, 255, 0.16) 0%, transparent 55%),
		radial-gradient(circle at 78% 10%, rgba(124, 92, 255, 0.14) 0%, transparent 58%);
	filter: blur(30px);
}

.nc-legal__head {
	max-width: 760px;
	padding-bottom: 46px;
	margin-bottom: 52px;
	border-bottom: 1px solid var(--nc-line);
}

.nc-legal__title {
	margin-bottom: 14px;
	font-size: clamp(2.1rem, 4.6vw, 3.3rem);
	font-weight: 600;
	line-height: 1.06;
}

.nc-legal__meta {
	margin-bottom: 24px;
	font-family: var(--nc-font-mono);
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--nc-muted);
}

.nc-legal__lead {
	margin: 0;
	font-size: 1.05rem;
	color: var(--nc-muted);
}

.nc-legal__body {
	max-width: 760px;
	counter-reset: nc-legal;
}

.nc-legal__section {
	padding-bottom: 38px;
	margin-bottom: 38px;
	border-bottom: 1px solid var(--nc-line);
}

.nc-legal__section:last-child {
	border-bottom: 0;
}

.nc-legal__section h2 {
	margin-bottom: 18px;
	font-size: clamp(1.15rem, 2vw, 1.4rem);
	font-weight: 600;
}

.nc-legal__section p,
.nc-legal__section li {
	color: var(--nc-muted);
}

.nc-legal__section p {
	margin-bottom: 16px;
}

.nc-legal__section p:last-child {
	margin-bottom: 0;
}

.nc-legal__section ul {
	margin: 0 0 16px;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 12px;
}

.nc-legal__section ul li {
	position: relative;
	padding-left: 24px;
	font-size: 0.95rem;
}

.nc-legal__section ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 10px;
	width: 8px;
	height: 8px;
	border-radius: 2px;
	background: var(--nc-aurora-gradient);
	opacity: 0.8;
}

.nc-legal__section strong {
	color: var(--nc-text);
	font-weight: 600;
}

.nc-legal__section a {
	color: var(--nc-aurora-blue);
	text-decoration: none;
	border-bottom: 1px solid rgba(76, 194, 255, 0.35);
	transition: border-color 0.4s var(--nc-ease), color 0.4s var(--nc-ease);
}

.nc-legal__section a:hover,
.nc-legal__section a:focus-visible {
	color: var(--nc-aurora-teal);
	border-bottom-color: rgba(53, 240, 192, 0.6);
}

.nc-legal__cta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	max-width: 760px;
	margin-top: 56px;
	padding: 30px 34px;
	border: 1px solid var(--nc-line);
	border-radius: 22px;
	background: var(--nc-surface);
}

.nc-legal__cta p {
	margin: 0;
	font-family: var(--nc-font-display);
	font-size: 1.05rem;
	font-weight: 500;
}

/* 9. Modals & forms
   ========================================================================== */
.nc-modal .modal-content {
	border: 1px solid var(--nc-line);
	border-radius: 24px;
	background: linear-gradient(165deg, rgba(15, 26, 46, 0.98) 0%, rgba(7, 11, 20, 0.99) 100%);
	color: var(--nc-text);
	box-shadow: var(--nc-shadow);
	overflow: hidden;
}

.nc-modal .modal-content::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: var(--nc-aurora-gradient);
	opacity: 0.75;
}

.nc-modal.fade .modal-dialog {
	transform: translateY(24px) scale(0.98);
	transition: transform 0.5s var(--nc-ease), opacity 0.4s var(--nc-ease);
}

.nc-modal.show .modal-dialog {
	transform: none;
}

.nc-modal .modal-header {
	position: relative;
	align-items: flex-start;
	gap: 16px;
	padding: 30px 74px 18px 30px;
	border-bottom: 1px solid var(--nc-line);
}

.nc-modal__eyebrow {
	display: block;
	margin-bottom: 8px;
	font-family: var(--nc-font-mono);
	font-size: 0.66rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--nc-aurora-blue);
}

.nc-modal .modal-title {
	font-size: clamp(1.3rem, 2.4vw, 1.72rem);
	font-weight: 600;
	line-height: 1.2;
}

.nc-modal__close {
	position: absolute;
	top: 14px;
	right: 14px;
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	flex: 0 0 auto;
	border: 1px solid var(--nc-line);
	border-radius: 12px;
	background: var(--nc-surface);
	color: var(--nc-muted);
	transition: color 0.4s var(--nc-ease), border-color 0.4s var(--nc-ease), transform 0.4s var(--nc-ease);
}

.nc-modal__close:hover {
	color: var(--nc-text);
	border-color: var(--nc-line-strong);
	transform: rotate(90deg);
}

.nc-modal__close:focus-visible {
	outline: 2px solid var(--nc-aurora-blue);
	outline-offset: 3px;
}

.nc-modal .modal-body {
	padding: 24px 30px 28px;
}

.nc-modal__lead {
	margin-bottom: 22px;
	color: var(--nc-muted);
}

.nc-modal__media {
	position: relative;
	margin: 0 0 24px;
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid var(--nc-line);
	background: var(--nc-ink-raised);
}

.nc-modal__media img {
	display: block;
	width: 100%;
	height: auto;
}

/* Tie the photography back into the palette */
.nc-modal__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(7, 11, 20, 0) 45%, rgba(7, 11, 20, 0.55) 100%);
	pointer-events: none;
}

.nc-modal__subhead {
	margin: 0 0 14px;
	font-family: var(--nc-font-mono);
	font-size: 0.66rem;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--nc-aurora-blue);
}

.nc-modal__list {
	margin: 0 0 24px;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 14px;
}

.nc-modal__list li {
	position: relative;
	padding-left: 26px;
	font-size: 0.93rem;
	color: var(--nc-muted);
}

.nc-modal__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 9px;
	width: 10px;
	height: 10px;
	border-radius: 3px;
	background: var(--nc-aurora-gradient);
	opacity: 0.85;
}

.nc-modal__list strong {
	display: block;
	color: var(--nc-text);
	font-weight: 600;
}

.nc-modal__meta {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.nc-modal__meta div {
	padding: 16px 18px;
	border: 1px solid var(--nc-line);
	border-radius: 16px;
	background: var(--nc-surface);
}

.nc-modal__meta span {
	display: block;
	margin-bottom: 6px;
	font-family: var(--nc-font-mono);
	font-size: 0.62rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--nc-muted);
}

.nc-modal__meta strong {
	font-size: 0.9rem;
	font-weight: 600;
}

.nc-modal .modal-footer {
	padding: 18px 30px 26px;
	border-top: 1px solid var(--nc-line);
}

.nc-modal .modal-backdrop.show {
	opacity: 0.72;
}

/* Form controls */
.nc-form .form-label {
	margin-bottom: 7px;
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	color: var(--nc-muted);
}

.nc-form .form-control,
.nc-form .form-select {
	padding: 12px 16px;
	border: 1px solid var(--nc-line);
	border-radius: 14px;
	background: rgba(7, 11, 20, 0.6);
	color: var(--nc-text);
	font-size: 0.93rem;
	transition: border-color 0.4s var(--nc-ease), box-shadow 0.4s var(--nc-ease), background-color 0.4s var(--nc-ease);
}

.nc-form .form-control::placeholder {
	color: rgba(147, 164, 191, 0.6);
}

.nc-form .form-control:focus,
.nc-form .form-select:focus {
	border-color: rgba(76, 194, 255, 0.6);
	background: rgba(7, 11, 20, 0.85);
	box-shadow: 0 0 0 4px rgba(76, 194, 255, 0.14);
	color: var(--nc-text);
}

.nc-form .form-select option {
	background: var(--nc-ink-raised);
	color: var(--nc-text);
}

.nc-form .form-control.is-invalid,
.nc-form .form-select.is-invalid {
	border-color: rgba(255, 122, 122, 0.7);
	box-shadow: 0 0 0 4px rgba(255, 122, 122, 0.12);
	animation: nc-shake 0.4s var(--nc-ease);
}

@keyframes nc-shake {
	25% { transform: translateX(-4px); }
	75% { transform: translateX(4px); }
}

/* Success modal */
.nc-success__icon {
	display: grid;
	place-items: center;
	width: 66px;
	height: 66px;
	margin: 8px auto 20px;
	border-radius: 50%;
	background: var(--nc-aurora-gradient);
	color: #04070E;
	font-size: 1.4rem;
	animation: nc-pop 0.6s var(--nc-ease);
}

@keyframes nc-pop {
	from { transform: scale(0.6); opacity: 0; }
	to { transform: scale(1); opacity: 1; }
}

.nc-success__text {
	max-width: 42ch;
	margin: 14px auto 26px;
	color: var(--nc-muted);
}

.nc-modal--success .modal-body {
	padding: 34px 30px 36px;
}

/* 10. Floating utilities
   ========================================================================== */
.nc-top {
	position: fixed;
	right: 26px;
	bottom: 26px;
	z-index: 1030;
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border: 1px solid var(--nc-line-strong);
	border-radius: 16px;
	background: rgba(15, 26, 46, 0.82);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	color: var(--nc-text);
	opacity: 0;
	visibility: hidden;
	transform: translateY(14px);
	transition: opacity 0.5s var(--nc-ease), transform 0.5s var(--nc-ease), visibility 0.5s var(--nc-ease),
		border-color 0.4s var(--nc-ease);
}

.nc-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.nc-top:hover {
	border-color: rgba(76, 194, 255, 0.5);
	transform: translateY(-3px);
}

.nc-top:focus-visible {
	outline: 2px solid var(--nc-aurora-blue);
	outline-offset: 3px;
}

.nc-cookie {
	position: fixed;
	left: 50%;
	bottom: 24px;
	z-index: 1035;
	width: min(920px, calc(100vw - 40px));
	transform: translate(-50%, 140%);
	transition: transform 0.7s var(--nc-ease), opacity 0.5s var(--nc-ease);
	opacity: 0;
}

.nc-cookie.is-visible {
	transform: translate(-50%, 0);
	opacity: 1;
}

.nc-cookie__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 18px 22px;
	border: 1px solid var(--nc-line);
	border-radius: 20px;
	background: rgba(15, 26, 46, 0.9);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	box-shadow: var(--nc-shadow);
}

.nc-cookie__text {
	flex: 1 1 340px;
	margin: 0;
	font-size: 0.85rem;
	color: var(--nc-muted);
}

.nc-cookie__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

/* 11. Responsive
   ========================================================================== */
@media (max-width: 1199.98px) {
	.nc-toggler {
		display: flex;
	}

	.nc-collapse {
		align-items: stretch;
		gap: 0;
		margin-top: 8px;
		padding: 18px;
		border: 1px solid var(--nc-line);
		border-radius: 22px;
		background: rgba(7, 11, 20, 0.96);
		backdrop-filter: blur(18px);
		-webkit-backdrop-filter: blur(18px);
		box-shadow: var(--nc-shadow);
	}

	.nc-navbar__inner {
		flex-wrap: wrap;
	}

	.nc-nav {
		align-items: stretch;
		gap: 2px;
		width: 100%;
	}

	.nc-nav__pill {
		display: none;
	}

	.nc-link {
		width: 100%;
		padding: 14px 6px;
		font-size: 1.05rem;
	}

	.nc-link--toggle {
		justify-content: flex-start;
	}

	.nc-link__chevron {
		margin-left: auto;
	}

	/* In the stacked menu the panel sits in the flow, so it has to be taken out
	   of the layout entirely when closed rather than just faded out */
	.nc-mega,
	.nc-mega[data-bs-popper] {
		position: static;
		display: none;
		width: 100%;
		margin-top: 6px;
		padding: 16px;
		border-radius: 18px;
		box-shadow: none;
		filter: none;
		transform: none;
	}

	.nc-mega.show {
		display: block;
		animation: nc-mega-expand 0.42s var(--nc-ease) both;
	}

	@keyframes nc-mega-expand {
		0% { opacity: 0; transform: translateY(-10px); }
		100% { opacity: 1; transform: translateY(0); }
	}

	.nc-mega__grid {
		grid-template-columns: 1fr;
	}

	.nc-mega__head,
	.nc-mega__foot {
		padding-left: 4px;
		padding-right: 4px;
	}

	.nc-cta {
		width: 100%;
		margin-top: 16px;
	}
}

@media (max-width: 1199.98px) {
	.nc-hero__inner {
		grid-template-columns: 1fr;
		row-gap: 48px;
	}

	.nc-hero__copy {
		max-width: 100%;
	}

	.nc-payback {
		max-width: 560px;
	}

	.nc-hero__facts {
		margin-top: 60px;
	}
}

@media (max-width: 991.98px) {
	.nc-approach {
		padding: 90px 0 100px;
	}

	.nc-approach__layout {
		grid-template-columns: 1fr;
		gap: 54px;
	}

	.nc-approach__aside {
		position: static;
	}

	.nc-work {
		padding: 90px 0 100px;
	}

	.nc-work__head {
		grid-template-columns: 1fr;
		gap: 24px;
		margin-bottom: 40px;
	}

	.nc-ledger__legend {
		display: none;
	}

	.nc-ledger__row {
		grid-template-columns: 64px minmax(0, 1fr) 44px;
		grid-template-areas:
			"ref name go"
			". tag .";
		gap: 12px 16px;
		align-items: start;
	}

	.nc-ledger__ref { grid-area: ref; padding-top: 3px; }
	.nc-ledger__body { grid-area: name; }
	.nc-ledger__tag { grid-area: tag; }
	.nc-ledger__go { grid-area: go; }

	/* Touch devices get the preview text permanently */
	.nc-ledger__preview {
		opacity: 1;
		max-height: 120px;
		margin-top: 8px;
		transform: none;
	}

	.nc-company {
		padding: 90px 0 100px;
	}

	.nc-company__layout {
		grid-template-columns: 1fr;
		gap: 54px;
	}

	.nc-company__statement {
		grid-row: auto;
	}

	.nc-company__media {
		grid-column: 1;
	}

	.nc-contact__panel {
		grid-template-columns: 1fr;
		gap: 44px;
		padding: 44px 36px;
		border-radius: 26px;
	}

	.nc-footer__top {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 40px;
	}

	.nc-footer__col--wide {
		grid-column: 1 / -1;
	}
}

@media (max-width: 767.98px) {
	:root {
		--nc-header-height: 72px;
	}

	.nc-steps {
		padding-left: 40px;
	}

	.nc-steps::before,
	.nc-steps::after {
		left: 7px;
	}

	.nc-step__dot {
		left: -40px;
	}

	.nc-approach__actions .nc-btn {
		width: 100%;
	}

	.nc-brand__meta {
		display: none;
	}

	.nc-hero {
		padding: calc(var(--nc-header-height) + 64px) 0 80px;
	}

	.nc-hero__facts {
		grid-template-columns: 1fr;
	}

	.nc-hero__actions .nc-btn {
		width: 100%;
	}

	.nc-modal .modal-header,
	.nc-modal .modal-body,
	.nc-modal .modal-footer {
		padding-left: 20px;
		padding-right: 20px;
	}

	.nc-modal .modal-header {
		padding-right: 62px;
	}

	.nc-modal__close {
		top: 12px;
		right: 12px;
		width: 36px;
		height: 36px;
	}

	.nc-modal__meta {
		grid-template-columns: 1fr;
	}

	.nc-cookie__actions {
		width: 100%;
	}

	.nc-cookie__actions .nc-btn {
		flex: 1 1 auto;
	}

	.nc-specs__row {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.nc-contact__panel {
		padding: 34px 22px;
	}

	.nc-footer {
		padding-top: 70px;
	}

	.nc-footer__top {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.nc-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
	}

	.nc-legal {
		padding-top: calc(var(--nc-header-height) + 56px);
	}

	.nc-legal__cta {
		padding: 24px 22px;
	}

	.nc-legal__cta .nc-btn {
		width: 100%;
	}
}

/* 12. Motion preferences
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}

	.nc-reveal {
		opacity: 1;
		transform: none;
	}

	.nc-mega {
		filter: none;
	}
}
