/* =========================================================
   Nova Tech — main stylesheet
   Modern dark UI with amber neon accents (#ffaa06)
   ========================================================= */

:root {
	--nv-bg:        #0a0a0f;
	--nv-bg-alt:    #0f0f17;
	--nv-bg-card:   #14141d;
	--nv-bg-elev:   #1a1a26;
	--nv-line:      rgba(255, 255, 255, 0.08);
	--nv-line-strong: rgba(255, 255, 255, 0.16);
	--nv-text:      #f3f3f6;
	--nv-text-dim:  #a4a4b0;
	--nv-text-mute: #6e6e7a;
	--nv-accent:    #ffaa06;
	--nv-accent-2:  #ffc34d;
	--nv-accent-glow: rgba(255, 170, 6, 0.45);
	--nv-danger:    #ff5470;
	--nv-success:   #3ddc97;

	--nv-font-display: 'Space Grotesk', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
	--nv-font-body:    'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

	--nv-radius-sm: 8px;
	--nv-radius:    14px;
	--nv-radius-lg: 22px;

	--nv-shadow:   0 20px 50px -20px rgba(0,0,0,0.6);
	--nv-shadow-glow: 0 10px 40px -10px var(--nv-accent-glow);

	--nv-container: 1180px;
	--nv-section-y: clamp(72px, 9vw, 128px);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
body {
	margin: 0;
	font-family: var(--nv-font-body);
	font-size: 16px;
	line-height: 1.6;
	color: var(--nv-text);
	background: var(--nv-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--nv-accent); }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul, ol { padding-left: 1.2em; }

/* ---------- Background atmosphere ---------- */
.nv-bg-grid {
	position: fixed; inset: 0; z-index: -2; pointer-events: none;
	background-image:
		linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
	background-size: 60px 60px;
	mask-image: radial-gradient(circle at 50% 30%, #000 30%, transparent 70%);
	-webkit-mask-image: radial-gradient(circle at 50% 30%, #000 30%, transparent 70%);
	opacity: .6;
}
.nv-bg-glow {
	position: fixed; z-index: -1; pointer-events: none; filter: blur(90px); opacity: .55;
	border-radius: 50%;
}
.nv-bg-glow--a { width: 520px; height: 520px; top: -160px; left: -120px;
	background: radial-gradient(circle, var(--nv-accent) 0%, transparent 70%); opacity: .35; }
.nv-bg-glow--b { width: 600px; height: 600px; bottom: -200px; right: -160px;
	background: radial-gradient(circle, #6c63ff 0%, transparent 70%); opacity: .25; }

/* ---------- Typography ---------- */
.nv-h1 {
	font-family: var(--nv-font-display);
	font-size: clamp(2.4rem, 5.5vw, 4.2rem);
	line-height: 1.05;
	letter-spacing: -0.02em;
	margin: .2em 0 .35em;
	font-weight: 600;
}
.nv-h2 {
	font-family: var(--nv-font-display);
	font-size: clamp(1.85rem, 3.2vw, 2.6rem);
	line-height: 1.15;
	letter-spacing: -0.015em;
	margin: 0 0 .35em;
	font-weight: 600;
}
.nv-lead { font-size: clamp(1rem, 1.2vw, 1.15rem); color: var(--nv-text-dim); max-width: 60ch; }
.nv-meta { color: var(--nv-text-mute); font-size: .9rem; }
.nv-eyebrow {
	display: inline-flex; align-items: center; gap: 8px;
	font-family: var(--nv-font-display);
	font-size: 12px; font-weight: 600;
	text-transform: uppercase; letter-spacing: .18em;
	color: var(--nv-text-dim);
	background: rgba(255, 170, 6, 0.06);
	border: 1px solid rgba(255, 170, 6, 0.18);
	padding: 6px 12px;
	border-radius: 999px;
}
.nv-eyebrow__dot {
	width: 8px; height: 8px; border-radius: 50%;
	background: var(--nv-accent);
	box-shadow: 0 0 12px var(--nv-accent-glow);
}
/* Mid-size eyebrow used as a section label */
.nv-eyebrow--xl {
	font-size: clamp(1rem, 1.5vw, 1.25rem);
	padding: .35em .85em;
	gap: .5em;
	letter-spacing: .12em;
	line-height: 1.2;
	border-radius: 999px;
}
.nv-eyebrow--xl .nv-eyebrow__dot {
	width: .5em; height: .5em;
	box-shadow: 0 0 .9em var(--nv-accent-glow);
}

/* ---------- Layout ---------- */
.nv-container {
	width: 100%;
	max-width: var(--nv-container);
	margin: 0 auto;
	padding: 0 24px;
}
.nv-section {
	padding: var(--nv-section-y) 0;
	position: relative;
}
.nv-section--alt { background: linear-gradient(180deg, transparent, rgba(255,255,255,0.015) 30%, transparent); }
.nv-section__head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.nv-section__intro { margin-left: auto; margin-right: auto; }
.nv-section__cta { margin-top: 48px; text-align: center; }
.nv-grid { display: grid; gap: 22px; }
.nv-grid--2 { grid-template-columns: repeat(2, 1fr); }
.nv-grid--3 { grid-template-columns: repeat(3, 1fr); }

/* ---------- Buttons & links ---------- */
.nv-btn {
	display: inline-flex; align-items: center; gap: 10px;
	padding: 13px 22px;
	border-radius: var(--nv-radius);
	font-family: var(--nv-font-display);
	font-weight: 600;
	letter-spacing: .01em;
	font-size: .95rem;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
	white-space: nowrap;
}
.nv-btn .nv-icon { width: 18px; height: 18px; }
.nv-btn--primary {
	background: var(--nv-accent);
	color: #14140a;
	box-shadow: 0 8px 24px -8px var(--nv-accent-glow), inset 0 0 0 1px rgba(255,255,255,0.1);
}
.nv-btn--primary:hover { transform: translateY(-2px); color: #14140a; box-shadow: 0 14px 30px -10px var(--nv-accent-glow); }
.nv-btn--ghost {
	background: rgba(255,255,255,0.03);
	color: var(--nv-text);
	border: 1px solid var(--nv-line-strong);
}
.nv-btn--ghost:hover { color: var(--nv-text); border-color: var(--nv-accent); background: rgba(255,170,6,0.07); }
.nv-link {
	display: inline-flex; align-items: center; gap: 6px;
	color: var(--nv-accent);
	font-weight: 600;
	font-size: .92rem;
	margin-top: 14px;
}
.nv-link .nv-icon { width: 16px; height: 16px; transition: transform .2s ease; }
.nv-link:hover .nv-icon { transform: translateX(4px); color: var(--nv-accent-2); }

/* ---------- Header / Nav ---------- */
.nv-header {
	position: sticky; top: 0; z-index: 50;
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	background: rgba(10, 10, 15, 0.72);
	border-bottom: 1px solid var(--nv-line);
	transition: background .3s ease, border-color .3s ease;
}
.nv-header.is-scrolled { background: rgba(10, 10, 15, 0.92); }
.nv-header__inner {
	display: flex; align-items: center; gap: 24px;
	padding: 16px 24px;
}
.nv-brand { flex: 0 0 auto; display: flex; align-items: center; }
.nv-brand__link { display: inline-flex; align-items: center; }
.nv-brand__logo {
	display: block;
	height: 36px;
	width: auto;
	transition: transform .3s ease, filter .35s ease;
	will-change: filter;
}
.nv-brand__link:hover .nv-brand__logo,
.custom-logo-link:hover .custom-logo {
	transform: scale(1.03);
	filter:
		drop-shadow(0 0 1px var(--nv-accent-glow))
		drop-shadow(0 0 4px var(--nv-accent-glow));
}
.nv-brand__logo--footer { height: 44px; }
/* WP custom-logo class mirroring */
.custom-logo-link { display: inline-flex; align-items: center; }
.custom-logo {
	display: block;
	height: 36px;
	width: auto;
	transition: transform .3s ease, filter .35s ease;
	will-change: filter;
}
.nv-wordmark {
	display: inline-flex; align-items: center; gap: 10px;
	font-family: var(--nv-font-display);
	font-weight: 700;
	letter-spacing: .04em;
	font-size: 1.05rem;
	text-transform: uppercase;
	color: var(--nv-text);
}
.nv-wordmark--lg { font-size: 1.3rem; }
.nv-wordmark__dot {
	width: 12px; height: 12px; border-radius: 50%;
	background: var(--nv-accent);
	box-shadow: 0 0 16px var(--nv-accent-glow);
	animation: nv-pulse 2.4s ease-in-out infinite;
}
@keyframes nv-pulse {
	0%,100% { box-shadow: 0 0 8px var(--nv-accent-glow); transform: scale(1); }
	50%      { box-shadow: 0 0 22px var(--nv-accent-glow); transform: scale(1.08); }
}
.nv-nav { flex: 1 1 auto; display: flex; justify-content: center; }
.nv-nav__list {
	display: flex; gap: 6px;
	list-style: none; margin: 0; padding: 0;
}
.nv-nav__list a {
	display: inline-block;
	position: relative;
	padding: 9px 14px;
	font-size: .92rem;
	font-weight: 500;
	color: var(--nv-text-dim);
	transition: color .2s ease, font-weight .2s ease;
}
.nv-nav__list a::after {
	content: "";
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 4px;
	height: 2px;
	border-radius: 2px;
	background: var(--nv-accent);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform .25s ease;
}
.nv-nav__list a:hover,
.nv-nav__list a:focus-visible,
.nv-nav__list a.is-active {
	color: var(--nv-text);
	font-weight: 600;
}
.nv-nav__list a:hover::after,
.nv-nav__list a:focus-visible::after,
.nv-nav__list a.is-active::after {
	transform: scaleX(1);
}
.nv-nav__toggle {
	display: none;
	width: 42px; height: 42px;
	border-radius: 10px;
	border: 1px solid var(--nv-line-strong);
	background: rgba(255,255,255,0.03);
	align-items: center; justify-content: center;
}
.nv-nav__bars,
.nv-nav__bars::before,
.nv-nav__bars::after {
	display: block;
	width: 18px; height: 2px;
	background: var(--nv-text);
	border-radius: 2px;
	position: relative;
	transition: transform .25s ease;
}
.nv-nav__bars::before, .nv-nav__bars::after { content: ""; position: absolute; left: 0; }
.nv-nav__bars::before { top: -6px; }
.nv-nav__bars::after  { top:  6px; }
.nv-header__cta { padding: 11px 18px; font-size: .9rem; }

/* ---------- Hero ---------- */
.nv-hero { padding-top: clamp(56px, 7vw, 96px); }
.nv-hero__inner {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 56px;
	align-items: center;
}
.nv-hero__copy h1 strong, .nv-hero__copy h1 em { color: var(--nv-accent); font-style: normal; font-weight: 700; }
.nv-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.nv-hero__bullets {
	margin-top: 36px;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(3, auto);
	gap: 8px 22px;
	color: var(--nv-text-dim);
	font-size: .92rem;
}
.nv-hero__bullets li { display: inline-flex; align-items: center; gap: 8px; }
.nv-hero__bullets .nv-icon { width: 16px; height: 16px; color: var(--nv-accent); }

/* Hero visual: animated orbit graphic */
.nv-hero__visual {
	position: relative;
	min-height: 480px;
	display: flex; align-items: center; justify-content: center;
}
.nv-orbit { position: relative; width: 460px; height: 460px; max-width: 100%; }
.nv-orbit__core {
	position: absolute;
	inset: 50%;
	width: 130px; height: 130px;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background: radial-gradient(circle at 30% 30%, #ffd078, var(--nv-accent) 60%, #b87600);
	display: flex; align-items: center; justify-content: center;
	color: #14140a;
	box-shadow:
		0 0 60px var(--nv-accent-glow),
		inset 0 0 30px rgba(255,255,255,0.4);
	z-index: 2;
}
.nv-orbit__label {
	font-family: var(--nv-font-display);
	font-weight: 700;
	font-size: 1rem;
	letter-spacing: .06em;
}
.nv-orbit__core--image {
	width: 80px; height: 80px;
	background:
		radial-gradient(circle at 50% 50%, rgba(255,170,6,0.12), transparent 70%),
		radial-gradient(circle at 30% 30%, rgba(255,255,255,0.06), rgba(0,0,0,0.6) 70%);
	border: 1px solid rgba(255,170,6,0.35);
	box-shadow:
		0 0 50px var(--nv-accent-glow),
		inset 0 0 18px rgba(255,170,6,0.18);
	padding: 10px;
	overflow: hidden;
	animation: nv-pulse-core 3.6s ease-in-out infinite;
}
.nv-orbit__core--image img {
	width: 100%; height: 100%;
	object-fit: contain;
	display: block;
}
@keyframes nv-pulse-core {
	0%, 100% { box-shadow: 0 0 50px var(--nv-accent-glow), inset 0 0 25px rgba(255,170,6,0.15); }
	50%      { box-shadow: 0 0 90px var(--nv-accent-glow), inset 0 0 35px rgba(255,170,6,0.25); }
}
.nv-orbit__ring {
	position: absolute; left: 50%; top: 50%;
	border-radius: 50%;
	border: 1px dashed rgba(255,170,6,0.25);
	transform: translate(-50%, -50%);
}
.nv-orbit__ring--1 { width: 200px; height: 200px; animation: nv-spin 18s linear infinite; }
.nv-orbit__ring--2 { width: 320px; height: 320px; animation: nv-spin 28s linear infinite reverse; border-color: rgba(255,255,255,0.08); }
.nv-orbit__ring--3 { width: 440px; height: 440px; animation: nv-spin 40s linear infinite; border-color: rgba(108,99,255,0.18); }
@keyframes nv-spin { to { transform: translate(-50%,-50%) rotate(360deg); } }
.nv-orbit__chip {
	position: absolute;
	display: inline-flex; align-items: center;
	padding: 7px 14px;
	border-radius: 999px;
	font-family: var(--nv-font-display);
	font-size: .78rem;
	font-weight: 600;
	background: rgba(20,20,29,0.85);
	border: 1px solid var(--nv-line-strong);
	color: var(--nv-text);
	backdrop-filter: blur(8px);
	box-shadow: 0 6px 20px -8px rgba(0,0,0,0.6);
}
.nv-orbit__chip--1 { top: 12%;  left: 14%; }
.nv-orbit__chip--2 { top: 8%;   right: 10%; }
.nv-orbit__chip--3 { top: 50%;  left: -6%;  transform: translateY(-50%); }
.nv-orbit__chip--4 { top: 50%;  right: -2%; transform: translateY(-50%); border-color: rgba(255,170,6,0.4); color: var(--nv-accent); }
.nv-orbit__chip--5 { bottom: 12%; left: 18%; }
.nv-orbit__chip--6 { bottom: 8%;  right: 16%; }

/* Trusted by logos */
.nv-logos {
	margin-top: 80px;
	display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
	border-top: 1px dashed var(--nv-line);
	padding-top: 28px;
}
.nv-logos__label {
	font-family: var(--nv-font-display);
	font-size: 11px;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--nv-text-mute);
}
.nv-logos__row {
	display: flex; flex-wrap: wrap; gap: 28px 40px; align-items: center; flex: 1;
}
.nv-logos__item {
	font-family: var(--nv-font-display);
	font-weight: 700;
	letter-spacing: .14em;
	font-size: .92rem;
	color: var(--nv-text-mute);
	transition: color .25s ease;
}
.nv-logos__item:hover { color: var(--nv-text-dim); }

/* ---------- Cards ---------- */
.nv-card {
	background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
	border: 1px solid var(--nv-line);
	border-radius: var(--nv-radius-lg);
	padding: 28px;
	position: relative;
	overflow: hidden;
	transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.nv-card::before {
	content: ""; position: absolute; inset: 0; pointer-events: none;
	background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 0%), rgba(255,170,6,0.08), transparent 40%);
	opacity: 0; transition: opacity .3s ease;
}
.nv-card:hover { transform: translateY(-4px); border-color: rgba(255,170,6,0.35); }
.nv-card:hover::before { opacity: 1; }
.nv-card__icon {
	width: 52px; height: 52px;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 14px;
	background: rgba(255,170,6,0.1);
	border: 1px solid rgba(255,170,6,0.25);
	color: var(--nv-accent);
	margin-bottom: 18px;
}
.nv-icon { width: 24px; height: 24px; }
.nv-card__title {
	font-family: var(--nv-font-display);
	font-size: 1.2rem;
	font-weight: 600;
	margin: 0 0 10px;
	letter-spacing: -0.01em;
}
.nv-card__desc { color: var(--nv-text-dim); margin: 0; font-size: .98rem; }
.nv-card--industry { padding: 32px; }
.nv-card--industry .nv-tag {
	display: inline-block;
	font-family: var(--nv-font-display);
	font-size: 11px;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--nv-accent);
	background: rgba(255,170,6,0.08);
	border: 1px solid rgba(255,170,6,0.2);
	padding: 5px 11px;
	border-radius: 999px;
	margin-bottom: 14px;
}
.nv-card--post { display: flex; flex-direction: column; padding: 0; overflow: hidden; }
.nv-card--post .nv-card__media { display: block; aspect-ratio: 16/9; overflow: hidden; }
.nv-card--post .nv-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.nv-card--post:hover .nv-card__media img { transform: scale(1.05); }
.nv-card--post .nv-card__body { padding: 24px; }
.nv-card--post .nv-card__title a:hover { color: var(--nv-accent); }
.nv-card--post .nv-card__meta { font-size: .82rem; color: var(--nv-text-mute); letter-spacing: .08em; text-transform: uppercase; margin: 0 0 8px; }

/* ---------- Stats ---------- */
.nv-stats {
	padding: clamp(48px, 6vw, 80px) 0;
	background:
		linear-gradient(90deg, transparent, rgba(255,170,6,0.08), transparent),
		linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
	border-block: 1px solid var(--nv-line);
}
.nv-stats__row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.nv-stat { text-align: center; }
.nv-stat__value {
	font-family: var(--nv-font-display);
	font-size: clamp(2.2rem, 3.4vw, 3rem);
	font-weight: 700;
	background: linear-gradient(180deg, #fff, var(--nv-accent) 120%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	letter-spacing: -0.02em;
}
.nv-stat__label { color: var(--nv-text-dim); font-size: .92rem; }

/* ---------- Process ---------- */
.nv-process {
	list-style: none; padding: 0; margin: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}
.nv-process__step {
	background: var(--nv-bg-card);
	border: 1px solid var(--nv-line);
	border-radius: var(--nv-radius-lg);
	padding: 28px 26px;
	position: relative;
}
.nv-process__step::before {
	content: ""; position: absolute; left: 0; top: 28px; bottom: 28px;
	width: 2px;
	background: linear-gradient(180deg, var(--nv-accent), transparent);
	opacity: .85;
	border-radius: 2px;
}
.nv-process__num {
	font-family: var(--nv-font-display);
	font-weight: 700;
	font-size: .85rem;
	letter-spacing: .2em;
	color: var(--nv-accent);
	margin-bottom: 14px;
}
.nv-process__title { font-family: var(--nv-font-display); font-size: 1.2rem; margin: 0 0 8px; font-weight: 600; }
.nv-process__desc { color: var(--nv-text-dim); margin: 0; font-size: .96rem; }

/* ---------- Quotes ---------- */
.nv-quote {
	background: var(--nv-bg-card);
	border: 1px solid var(--nv-line);
	border-radius: var(--nv-radius-lg);
	padding: 30px;
	margin: 0;
	display: flex; flex-direction: column; gap: 18px;
}
.nv-quote__text {
	margin: 0;
	font-family: var(--nv-font-display);
	font-weight: 500;
	font-size: 1.08rem;
	line-height: 1.5;
	color: var(--nv-text);
}
.nv-quote__caption { display: flex; flex-direction: column; gap: 2px; font-size: .9rem; color: var(--nv-text-dim); }
.nv-quote__caption strong { color: var(--nv-text); font-weight: 600; }

/* ---------- CTA / Contact ---------- */
.nv-cta {
	padding-top: clamp(48px, 5vw, 80px);
	padding-bottom: clamp(48px, 5vw, 80px);
}
.nv-cta__inner {
	background:
		radial-gradient(800px 400px at 20% 0%, rgba(255,170,6,0.18), transparent 60%),
		linear-gradient(180deg, var(--nv-bg-card), var(--nv-bg-elev));
	border: 1px solid rgba(255,170,6,0.25);
	border-radius: 28px;
	padding: clamp(32px, 5vw, 60px);
	display: grid;
	grid-template-columns: 1fr 1.05fr;
	gap: 48px;
	align-items: center;
	box-shadow: var(--nv-shadow);
}
.nv-cta .nv-section__head { margin-bottom: 32px; }
.nv-form { display: flex; flex-direction: column; gap: 14px; }
.nv-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.nv-form label { display: flex; flex-direction: column; gap: 7px; font-size: .85rem; color: var(--nv-text-dim); font-family: var(--nv-font-display); font-weight: 500; }
.nv-form input, .nv-form textarea {
	font: inherit;
	color: var(--nv-text);
	background: rgba(0,0,0,0.35);
	border: 1px solid var(--nv-line-strong);
	border-radius: var(--nv-radius);
	padding: 12px 14px;
	transition: border-color .2s ease, box-shadow .2s ease;
	resize: vertical;
}
.nv-form input:focus, .nv-form textarea:focus {
	outline: none;
	border-color: var(--nv-accent);
	box-shadow: 0 0 0 3px rgba(255,170,6,0.18);
}
.nv-form button[type=submit] { align-self: flex-start; margin-top: 6px; }
.nv-form__note { font-size: .82rem; color: var(--nv-text-mute); margin: 4px 0 0; }

/* ---------- Footer ---------- */
.nv-footer {
	margin-top: 40px;
	padding-top: clamp(56px, 7vw, 96px);
	padding-bottom: 32px;
	border-top: 1px solid var(--nv-line);
	background: linear-gradient(180deg, transparent, rgba(0,0,0,0.5));
}
.nv-footer__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	padding-bottom: 48px;
	border-bottom: 1px solid var(--nv-line);
}
.nv-footer__tagline { color: var(--nv-text-dim); margin: 16px 0 22px; max-width: 32ch; }
.nv-footer__heading {
	font-family: var(--nv-font-display);
	font-size: .85rem;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--nv-text-mute);
	margin: 0 0 16px;
	font-weight: 600;
}
.nv-footer__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; color: var(--nv-text-dim); font-size: .95rem; }
.nv-footer__list a:hover { color: var(--nv-accent); }
.nv-footer__small { color: var(--nv-text-dim); font-size: .9rem; margin: 0 0 14px; }
.nv-newsletter { display: flex; gap: 8px; }
.nv-newsletter input {
	flex: 1 1 auto;
	background: rgba(0,0,0,0.35);
	color: var(--nv-text);
	border: 1px solid var(--nv-line-strong);
	border-radius: var(--nv-radius);
	padding: 12px 14px;
	font: inherit;
}
.nv-newsletter input:focus { outline: none; border-color: var(--nv-accent); box-shadow: 0 0 0 3px rgba(255,170,6,0.18); }
.nv-social { display: flex; gap: 10px; }
.nv-social__link {
	display: inline-flex; align-items: center; justify-content: center;
	width: 38px; height: 38px;
	border-radius: 12px;
	border: 1px solid var(--nv-line-strong);
	color: var(--nv-text-dim);
	font-family: var(--nv-font-display);
	font-weight: 700;
	font-size: .85rem;
	text-transform: uppercase;
}
.nv-social__link:hover { color: var(--nv-accent); border-color: var(--nv-accent); }
.nv-footer__bottom {
	display: block;
	padding-top: 24px;
	color: var(--nv-text-mute);
	font-size: .85rem;
	text-align: center;
}
.nv-footer__bottom p { margin: 0; text-align: center; }

/* ---------- Page / blog content ---------- */
.nv-page { padding: clamp(60px, 7vw, 96px) 24px; }
.nv-page__article { max-width: 780px; margin: 0 auto; }
.nv-page__header { margin-bottom: 32px; }
.nv-page__thumb img { border-radius: var(--nv-radius-lg); margin-bottom: 28px; }
.nv-prose { color: var(--nv-text-dim); }
.nv-prose h2, .nv-prose h3, .nv-prose h4 { color: var(--nv-text); font-family: var(--nv-font-display); margin-top: 1.6em; }
.nv-prose a { color: var(--nv-accent); }
.nv-prose blockquote {
	margin: 24px 0;
	padding: 18px 22px;
	border-left: 3px solid var(--nv-accent);
	background: var(--nv-bg-card);
	border-radius: 0 12px 12px 0;
	color: var(--nv-text);
}
.nv-prose img { border-radius: var(--nv-radius); margin: 24px 0; }
.nv-prose pre { background: #06060a; border: 1px solid var(--nv-line); padding: 18px; border-radius: 12px; overflow-x: auto; }
.nv-prose code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; background: rgba(255,170,6,0.1); padding: 2px 6px; border-radius: 4px; color: var(--nv-accent); font-size: .92em; }
.nv-prose pre code { background: transparent; padding: 0; color: inherit; }

/* Archive grid */
.nv-archive { padding: clamp(60px, 7vw, 96px) 24px; }
.nv-archive__header { margin-bottom: 36px; max-width: 720px; }
.nv-archive__title { font-family: var(--nv-font-display); font-size: clamp(1.8rem, 3vw, 2.4rem); margin: 0 0 8px; }
.nv-archive__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

/* 404 */
.nv-404 { padding: clamp(80px, 12vw, 160px) 24px; }
.nv-404__inner { max-width: 600px; margin: 0 auto; text-align: center; }
.nv-404__search { margin-top: 28px; }

/* Search form */
.nv-search { display: flex; gap: 8px; max-width: 480px; margin: 0 auto; }
.nv-search__input {
	flex: 1 1 auto;
	background: rgba(0,0,0,0.35);
	color: var(--nv-text);
	border: 1px solid var(--nv-line-strong);
	border-radius: var(--nv-radius);
	padding: 12px 14px;
	font: inherit;
}
.nv-search__input:focus { outline: none; border-color: var(--nv-accent); box-shadow: 0 0 0 3px rgba(255,170,6,0.18); }

/* Accessibility */
.screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
	width: 1px; height: 1px; overflow: hidden;
	white-space: nowrap;
}
.skip-link {
	position: absolute; top: -40px; left: 12px;
	background: var(--nv-accent); color: #14140a;
	padding: 8px 14px; border-radius: 8px;
	font-family: var(--nv-font-display); font-weight: 600;
	z-index: 100;
}
.skip-link:focus { top: 12px; }

/* Reveal animation */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
	.nv-hero__inner { grid-template-columns: 1fr; }
	.nv-hero__visual { min-height: 380px; }
	.nv-orbit { width: 380px; height: 380px; }
	.nv-orbit__ring--3 { width: 360px; height: 360px; }
	.nv-cta__inner { grid-template-columns: 1fr; }
	.nv-grid--3 { grid-template-columns: repeat(2, 1fr); }
	.nv-process { grid-template-columns: repeat(2, 1fr); }
	.nv-stats__row { grid-template-columns: repeat(2, 1fr); }
	.nv-archive__grid { grid-template-columns: repeat(2, 1fr); }
	.nv-footer__grid { grid-template-columns: 1fr 1fr; }
	.nv-footer__col--brand { grid-column: span 2; }
}
@media (max-width: 720px) {
	.nv-nav { position: fixed; inset: 64px 16px auto 16px; background: var(--nv-bg-card); border: 1px solid var(--nv-line); border-radius: var(--nv-radius-lg); padding: 14px; box-shadow: var(--nv-shadow); transform: translateY(-12px); opacity: 0; pointer-events: none; transition: transform .25s ease, opacity .25s ease; justify-content: stretch; }
	.nv-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
	.nv-nav__list { flex-direction: column; gap: 0; }
	.nv-nav__list a { display: block; padding: 12px 14px; }
	.nv-nav__toggle { display: inline-flex; }
	.nv-header__cta { display: none; }
	.nv-hero__bullets { grid-template-columns: 1fr; }
	.nv-grid--2, .nv-grid--3 { grid-template-columns: 1fr; }
	.nv-process { grid-template-columns: 1fr; }
	.nv-stats__row { grid-template-columns: repeat(2, 1fr); }
	.nv-archive__grid { grid-template-columns: 1fr; }
	.nv-footer__grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
	.nv-form__row { grid-template-columns: 1fr; }
	.nv-orbit { width: 300px; height: 300px; }
	.nv-orbit__ring--3 { width: 290px; height: 290px; }
	.nv-orbit__ring--2 { width: 220px; height: 220px; }
	.nv-orbit__ring--1 { width: 150px; height: 150px; }
	.nv-orbit__core { width: 110px; height: 110px; }
	.nv-orbit__core--image { width: 70px; height: 70px; padding: 8px; }
	.nv-orbit__label { font-size: .85rem; letter-spacing: .04em; }
}

@media (prefers-reduced-motion: reduce) {
	* { animation: none !important; transition: none !important; }
}
