/* ============================================================
   Site footer — `.nvft-*` scope. Loaded globally.
   Same design tokens as the custom landings.
   ============================================================ */

.nvft {
	--nvft-bg: #0b1225;
	--nvft-bg-2: #111a36;
	--nvft-text: #e6eaf3;
	--nvft-text-muted: #9aa3bd;
	--nvft-text-soft: #6f7a96;
	--nvft-border: rgba(255, 255, 255, 0.08);
	--nvft-border-strong: rgba(255, 255, 255, 0.16);
	--nvft-brand: #4a7bff;
	--nvft-brand-hover: #6e94ff;
	--nvft-radius-sm: 8px;
	--nvft-radius-md: 12px;
	--nvft-max: 1200px;

	background: linear-gradient(180deg, var(--nvft-bg-2) 0%, var(--nvft-bg) 100%);
	color: var(--nvft-text);
	font-size: 0.9375rem;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
}
.nvft *,
.nvft *::before,
.nvft *::after { box-sizing: border-box; }

.nvft::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.045) 1px, transparent 0);
	background-size: 26px 26px;
	mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
	-webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
	pointer-events: none;
}

.nvft__wrap {
	position: relative;
	max-width: var(--nvft-max);
	margin: 0 auto;
	padding: 72px 24px 28px;
}

/* ============================================================
   TOP — 4-column grid (brand wider, 3 menus)
   ============================================================ */

.nvft__top {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 56px 40px;
	padding-bottom: 48px;
	border-bottom: 1px solid var(--nvft-border);
}
@media (max-width: 1024px) {
	.nvft__top {
		grid-template-columns: 1fr 1fr;
		gap: 48px 32px;
	}
	.nvft__brand { grid-column: 1 / -1; max-width: 520px; }
}
@media (max-width: 600px) {
	.nvft__wrap { padding: 56px 20px 24px; }
	.nvft__top {
		grid-template-columns: 1fr;
		gap: 40px;
		padding-bottom: 40px;
	}
}

/* ----- Brand column ----- */

.nvft__brand { max-width: 420px; }
.nvft__logo {
	display: inline-flex;
	margin-bottom: 18px;
}
.nvft__logo img {
	display: block;
	max-width: 160px;
	height: auto;
	filter: brightness(0) invert(1);
}
.nvft__tagline {
	font-size: 0.9375rem;
	line-height: 1.65;
	color: var(--nvft-text-muted);
	margin: 0 0 24px;
}

.nvft__contact {
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.nvft__contact a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--nvft-text);
	text-decoration: none;
	font-size: 0.9375rem;
	transition: color 0.18s;
}
.nvft__contact a:hover { color: var(--nvft-brand-hover); }
.nvft__contact svg {
	flex-shrink: 0;
	color: var(--nvft-text-muted);
	transition: color 0.18s;
}
.nvft__contact a:hover svg { color: var(--nvft-brand-hover); }

.nvft__social { margin-top: 4px; }
.nvft__social-label {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--nvft-text-soft);
	margin: 0 0 10px;
}
.nvft__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 999px;
	border: 1px solid var(--nvft-border-strong);
	color: var(--nvft-text);
	background: rgba(255, 255, 255, 0.02);
	transition: background 0.18s, border-color 0.18s, color 0.18s, transform 0.18s;
}
.nvft__social-link:hover {
	background: var(--nvft-brand);
	border-color: var(--nvft-brand);
	color: #fff;
	transform: translateY(-1px);
}

/* ----- Menu columns ----- */

.nvft__col { min-width: 0; }
.nvft__col-title {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--nvft-text);
	margin: 0 0 18px;
}
.nvft__menu-wrap { width: 100%; }
.nvft__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.nvft__menu li { margin: 0; padding: 0; }
.nvft__menu a {
	display: inline-flex;
	align-items: center;
	color: var(--nvft-text-muted);
	text-decoration: none;
	font-size: 0.9375rem;
	line-height: 1.5;
	transition: color 0.18s, transform 0.18s;
}
.nvft__menu a:hover {
	color: var(--nvft-text);
	transform: translateX(2px);
}

/* ============================================================
   BOTTOM bar — copyright · legal · language switcher
   ============================================================ */

.nvft__bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-top: 24px;
	font-size: 0.8125rem;
	color: var(--nvft-text-soft);
}
.nvft__copyright { margin: 0; }

.nvft__legal {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
}
.nvft__legal a {
	color: var(--nvft-text-muted);
	text-decoration: none;
	font-size: 0.8125rem;
	transition: color 0.18s;
}
.nvft__legal a:hover { color: var(--nvft-text); }

.nvft__lang {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 6px 12px;
	border: 1px solid var(--nvft-border-strong);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.02);
}
.nvft__lang > svg {
	color: var(--nvft-text-muted);
	flex-shrink: 0;
}
.nvft__lang ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}
.nvft__lang li { margin: 0; padding: 0; }
.nvft__lang a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 30px;
	padding: 4px 8px;
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: var(--nvft-text-muted);
	text-decoration: none;
	transition: color 0.18s, background 0.18s;
}
.nvft__lang a:hover { color: var(--nvft-text); }
.nvft__lang li.is-current a {
	color: #fff;
	background: var(--nvft-brand);
}

@media (max-width: 600px) {
	.nvft__bottom {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}
}
