/**
 * Nexoura homepage — Figma home2 @ 1920px
 * Font: Inter (+ Space Grotesk for footer headings)
 */

:root {
	/*
	 * Breakpoints (mainstream):
	 *   phone  ≤767px   — nav-mobile.css, home-mobile.css, work-mobile.css, services-mobile.css, search-mobile.css, contact-mobile.css
	 *   tablet 768–1023px
	 *   desktop ≥1024px — 1920 Figma canvas + zoom
	 */
	--nx-design: 1920;
	--nx-design-mobile: 750;
	--nx-max: 1920px;
	--nx-fluid: var(--nx-max);
	--nx-gutter-hero: 70px;
	--nx-gutter: 184px;
	--nx-gutter-footer: var(--nx-gutter);
	--nx-content: calc(var(--nx-max) - 2 * var(--nx-gutter));
	--nx-wk-gap-x: 64px;
	--nx-wk-col: calc((var(--nx-content) - var(--nx-wk-gap-x)) / 2);
	--nx-wk-gap-y: 96px;
	--nx-black: #000000;
	--nx-hero-end: #100e0c;
	--nx-footer-bg: #080808;
	--nx-footer-texture: url('../images/footer-texture.jpg');
	--nx-white: #ffffff;
	--nx-zinc-400: #9f9fa9;
	--nx-zinc-500: #71717b;
	--nx-zinc-100: #f4f4f5;
	--nx-zinc-200: #e4e4e7;
	--nx-gray-bg: #f3f4f6;
	--nx-search-gutter: 64px;
	--nx-sr-gap: 32px;
	--nx-font: "Inter", system-ui, -apple-system, sans-serif;
	--nx-font-display: "Space Grotesk", var(--nx-font);
	--nx-font-mono: "Consolas", "Courier New", monospace;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

html:has(body.nexoura-home) {
	overflow-x: clip;
}

body.nexoura-home {
	position: relative;
	width: var(--nx-max);
	margin: 0 auto;
	font-family: var(--nx-font);
	font-size: 16px;
	line-height: 1.5;
	color: var(--nx-black);
	background: var(--nx-white);
	overflow-x: clip;
	-webkit-font-smoothing: antialiased;
}

body.nexoura-home a {
	color: inherit;
	text-decoration: none;
}

body.nexoura-home img {
	display: block;
	max-width: 100%;
}

body.nexoura-home #page,
body.nexoura-home .nexoura-homepage {
	width: 100%;
	max-width: none;
	margin: 0;
	overflow-x: clip;
}

/* ─── Navigation (Figma: backdrop-blur 12px + rgba black 0.2) ─── */
.nexoura-nav {
	--nx-nav-blur: 12px;
	--nx-nav-bg: rgba(0, 0, 0, 0.2);
	--nx-nav-border: rgba(255, 255, 255, 0.1);
	--nx-cta-bg: rgba(255, 255, 255, 0.09);
	--nx-nav-pad-y: 21px;
	--nx-nav-inner-h: 80px;
	--nx-nav-logo-h: 36px;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	width: 100%;
	padding: var(--nx-nav-pad-y) var(--nx-gutter-hero);
	box-sizing: border-box;
	color: #ffffff;
	background: var(--nx-nav-bg);
	border: 1px solid var(--nx-nav-border);
	backdrop-filter: blur(var(--nx-nav-blur)) saturate(160%);
	-webkit-backdrop-filter: blur(var(--nx-nav-blur)) saturate(160%);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
	transition:
		padding 0.4s cubic-bezier(0.22, 1, 0.36, 1),
		background 0.4s cubic-bezier(0.22, 1, 0.36, 1),
		border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1),
		color 0.35s ease,
		box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.nexoura-nav__inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--nx-nav-inner-h);
	padding: 0 30px;
	background: transparent;
	transition: height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.nexoura-nav__logo img {
	width: auto;
	height: var(--nx-nav-logo-h);
	max-width: 297.782px;
	transition:
		height 0.4s cubic-bezier(0.22, 1, 0.36, 1),
		filter 0.35s ease;
}

.nexoura-nav__menu {
	display: flex;
	align-items: center;
	gap: 0;
}

.nexoura-nav__menu a {
	font-weight: 700;
	font-size: 22px;
	line-height: 16px;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: inherit;
	padding-right: 48px;
	transition: opacity 0.2s ease, color 0.35s ease;
}

.nexoura-nav__menu a:hover,
.nexoura-nav__menu a:focus {
	opacity: 0.85;
}

.nexoura-nav__menu a:last-child {
	padding-right: 0;
}

.nexoura-nav__menu-search {
	display: none;
}

.nexoura-nav__actions {
	display: flex;
	align-items: center;
}

.nexoura-nav__menu-toggle {
	display: none;
}

.nexoura-nav__search {
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0 60px;
	color: inherit;
}

.nexoura-nav__search img {
	width: 22px;
	height: 22px;
	opacity: 1;
	transition: filter 0.35s ease;
}

.nexoura-nav__cta {
	position: relative;
	display: inline-flex;
	overflow: visible;
	color: inherit;
	text-decoration: none;
	border-radius: 2px;
	transition: color 0.35s ease;
}

.nexoura-nav__cta-inner {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 16px;
	padding: 10px 24px;
	font-weight: 700;
	font-size: 18px;
	line-height: 18px;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: inherit;
	background: var(--nx-cta-bg);
	backdrop-filter: blur(var(--nx-nav-blur)) saturate(180%);
	-webkit-backdrop-filter: blur(var(--nx-nav-blur)) saturate(180%);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.1) inset,
		0 4px 24px rgba(0, 0, 0, 0.12);
	transition:
		background 0.35s ease,
		color 0.35s ease,
		box-shadow 0.35s ease;
}

.nexoura-nav__cta:hover,
.nexoura-nav__cta:focus {
	color: inherit;
}

.nexoura-nav__cta:hover .nexoura-nav__cta-inner,
.nexoura-nav__cta:focus .nexoura-nav__cta-inner {
	background: rgba(255, 255, 255, 0.14);
}

.nexoura-nav__cta-text {
	color: inherit;
}

.nexoura-nav__cta img {
	width: 12px;
	height: 16px;
	transform: rotate(90deg);
	filter: brightness(0) invert(1);
	transition: filter 0.35s ease;
}

/* 下滑：高度略缩 */
.nexoura-nav.nexoura-nav--scrolled {
	--nx-nav-pad-y: 12px;
	--nx-nav-inner-h: 64px;
	--nx-nav-logo-h: 30px;
}

.nexoura-nav.nexoura-nav--scrolled:not(.nexoura-nav--light) {
	--nx-nav-bg: rgba(0, 0, 0, 0.35);
	backdrop-filter: blur(16px) saturate(160%);
	-webkit-backdrop-filter: blur(16px) saturate(160%);
}

.nexoura-nav--services.nexoura-nav--scrolled,
.nexoura-nav--about.nexoura-nav--scrolled,
.nexoura-nav--work.nexoura-nav--scrolled,
.nexoura-nav--contact.nexoura-nav--scrolled,
.nexoura-nav--search.nexoura-nav--scrolled {
	--nx-nav-bg: rgba(255, 255, 255, 0.72);
	--nx-nav-border: rgba(0, 0, 0, 0.08);
	backdrop-filter: blur(var(--nx-nav-blur)) saturate(160%);
	-webkit-backdrop-filter: blur(var(--nx-nav-blur)) saturate(160%);
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05) inset;
}

/* 进入 Intro（白底区）：白玻璃 + 黑色内容 */
.nexoura-nav.nexoura-nav--light {
	--nx-nav-bg: rgba(255, 255, 255, 0.72);
	--nx-nav-border: rgba(0, 0, 0, 0.08);
	--nx-cta-bg: rgba(0, 0, 0, 0.06);
	color: var(--nx-black);
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05) inset;
	backdrop-filter: blur(var(--nx-nav-blur)) saturate(160%);
	-webkit-backdrop-filter: blur(var(--nx-nav-blur)) saturate(160%);
}

.nexoura-nav.nexoura-nav--light .nexoura-nav__logo img,
.nexoura-nav.nexoura-nav--light .nexoura-nav__search img,
.nexoura-nav.nexoura-nav--light .nexoura-nav__cta img,
.nexoura-nav.nexoura-nav--light .nexoura-nav__menu-toggle img {
	filter: brightness(0);
}

.nexoura-nav__menu-toggle img {
	filter: brightness(0) invert(1);
}

.nexoura-nav.nexoura-nav--light .nexoura-nav__cta:hover .nexoura-nav__cta-inner,
.nexoura-nav.nexoura-nav--light .nexoura-nav__cta:focus .nexoura-nav__cta-inner {
	background: rgba(0, 0, 0, 0.1);
	box-shadow:
		0 1px 0 rgba(0, 0, 0, 0.06) inset,
		0 4px 20px rgba(0, 0, 0, 0.08);
}

/* ─── Hero ─── */
.nexoura-hero {
	position: relative;
	width: 100%;
	min-height: 991px;
	background: var(--nx-black);
	overflow: hidden;
	padding-top: 122px;
}

.nexoura-hero__bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
}

.nexoura-hero__gradient {
	position: absolute;
	inset: 0;
	height: 991px;
	background: linear-gradient(180deg, #000000 55.236%, #100e0c 100%);
}

.nexoura-hero__texture {
	position: absolute;
	top: 0;
	height: 1074px;
	object-fit: cover;
	opacity: 0.35;
}

.nexoura-hero__texture--a {
	left: 0;
	width: 2327px;
	transform: rotate(90deg);
	transform-origin: top left;
}

.nexoura-hero__texture--b {
	left: 0;
	width: 2325px;
	transform: rotate(-90deg);
	transform-origin: top left;
}

.nexoura-hero__content {
	position: relative;
	z-index: 2;
	width: 100%;
	--hero-card-h: 360px;
	--hero-title-subtitle-gap: 60px;
	--hero-subtitle-visual-gap: 100px;
	--hero-visual-bottom: 72px;
	/* title 2×150 + gaps + subtitle + cards + bottom inset @ 1920 */
	--hero-card-stack-top: calc(300px + var(--hero-title-subtitle-gap) + 52px + var(--hero-subtitle-visual-gap));
	padding: 20px var(--nx-gutter-hero) var(--hero-visual-bottom);
	min-height: calc(20px + var(--hero-card-stack-top) + var(--hero-card-h) + var(--hero-visual-bottom));
	overflow: visible;
	box-sizing: border-box;
}

.nexoura-hero__headline {
	position: relative;
	z-index: 3;
	display: flex;
	flex-direction: column;
	gap: var(--hero-title-subtitle-gap);
	max-width: 1100px;
}

.nexoura-hero__title {
	margin: 0;
	font-weight: 700;
	font-size: 126px;
	line-height: 150px;
	letter-spacing: 0;
	text-transform: uppercase;
	color: var(--nx-white);
}

.nexoura-hero__title-line {
	display: block;
	white-space: nowrap;
}

.nexoura-hero__title-line--indent {
	padding-left: 0.35em;
}

.nexoura-hero__subtitle {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 0 2px;
	margin: 0;
	padding-top: 0;
	font-weight: 500;
	font-size: 20px;
	line-height: 20px;
	color: var(--nx-white);
	position: relative;
	overflow: visible;
}

.nexoura-hero__subtitle-text {
	padding: 0;
	white-space: nowrap;
	flex-shrink: 0;
	align-self: center;
}

/* Desktop ≥768px: subtitle-row 仅服务移动端分行，PC 保持单行 flex 流式排版 */
@media (min-width: 768px) {
	body.nexoura-home .nexoura-hero__subtitle-row {
		display: contents;
	}

	body.nexoura-home .nexoura-hero__headline {
		overflow: visible;
		max-width: 1180px;
	}

	body.nexoura-home .nexoura-hero__pill-inner {
		overflow: visible;
		padding: 8px 12px;
	}

	body.nexoura-home .nexoura-hero__pill-track {
		height: 22px;
		padding: 0 2px;
		box-sizing: content-box;
	}

	body.nexoura-home .nexoura-hero__pill-label {
		height: 22px;
		line-height: 22px;
		padding: 0 1px;
		box-sizing: border-box;
	}

	body.nexoura-home .nexoura-services__title-line {
		display: inline;
	}

	body.nexoura-home .nexoura-services__title-line + .nexoura-services__title-line::before {
		content: '\00a0';
	}
}

/* ─── Pill 毛玻璃 + Figma 光晕切图闪烁 ─── */
@keyframes nexoura-pill-halo-flicker {
	0%,
	100% {
		opacity: 0.42;
	}

	50% {
		opacity: 1;
	}
}

.nexoura-hero__pill {
	position: relative;
	display: inline-flex;
	vertical-align: bottom;
	border-radius: 8px;
	overflow: visible;
}

.nexoura-hero__pill-inner {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	padding: 10px 16px;
	border-radius: 8px;
	backdrop-filter: blur(12px) saturate(160%);
	-webkit-backdrop-filter: blur(12px) saturate(160%);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08) inset;
}

.nexoura-hero__pill--light .nexoura-hero__pill-inner {
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.nexoura-hero__pill--dark .nexoura-hero__pill-inner {
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.22) 0%, rgba(255, 255, 255, 0.02) 100%);
}

/* Figma image 97：光斑在切图正中，底边居中对齐 pill 下缘 */
.nexoura-hero__pill-halo {
	position: absolute;
	left: 50%;
	bottom: 0;
	z-index: 2;
	width: 228px;
	height: auto;
	max-width: none;
	pointer-events: none;
	transform: translate(-50%, 50%);
	object-fit: contain;
	mix-blend-mode: screen;
	animation: nexoura-pill-halo-flicker 2.6s ease-in-out infinite;
}

.nexoura-hero__subtitle-row:nth-child(1) .nexoura-hero__pill-halo {
	animation-delay: 0s;
}

.nexoura-hero__subtitle-row:nth-child(2) .nexoura-hero__pill-halo {
	width: 220px;
	animation-delay: 0.85s;
}

.nexoura-hero__subtitle-row:nth-child(3) .nexoura-hero__pill-halo {
	width: 150px;
	animation-delay: 1.7s;
}

.nexoura-hero__pill-track {
	position: relative;
	z-index: 2;
	display: inline-block;
	height: 20px;
	overflow: hidden;
	vertical-align: bottom;
}

.nexoura-hero__pill-roller {
	display: flex;
	flex-direction: column;
	transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}

.nexoura-hero__pill-label {
	display: block;
	height: 20px;
	line-height: 20px;
	font-weight: 500;
	font-size: 20px;
	white-space: nowrap;
	flex-shrink: 0;
	background: linear-gradient(180deg, #ffffff 0.156%, #b26eff 100.16%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	filter: drop-shadow(0 2px 17px rgba(172, 7, 255, 0.35));
}

.nexoura-hero__subtitle-dot {
	padding: 16px 0;
	font-size: 22px;
	line-height: 22px;
}

.nexoura-hero__visuals {
	/* Figma 1547:448 @ 1920 */
	--hero-card-h: 360px;
	--hero-card-w-rumble: 356px;
	--hero-card-w-phone: 548px;
	--hero-main-h: 840px;
	--hero-main-w: 700px;
	--hero-cards-gap: 88px;
	position: absolute;
	top: 20px;
	right: var(--nx-gutter-hero);
	bottom: var(--hero-visual-bottom);
	left: var(--nx-gutter-hero);
	pointer-events: none;
	overflow: hidden;
}

.nexoura-hero__visual {
	position: absolute;
	overflow: hidden;
	bottom: 0;
	top: auto;
}

.nexoura-hero__visual img,
.nexoura-hero__visual video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 右侧大图：底对齐，高 840px */
.nexoura-hero__visual--main {
	right: 0;
	left: auto;
	width: var(--hero-main-w);
	height: var(--hero-main-h);
	max-width: 100%;
	max-height: 100%;
}

/* 左下 rumble / 中下 phone：subtitle 下 100px，距底 72px */
.nexoura-hero__visual--rumble,
.nexoura-hero__visual--phone {
	top: var(--hero-card-stack-top);
	bottom: 0;
	height: var(--hero-card-h);
}

.nexoura-hero__visual--rumble {
	left: 0;
	width: var(--hero-card-w-rumble);
}

/* left 444px（= 356+88）@ 1920 */
.nexoura-hero__visual--phone {
	left: 444px;
	width: var(--hero-card-w-phone);
	max-width: calc(100% - var(--hero-main-w) - var(--hero-cards-gap));
}

/* ─── Hero entrance animations ─── */
@keyframes nexoura-slide-in-left {
	from {
		opacity: 0;
		transform: translateX(-96px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* 自底部抽卡抽出：裁切上揭 + 图上滑，无缩放 */
@keyframes nexoura-hero-draw-up {
	from {
		opacity: 0;
		clip-path: inset(100% 0 0 0);
	}

	to {
		opacity: 1;
		clip-path: inset(0 0 0 0);
	}
}

@keyframes nexoura-hero-img-draw-up {
	from {
		transform: translate3d(0, 100%, 0);
	}

	to {
		transform: translate3d(0, 0, 0);
	}
}

@keyframes nexoura-fade-in {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.nexoura-hero__title-line,
.nexoura-hero__visual,
.nexoura-hero__subtitle {
	opacity: 0;
}

.nexoura-hero__title-line {
	will-change: transform, opacity;
}

.nexoura-hero__visual {
	will-change: clip-path, opacity;
}

.nexoura-hero__visual img,
.nexoura-hero__visual video {
	will-change: transform;
	transform: translate3d(0, 100%, 0);
}

.nexoura-hero__subtitle {
	will-change: opacity;
}

.nexoura-hero--ready .nexoura-hero__title-line:nth-child(1) {
	animation: nexoura-slide-in-left 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.nexoura-hero--ready .nexoura-hero__title-line:nth-child(2) {
	animation: nexoura-slide-in-left 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
}

.nexoura-hero--ready .nexoura-hero__visual--main {
	animation: nexoura-hero-draw-up 1.15s cubic-bezier(0.22, 1, 0.36, 1) 0.75s both;
}

.nexoura-hero--ready .nexoura-hero__visual--main img,
.nexoura-hero--ready .nexoura-hero__visual--main video {
	animation: nexoura-hero-img-draw-up 1.15s cubic-bezier(0.22, 1, 0.36, 1) 0.75s both;
}

/* 左下 + 中下：自底部同时抽出 */
.nexoura-hero--ready .nexoura-hero__visual--rumble,
.nexoura-hero--ready .nexoura-hero__visual--phone {
	animation: nexoura-hero-draw-up 1.05s cubic-bezier(0.22, 1, 0.36, 1) 1.2s both;
}

.nexoura-hero--ready .nexoura-hero__visual--rumble img,
.nexoura-hero--ready .nexoura-hero__visual--rumble video,
.nexoura-hero--ready .nexoura-hero__visual--phone img,
.nexoura-hero--ready .nexoura-hero__visual--phone video {
	animation: nexoura-hero-img-draw-up 1.05s cubic-bezier(0.22, 1, 0.36, 1) 1.2s both;
}

.nexoura-hero--ready .nexoura-hero__subtitle {
	animation: nexoura-fade-in 1s cubic-bezier(0.22, 1, 0.36, 1) 2.05s both;
}

@media (prefers-reduced-motion: reduce) {
	.nexoura-hero__title-line,
	.nexoura-hero__visual,
	.nexoura-hero__subtitle {
		opacity: 1;
		animation: none !important;
		transform: none !important;
		clip-path: none;
	}

	.nexoura-hero__visual img,
	.nexoura-hero__visual video {
		transform: none;
	}

	.nexoura-hero__pill-halo {
		animation: none !important;
		opacity: 0.75;
	}

	.nexoura-hero__pill-roller {
		transition: none !important;
	}
}

/* ─── Intro ─── */
.nexoura-intro {
	background: var(--nx-white);
	padding: 110px var(--nx-gutter);
}

.nexoura-intro__inner {
	display: flex;
	align-items: flex-start;
	gap: 40px;
	max-width: 1552px;
}

.nexoura-intro__left {
	flex: 0 0 800px;
	display: flex;
	flex-direction: column;
	gap: 48px;
}

.nexoura-intro__quote {
	margin: 0;
	font-weight: 500;
	font-style: italic;
	font-size: 36px;
	line-height: 48px;
	color: var(--nx-black);
}

.nexoura-intro__cta {
	display: inline-flex;
	align-items: center;
	gap: 24px;
}

.nexoura-intro__cta-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border: 1px solid var(--nx-black);
	border-radius: 50%;
}

.nexoura-intro__cta-icon img {
	width: 20px;
	height: 20px;
}

.nexoura-intro__cta-text {
	font-weight: 700;
	font-size: 12px;
	line-height: 16px;
	letter-spacing: 3.6px;
	text-transform: uppercase;
}

.nexoura-intro__divider {
	flex: 0 0 1px;
	align-self: stretch;
	width: 1px;
	background: var(--nx-zinc-200);
	min-height: 294px;
}

.nexoura-intro__right {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 24px;
	min-width: 0;
}

.nexoura-intro__columns {
	display: flex;
	gap: 24px;
}

.nexoura-intro__col {
	flex: 1;
}

.nexoura-intro__label {
	margin: 0 0 15px;
	font-weight: 900;
	font-size: 10px;
	line-height: 15px;
	letter-spacing: 3px;
	text-transform: uppercase;
}

.nexoura-intro__col p {
	margin: 0;
	font-weight: 400;
	font-size: 14px;
	line-height: 22.75px;
	color: var(--nx-zinc-500);
	max-width: 320px;
}

.nexoura-intro__stats {
	display: flex;
	gap: 24px;
	padding: 8px 0;
	margin: -8px 0;
	transition: gap 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.nexoura-stat {
	flex: 1;
	position: relative;
	background: var(--nx-white);
	border: 1px solid var(--nx-zinc-100);
	border-radius: 4px;
	padding: 24.667px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	cursor: default;
}

.nexoura-stat__value {
	font-weight: 700;
	font-size: 30px;
	line-height: 36px;
	letter-spacing: -1.5px;
}

.nexoura-stat__label {
	font-weight: 700;
	font-size: 9px;
	line-height: 13.5px;
	letter-spacing: 0.9px;
	text-transform: uppercase;
	color: var(--nx-zinc-400);
}

.nexoura-stat:last-child .nexoura-stat__label {
	font-size: 8px;
	line-height: 12px;
	letter-spacing: 0.8px;
}

/* ─── Intro entrance & hover ─── */
@keyframes nexoura-intro-rise {
	0% {
		opacity: 0;
		transform: translateY(40px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes nexoura-intro-divider-grow {
	0% {
		opacity: 0;
		transform: scaleY(0);
	}

	100% {
		opacity: 1;
		transform: scaleY(1);
	}
}

/* CTA / stats 仅淡入，避免 transform 动画锁住悬浮 */
@keyframes nexoura-intro-fade-in {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}


.nexoura-intro__quote,
.nexoura-intro__cta,
.nexoura-intro__divider,
.nexoura-intro__col,
.nexoura-stat {
	opacity: 0;
}

.nexoura-intro--ready .nexoura-intro__quote,
.nexoura-intro--ready .nexoura-intro__cta,
.nexoura-intro--ready .nexoura-intro__divider,
.nexoura-intro--ready .nexoura-intro__col,
.nexoura-intro--ready .nexoura-stat {
	opacity: 1;
}

.nexoura-intro--ready .nexoura-intro__quote {
	animation: nexoura-intro-rise 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both;
}

.nexoura-intro--ready .nexoura-intro__cta {
	animation: nexoura-intro-fade-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.28s both;
}

.nexoura-intro--ready .nexoura-intro__divider {
	animation: nexoura-intro-divider-grow 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.38s both;
	transform-origin: center center;
}

.nexoura-intro--ready .nexoura-intro__col:nth-child(1) {
	animation: nexoura-intro-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
}

.nexoura-intro--ready .nexoura-intro__col:nth-child(2) {
	animation: nexoura-intro-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.58s both;
}

.nexoura-intro--ready .nexoura-stat:nth-child(1),
.nexoura-intro--ready .nexoura-stat:nth-child(2) {
	animation: nexoura-intro-fade-in 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.68s both;
}

/* Intro CTA：仅鼠标悬浮，避免点击后 :focus 粘住样式 */
.nexoura-intro__cta {
	-webkit-tap-highlight-color: transparent;
	transition:
		transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
		gap 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.nexoura-intro__cta:focus {
	outline: none;
}

.nexoura-intro__cta:focus-visible {
	outline: 2px solid var(--nx-black);
	outline-offset: 4px;
}

.nexoura-intro__cta-icon {
	transition:
		transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
		background-color 0.35s ease,
		border-color 0.35s ease;
}

.nexoura-intro__cta-icon img {
	transition: filter 0.35s ease;
}

.nexoura-intro__cta-text {
	transition: letter-spacing 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

/* 悬浮：Vision / Impact 列 */
.nexoura-intro__col {
	padding: 20px;
	margin: -20px;
	border-radius: 4px;
	transition:
		transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
		background-color 0.4s ease,
		box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.nexoura-intro__col:hover {
	transform: translateY(-6px);
	background-color: #fafafa;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.nexoura-intro__col p {
	transition: color 0.35s ease;
}

.nexoura-intro__col:hover p {
	color: var(--nx-black);
}

/* 数据卡片过渡 */
.nexoura-stat {
	transition:
		transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1),
		border-color 0.4s ease,
		background-color 0.4s ease,
		opacity 0.4s ease;
}

.nexoura-stat__value {
	display: inline-block;
	transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.nexoura-stat__label {
	transition: color 0.35s ease, letter-spacing 0.45s ease;
}

/* 悬浮：CTA / stats（由 JS 添加 --is-hovered，不依赖 :hover） */
.nexoura-intro__cta.nexoura-intro__cta--is-hovered {
	transform: translateX(8px);
	gap: 28px;
}

.nexoura-intro__cta.nexoura-intro__cta--is-hovered .nexoura-intro__cta-text {
	letter-spacing: 4.2px;
}

.nexoura-intro__cta-icon.nexoura-intro__cta-icon--is-hovered {
	transform: rotate(-45deg);
	background-color: var(--nx-black);
	border-color: var(--nx-black);
}

.nexoura-intro__cta-icon.nexoura-intro__cta-icon--is-hovered img {
	filter: invert(1);
}

.nexoura-intro__stats.nexoura-intro__stats--is-hovered {
	gap: 32px;
}

.nexoura-intro__stats.nexoura-intro__stats--is-hovered .nexoura-stat:not(.nexoura-stat--is-hovered) {
	opacity: 0.65;
	transform: scale(0.98);
}

.nexoura-stat.nexoura-stat--is-hovered {
	z-index: 1;
	transform: translateY(-10px);
	border-color: var(--nx-zinc-200);
	background-color: #fafafa;
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
}

.nexoura-stat.nexoura-stat--is-hovered .nexoura-stat__value {
	transform: scale(1.06);
}

.nexoura-stat.nexoura-stat--is-hovered .nexoura-stat__label {
	color: var(--nx-black);
	letter-spacing: 1.1px;
}

/* 引用文字轻微悬浮 */
.nexoura-intro__quote {
	transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.nexoura-intro__left:hover .nexoura-intro__quote {
	transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
	.nexoura-intro__quote,
	.nexoura-intro__cta,
	.nexoura-intro__divider,
	.nexoura-intro__col,
	.nexoura-stat {
		opacity: 1;
		animation: none !important;
	}

	.nexoura-intro__cta:not(.nexoura-intro__cta--is-hovered),
	.nexoura-intro__col:not(:hover),
	.nexoura-stat:not(.nexoura-stat--is-hovered),
	.nexoura-intro__left:not(:hover) .nexoura-intro__quote {
		transform: none !important;
	}

	.nexoura-intro__stats.nexoura-intro__stats--is-hovered {
		gap: 24px;
	}

	.nexoura-intro__stats.nexoura-intro__stats--is-hovered .nexoura-stat:not(.nexoura-stat--is-hovered) {
		opacity: 1;
	}
}

/* ─── Services（首页 How We Build 区块；非 /services 页面） ─── */
.nexoura-services {
	background: var(--nx-white);
	padding: 100px var(--nx-gutter) 0;
	display: flex;
	flex-direction: column;
	gap: 110px;
}

.nexoura-services__header {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.nexoura-services__title {
	margin: 0;
	font-weight: 700;
	font-size: 92px;
	line-height: 92px;
	text-transform: uppercase;
}

.nexoura-services__title-line {
	display: inline;
}

.nexoura-services__title-line + .nexoura-services__title-line::before {
	content: "\00a0";
}

.nexoura-services__subtitle {
	margin: 0;
	font-weight: 300;
	font-size: 24px;
	line-height: 39px;
}

.nexoura-services__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 1px;
	background: rgba(255, 255, 255, 0.1);
}

.nexoura-service-card {
	--spot-x: 50%;
	--spot-y: 50%;
	position: relative;
	height: 700px;
	background: var(--nx-black);
	overflow: hidden;
}

/* 悬浮：鼠标跟随的浅紫光晕（在背景图与内容之间） */
.nexoura-service-card::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.4s ease;
	background: radial-gradient(
		circle 240px at var(--spot-x) var(--spot-y),
		rgba(255, 255, 255, 0.17) 0%,
		rgba(217, 161, 255, 0.11) 38%,
		transparent 72%
	);
}

.nexoura-service-card--is-hovered::after {
	opacity: 1;
}

.nexoura-service-card__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
	transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.nexoura-service-card__bg--video {
	display: block;
	border: none;
	background: var(--nx-black);
}

.nexoura-service-card--is-hovered .nexoura-service-card__bg {
	opacity: 0;
}

.nexoura-service-card__content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 40px;
}

.nexoura-service-card__meta {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.nexoura-service-card__type {
	margin: 0 0 8px;
	font-family: var(--nx-font-mono);
	font-size: 12px;
	line-height: 12px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--nx-white);
}

.nexoura-service-card__category {
	margin: 0;
	font-weight: 700;
	font-size: 14px;
	line-height: 14px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--nx-white);
}

.nexoura-service-card__arrow {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
}

.nexoura-service-card__title-frame {
	position: relative;
	display: inline-block;
	margin: 63px 0 0;
	max-width: 100%;
	overflow: visible;
	align-self: flex-start;
}

.nexoura-service-card__title {
	margin: 0;
	font-weight: 700;
	font-size: 48px;
	line-height: 45.6px;
	letter-spacing: -2.4px;
	text-transform: uppercase;
	color: var(--nx-white);
}

.nexoura-service-card__title-inner {
	position: relative;
	z-index: 1;
	display: inline-block;
}

/* 玻璃：宽 452px，内间距 20px，高度随标题；悬浮时在卡片内居中 */
.nexoura-service-card__title-glass {
	position: absolute;
	z-index: 0;
	top: -20px;
	left: 50%;
	width: 452px;
	height: calc(100% + 40px);
	box-sizing: border-box;
	border-radius: 8px;
	opacity: 0;
	pointer-events: none;
	transform: translateX(-50%);
	border: 1px solid rgba(255, 255, 255, 0.11);
	backdrop-filter: blur(10px) saturate(140%);
	-webkit-backdrop-filter: blur(10px) saturate(140%);
	background: linear-gradient(
		90deg,
		rgba(255, 255, 255, 0.22) 0%,
		rgba(255, 255, 255, 0.1) 50%,
		rgba(255, 255, 255, 0.03) 100%
	);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.32) inset,
		inset 0 0 56px rgba(255, 255, 255, 0.08);
	transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.nexoura-service-card--is-hovered .nexoura-service-card__title-glass {
	opacity: 1;
}

.nexoura-service-card--is-hovered .nexoura-service-card__title-frame {
	display: block;
	width: 100%;
	align-self: center;
}

.nexoura-service-card--is-hovered .nexoura-service-card__title {
	display: flex;
	align-items: center;
	justify-content: center;
}

.nexoura-service-card--is-hovered .nexoura-service-card__title-inner {
	display: flex;
	align-items: center;
	width: 423px;
	max-width: 100%;
	font-size: 48px;
	line-height: 46px;
	background: linear-gradient(180deg, #ffffff 0%, #ffffff 29.97%, #d9a1ff 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

/* 光晕：玻璃底边、略偏左，放大 1.3× */
.nexoura-service-card__title-glass .nexoura-service-card__title-halo {
	position: absolute;
	left: 34%;
	bottom: 0;
	z-index: 2;
	width: 228px;
	height: auto;
	max-width: none;
	pointer-events: none;
	transform: translate(-50%, 50%) scale(1.3);
	transform-origin: center center;
	object-fit: contain;
	mix-blend-mode: screen;
	opacity: 0;
	transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.nexoura-service-card--is-hovered .nexoura-service-card__title-halo {
	opacity: 1;
	animation: nexoura-pill-halo-flicker 2.6s ease-in-out infinite;
}

.nexoura-service-card__desc {
	margin: 0;
	max-width: 422px;
	font-weight: 500;
	font-style: italic;
	font-size: 18px;
	line-height: 22.5px;
	color: var(--nx-white);
}

.nexoura-service-card__copy {
	position: relative;
	margin-top: auto;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.nexoura-service-card__desc {
	transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.nexoura-service-card__expand {
	display: flex;
	align-items: center;
	align-self: stretch;
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	transform: translateY(48px);
	transition:
		opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.08s,
		transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.08s,
		max-height 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.08s;
}

.nexoura-service-card__expand p {
	margin: 0;
	width: 100%;
	max-width: 406.55px;
	font-family: var(--nx-font);
	font-style: normal;
	font-weight: 300;
	font-size: 18px;
	line-height: 30px;
	color: #ffffff;
}

.nexoura-service-card--is-hovered .nexoura-service-card__desc {
	transform: translateY(-48px);
}

.nexoura-service-card--is-hovered .nexoura-service-card__expand {
	opacity: 1;
	max-height: 180px;
	transform: translateY(0);
}

/* ─── Marquee (footer 上方标语) ─── */
@keyframes nexoura-marquee-scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

.nexoura-marquee {
	background: var(--nx-black);
	overflow: hidden;
	width: 100%;
	padding: 48px 0;
	border-bottom: 0.5px solid rgba(255, 255, 255, 0.4);
	box-sizing: border-box;
}

.nexoura-marquee__viewport {
	overflow: hidden;
	width: 100%;
}

.nexoura-marquee__track {
	display: flex;
	width: max-content;
	animation: nexoura-marquee-scroll 48s linear infinite;
	will-change: transform;
}

.nexoura-marquee__group {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	padding-right: 80px;
}

.nexoura-marquee__text {
	font-weight: 700;
	font-size: 92px;
	line-height: 1;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	color: #acb0b5;
	white-space: nowrap;
}

.nexoura-marquee__highlight {
	color: var(--nx-white);
}

.nexoura-marquee__sep {
	display: inline-block;
	width: 12px;
	height: 12px;
	margin: 0 80px;
	border-radius: 50%;
	background: #acb0b5;
	flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
	.nexoura-service-card::after {
		display: none;
	}

	.nexoura-marquee__text {
		font-size: clamp(48px, calc(92 / var(--nx-design) * var(--nx-fluid)), 92px);
	}

	.nexoura-marquee__track {
		animation: none;
		flex-wrap: wrap;
		justify-content: center;
		width: 100%;
	}

	.nexoura-marquee__group[aria-hidden="true"] {
		display: none;
	}

	.nexoura-service-card--is-hovered .nexoura-service-card__title-halo {
		animation: none !important;
		opacity: 0.75;
	}

	.nexoura-service-card--is-hovered .nexoura-service-card__title-glass {
		opacity: 1;
	}

	.nexoura-service-card--is-hovered .nexoura-service-card__desc,
	.nexoura-service-card--is-hovered .nexoura-service-card__expand {
		transform: none;
	}

	.nexoura-project:hover .nexoura-project__media img,
	.nexoura-project:focus-within .nexoura-project__media img,
	.nexoura-project__btn:hover,
	.nexoura-project__btn:focus-visible {
		transform: none;
	}

	.nexoura-work__filters a::after {
		transition: none;
	}
}

/* ─── Selected Work ─── */
.nexoura-work {
	background: var(--nx-white);
	padding: 130px var(--nx-gutter) 0;
	margin-bottom: 128px;
}

.nexoura-work__inner {
	max-width: 1536px;
	margin: 0 auto;
}

.nexoura-work__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	padding-bottom: 48.667px;
	border-bottom: 0.667px solid var(--nx-black);
	margin-bottom: 79.99px;
}

.nexoura-work__title {
	margin: 0;
	font-weight: 700;
	font-size: 92px;
	line-height: 92px;
	text-transform: uppercase;
}

.nexoura-work__title span {
	display: block;
}

.nexoura-work__filters {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.nexoura-work__filters a {
	position: relative;
	display: inline-block;
	font-weight: 700;
	font-size: 16px;
	line-height: 16px;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	padding-right: 48px;
	padding-bottom: 6px;
	white-space: nowrap;
	color: inherit;
	text-decoration: none;
}

.nexoura-work__filters a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 48px;
	bottom: 0;
	height: 2px;
	background: var(--nx-black);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.nexoura-work__filters a:last-child {
	padding-right: 0;
}

.nexoura-work__filters a:last-child::after {
	right: 0;
}

.nexoura-work__filters a.nexoura-work__filter--is-active::after {
	transform: scaleX(0.6);
}

.nexoura-work__grid {
	position: relative;
	min-height: 1757px;
}

.nexoura-project {
	position: absolute;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.nexoura-work__grid .nexoura-project[hidden] {
	display: none !important;
}

.nexoura-project__link {
	display: flex;
	flex-direction: column;
	gap: 24px;
	color: inherit;
	text-decoration: none;
}

.nexoura-project__media {
	background: var(--nx-gray-bg);
	overflow: hidden;
}

.nexoura-project__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1);
	transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}

.nexoura-project:hover .nexoura-project__media img,
.nexoura-project:focus-within .nexoura-project__media img {
	transform: scale(1.06);
}

.nexoura-project__footer {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding-top: 24.667px;
	border-top: 0.667px solid var(--nx-black);
}

.nexoura-project__name {
	margin: 0 0 8px;
	font-weight: 700;
	font-size: 30px;
	line-height: 36px;
	text-transform: uppercase;
}

.nexoura-project__type {
	margin: 0;
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	color: rgba(0, 0, 0, 0.5);
}

.nexoura-project__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border: 1px solid var(--nx-black);
	border-radius: 100px;
	flex-shrink: 0;
	background: transparent;
	transition:
		background-color 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.nexoura-project__btn:hover,
.nexoura-project__btn:focus-visible {
	background-color: var(--nx-black);
	border-color: var(--nx-black);
	transform: rotate(-45deg);
}

.nexoura-project__btn img {
	width: 24px;
	height: 24px;
	transition: filter 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.nexoura-project__btn:hover img,
.nexoura-project__btn:focus-visible img {
	filter: invert(1);
}

/* Grid positions from Figma (1536px content area) */
.nexoura-project--left {
	left: 0;
	top: 0;
	width: 720px;
}

.nexoura-project--left .nexoura-project__media {
	height: 540px;
}

.nexoura-project--right {
	left: 816px;
	top: 0;
	width: 720px;
	padding-top: 128px;
}

.nexoura-project--right .nexoura-project__media {
	height: 540px;
}

.nexoura-project--wide {
	left: 256px;
	right: 256px;
	top: 876.67px;
	width: auto;
}

.nexoura-project--wide .nexoura-project__media {
	height: 768px;
}

/* ─── Footer（通栏：随 body 1920 画布 + zoom 铺满视口，不用 100vw 避免两侧留白） ─── */
.nexoura-footer {
	position: relative;
	isolation: isolate;
	width: 100%;
	max-width: none;
	margin: 0;
	background: var(--nx-footer-bg);
	color: var(--nx-white);
	padding: 80px var(--nx-gutter-footer);
	overflow: hidden;
	box-sizing: border-box;
}

.nexoura-footer__texture {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	opacity: 0.13;
	background-image: var(--nx-footer-texture);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.nexoura-footer__texture img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
	max-height: none;
	min-width: 100%;
	min-height: 100%;
	object-fit: cover;
	object-position: center;
}

.nexoura-footer__inner {
	position: relative;
	z-index: 1;
	max-width: 1800px;
	margin: 0 auto;
}

.nexoura-footer__top {
	display: flex;
	gap: 48px;
	align-items: flex-start;
	justify-content: center;
	margin-bottom: 50px;
}

.nexoura-footer__brand {
	flex: 1;
	position: relative;
	min-height: 176px;
}

.nexoura-footer__mark {
	position: absolute;
	top: 0;
	left: 0;
	width: 112px;
	height: 114px;
	transform-origin: 50% 50%;
}

.nexoura-footer__mark--spin {
	animation: nexoura-footer-mark-spin 3s linear infinite;
}

@keyframes nexoura-footer-mark-spin {
	0% {
		transform: rotate(0deg);
		animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
	}

	40% {
		transform: rotate(-360deg);
	}

	100% {
		transform: rotate(-360deg);
	}
}

.nexoura-footer__wordmark {
	position: absolute;
	left: 0;
	top: 143px;
	width: 265px;
	height: 32px;
}

.nexoura-footer__col {
	flex: 0 0 352px;
}

.nexoura-footer__col--office {
	flex: 0 0 402px;
}

.nexoura-footer__heading {
	margin: 0 0 32px;
	font-family: var(--nx-font-display);
	font-weight: 700;
	font-size: 18px;
	line-height: 28px;
	text-transform: uppercase;
}

.nexoura-footer__col--office .nexoura-footer__heading {
	font-size: 19.7px;
}

.nexoura-footer__links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.nexoura-footer__links a {
	font-weight: 700;
	font-size: 18px;
	line-height: 28px;
	text-transform: uppercase;
}

.nexoura-footer__address {
	font-style: normal;
	font-weight: 700;
	font-size: 18px;
	line-height: 28px;
	text-transform: uppercase;
	margin: 0 0 0;
}

.nexoura-footer__address a {
	color: var(--nx-white);
}

.nexoura-footer__social {
	display: flex;
	gap: 16px;
	margin-top: 32px;
	flex-wrap: nowrap;
}

.nexoura-footer__social a {
	background: rgba(255, 255, 255, 0.09);
	padding: 10px 20px;
	font-weight: 900;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 1px;
	text-transform: uppercase;
	white-space: nowrap;
	flex-shrink: 0;
}

.nexoura-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 48px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.nexoura-footer__copy {
	margin: 0;
	font-weight: 900;
	font-size: 12px;
	line-height: 16px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.nexoura-footer__legal {
	display: flex;
	gap: 32px;
}

.nexoura-footer__legal a {
	font-weight: 900;
	font-size: 12px;
	line-height: 16px;
	letter-spacing: 1.2px;
	text-transform: uppercase;
}

@media (prefers-reduced-motion: reduce) {
	.nexoura-footer__mark--spin {
		animation: none;
	}
}

/* 桌面缩放由 main.js → initHomeLayoutScale()（zoom / transform） */

/* ─── Responsive (scale down from 1920) ─── */
@media (max-width: 1600px) {
	.nexoura-hero__title {
		font-size: 96px;
		line-height: 110px;
	}

	.nexoura-services__title,
	.nexoura-work__title {
		font-size: 72px;
		line-height: 72px;
	}
}

@media (min-width: 768px) and (max-width: 1023px) {
	:root {
		--nx-fluid: 100vw;
		--nx-gutter-hero: max(24px, calc(70 / var(--nx-design) * var(--nx-fluid)));
		--nx-gutter: max(24px, calc(184 / var(--nx-design) * var(--nx-fluid)));
		--nx-gutter-footer: var(--nx-gutter);
	}

	body.nexoura-home {
		width: 100%;
		zoom: 1;
		transform: none;
	}

	.nexoura-nav__menu {
		display: none;
	}

	.nexoura-nav {
		position: relative;
		left: auto;
		transform: none;
		backdrop-filter: blur(12px);
		-webkit-backdrop-filter: blur(12px);
	}

	.nexoura-hero {
		padding-top: 0;
		min-height: auto;
	}

	.nexoura-hero__content {
		padding: 40px var(--nx-gutter);
	}

	.nexoura-hero__visuals {
		position: relative;
		inset: auto;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 16px;
		margin-top: 40px;
	}

	.nexoura-hero__visuals {
		align-items: end;
	}

	.nexoura-hero__content {
		--hero-card-stack-top: auto;
		min-height: 0;
	}

	.nexoura-hero__headline {
		gap: 40px;
	}

	.nexoura-hero__visual {
		position: relative;
		left: auto !important;
		right: auto !important;
		bottom: auto !important;
		top: auto !important;
		width: 100% !important;
		height: 280px !important;
	}

	.nexoura-hero__visual--main {
		grid-column: 1 / -1;
		height: 400px !important;
		order: -1;
	}

	.nexoura-intro__inner {
		flex-direction: column;
	}

	.nexoura-intro__left {
		flex: none;
		width: 100%;
	}

	.nexoura-intro__divider {
		width: 100%;
		height: 1px;
		min-height: 1px;
	}

	.nexoura-services__grid {
		grid-template-columns: 1fr;
	}

	.nexoura-work__header {
		flex-direction: column;
		align-items: flex-start;
		gap: 32px;
	}

	.nexoura-work__grid {
		min-height: 0;
		display: flex;
		flex-direction: column;
		gap: 48px;
	}

	.nexoura-project {
		position: relative;
		left: auto !important;
		top: auto !important;
		width: 100% !important;
		padding-top: 0 !important;
	}

	.nexoura-footer__top {
		flex-direction: column;
	}
}

/* ═══════════════════════════════════════════════════════════════
   Mobile nav — see assets/css/nav-mobile.css (≤767px, all branded pages)
   Homepage mobile — see assets/css/home-mobile.css (≤767px, loaded after main.css)
   Work list mobile — see assets/css/work-mobile.css (≤767px, Figma 1911:514)
   Services mobile — see assets/css/services-mobile.css (≤767px, Figma 1916:915)
   ═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════
   Homepage mobile — Figma 750 artboard (CSS only; tablet+ ≥768px unchanged)
   ═══════════════════════════════════════════════════════════════ */


html:has(body.nexoura-services) {
	overflow-x: clip;
	background: var(--nx-footer-bg);
}

/* Show Work / Services content when main.js has not loaded. */
html:not(.nexoura-js) .nexoura-wk-hero__title,
html:not(.nexoura-js) .nexoura-wk-hero__aside,
html:not(.nexoura-js) .nexoura-wk-card,
html:not(.nexoura-js) .nexoura-wk-cta__inner,
html:not(.nexoura-js) .nexoura-svc-hero__title,
html:not(.nexoura-js) .nexoura-svc-hero__lead,
html:not(.nexoura-js) .nexoura-svc-chapter,
html:not(.nexoura-js) .nexoura-svc-stacks__header,
html:not(.nexoura-js) .nexoura-svc-stack-card {
	opacity: 1;
	transform: none;
}

body.nexoura-services {
	position: relative;
	width: var(--nx-max);
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
	font-family: var(--nx-font);
	font-size: 16px;
	line-height: 1.5;
	color: var(--nx-black);
	background: var(--nx-white);
	overflow-x: clip;
	-webkit-font-smoothing: antialiased;
}

body.nexoura-services a {
	color: inherit;
	text-decoration: none;
}

body.nexoura-services img {
	display: block;
	max-width: 100%;
}

body.nexoura-services #page {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	overflow-x: clip;
}

body.nexoura-services .nexoura-services-page {
	width: var(--nx-content);
	margin-left: auto;
	margin-right: auto;
	padding: 0;
	overflow-x: clip;
	box-sizing: border-box;
}

body.nexoura-services .nexoura-services-page__safe {
	width: 100%;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/*
 * Services：Stacks + Footer 铺满 1920 画布（与 About hub/footer 相同机制）。
 * 上方 main 保持 1552 安全区；这两块用 calc 从内容区向外扩展到 --nx-max。
 */
body.nexoura-services > .nexoura-svc-stacks,
body.nexoura-services > .nexoura-footer {
	width: var(--nx-max);
	max-width: none;
	margin-left: calc(50% - var(--nx-max) / 2);
	margin-right: calc(50% - var(--nx-max) / 2);
	box-sizing: border-box;
}

body.nexoura-services > .nexoura-svc-stacks {
	padding: 128px var(--nx-gutter);
	margin-bottom: 0;
}

body.nexoura-services > .nexoura-svc-stacks + .nexoura-footer {
	margin-top: 0;
	padding-top: 80px;
}

/* Work / 作品详情：相对视口通栏（body 铺满视口，需 100vw 突破） */
body.nexoura-work .nexoura-full-bleed,
body.nexoura-work-detail .nexoura-full-bleed {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	box-sizing: border-box;
}

.nexoura-services-page > section {
	width: 100%;
	margin: 0;
	padding-left: 0;
	padding-right: 0;
	box-sizing: border-box;
}

/* Services nav — light glass from load */
.nexoura-nav--services,
.nexoura-nav--about,
.nexoura-nav--contact,
.nexoura-nav--work {
	--nx-nav-bg: rgba(255, 255, 255, 0.72);
	--nx-nav-border: rgba(0, 0, 0, 0.08);
	--nx-cta-bg: transparent;
	color: var(--nx-black);
	backdrop-filter: blur(var(--nx-nav-blur)) saturate(160%);
	-webkit-backdrop-filter: blur(var(--nx-nav-blur)) saturate(160%);
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05) inset;
}

.nexoura-nav--contact.nexoura-nav--scrolled {
	--nx-nav-blur: 16px;
	--nx-nav-bg: rgba(255, 255, 255, 0.82);
	box-shadow:
		0 1px 0 rgba(0, 0, 0, 0.05) inset,
		0 8px 32px rgba(0, 0, 0, 0.04);
}

.nexoura-nav--contact .nexoura-nav__menu a {
	transition: opacity 0.2s ease, color 0.35s ease;
}

.nexoura-nav--contact .nexoura-nav__menu a:hover,
.nexoura-nav--contact .nexoura-nav__menu a:focus-visible {
	opacity: 0.65;
}

.nexoura-nav--services .nexoura-nav__logo img,
.nexoura-nav--services .nexoura-nav__search img,
.nexoura-nav--services .nexoura-nav__cta img,
.nexoura-nav--services .nexoura-nav__menu-toggle img,
.nexoura-nav--about .nexoura-nav__logo img,
.nexoura-nav--about .nexoura-nav__search img,
.nexoura-nav--about .nexoura-nav__cta img,
.nexoura-nav--about .nexoura-nav__menu-toggle img,
.nexoura-nav--contact .nexoura-nav__logo img,
.nexoura-nav--contact .nexoura-nav__search img,
.nexoura-nav--contact .nexoura-nav__cta img,
.nexoura-nav--contact .nexoura-nav__menu-toggle img,
.nexoura-nav--work .nexoura-nav__logo img,
.nexoura-nav--work .nexoura-nav__search img,
.nexoura-nav--work .nexoura-nav__cta img,
.nexoura-nav--work .nexoura-nav__menu-toggle img {
	filter: brightness(0);
}

.nexoura-nav--services .nexoura-nav__cta-inner,
.nexoura-nav--about .nexoura-nav__cta-inner,
.nexoura-nav--contact .nexoura-nav__cta-inner,
.nexoura-nav--work .nexoura-nav__cta-inner {
	background: rgba(0, 0, 0, 0.004);
	border: 1px solid var(--nx-black);
	box-shadow: none;
}

.nexoura-nav--services .nexoura-nav__cta:hover .nexoura-nav__cta-inner,
.nexoura-nav--services .nexoura-nav__cta:focus .nexoura-nav__cta-inner,
.nexoura-nav--about .nexoura-nav__cta:hover .nexoura-nav__cta-inner,
.nexoura-nav--about .nexoura-nav__cta:focus .nexoura-nav__cta-inner,
.nexoura-nav--contact .nexoura-nav__cta:hover .nexoura-nav__cta-inner,
.nexoura-nav--contact .nexoura-nav__cta:focus .nexoura-nav__cta-inner,
.nexoura-nav--work .nexoura-nav__cta:hover .nexoura-nav__cta-inner,
.nexoura-nav--work .nexoura-nav__cta:focus .nexoura-nav__cta-inner {
	background: rgba(0, 0, 0, 0.06);
}

.nexoura-nav__menu a {
	position: relative;
}

.nexoura-nav__menu a.nexoura-nav__link--active::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -12px;
	width: 50px;
	height: 2px;
	background: currentColor;
	transform-origin: left center;
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── Hero ─── */
.nexoura-svc-hero {
	padding: 130px 0;
}

.nexoura-svc-hero__inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 48px;
	width: 100%;
	margin: 0;
}

.nexoura-svc-hero__title {
	margin: 0;
	font-weight: 700;
	font-size: 92px;
	line-height: 92px;
	text-transform: uppercase;
	flex: 0 1 1060px;
	opacity: 0;
	transform: translateY(32px);
	transition:
		opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.nexoura-svc-hero__title-line {
	display: block;
}

.nexoura-svc-hero__lead {
	margin: 0;
	flex: 0 0 444px;
	font-weight: 400;
	font-style: italic;
	font-size: 20px;
	line-height: 32px;
	color: #6a7282;
	opacity: 0;
	transform: translateY(24px);
	transition:
		opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.nexoura-svc-hero--ready .nexoura-svc-hero__title,
.nexoura-svc-hero--ready .nexoura-svc-hero__lead {
	opacity: 1;
	transform: none;
}

.nexoura-svc-hero--ready .nexoura-svc-hero__lead {
	transition-delay: 0.12s;
}

/* ─── Chapters ─── */
.nexoura-svc-chapters {
	padding: 60px 0 0;
}

.nexoura-svc-chapters__rule {
	height: 1px;
	margin: 0;
	background: var(--nx-black);
}

.nexoura-svc-chapter {
	padding: 0;
}

.nexoura-svc-chapter__inner {
	position: relative;
	width: 100%;
	height: 680px;
	min-height: 680px;
	margin: 0;
	padding: 0;
}

.nexoura-svc-chapter__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 60px;
	font-weight: 500;
	font-size: 16px;
	line-height: 60px;
	text-transform: uppercase;
	color: #999999;
}

.nexoura-svc-chapter__body {
	position: static;
	width: 100%;
	min-height: 396px;
}

.nexoura-svc-chapter__copy {
	position: relative;
	z-index: 2;
	width: 598px;
	max-width: 598px;
	padding: 48px 0;
}

.nexoura-svc-chapter__headline {
	margin: 0 0 60px;
	font-weight: 500;
	font-size: 24px;
	line-height: 30px;
	color: #101828;
}

.nexoura-svc-chapter__headline-line {
	display: block;
}

.nexoura-svc-chapter__text {
	font-weight: 300;
	font-size: 24px;
	line-height: 36px;
	color: #6a7282;
}

.nexoura-svc-chapter__text p {
	margin: 0 0 1em;
}

.nexoura-svc-chapter__text p:last-child {
	margin-bottom: 0;
}

.nexoura-svc-chapter__phones {
	position: absolute;
	top: 40px;
	left: calc(598px + 160px);
	width: 460px;
	height: 600px;
	overflow: visible;
	pointer-events: none;
}

.nexoura-svc-phones {
	position: relative;
	width: 100%;
	height: 600px;
	overflow: visible;
}

.nexoura-svc-phones__device {
	position: absolute;
	top: 0;
	left: 0;
	width: 400px;
	height: 600px;
	overflow: visible;
	border-radius: 0;
	transform-origin: top left;
	transition:
		transform 1.05s cubic-bezier(0.33, 1, 0.52, 1),
		opacity 0.85s cubic-bezier(0.33, 1, 0.52, 1);
}

.nexoura-svc-phones__diffuse {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	overflow: visible;
	pointer-events: none;
	opacity: 0.3;
	filter: blur(34px);
	transform: translate3d(30px, 30px, 0);
	transform-origin: center center;
	transition:
		opacity 0.85s cubic-bezier(0.33, 1, 0.52, 1),
		transform 1.05s cubic-bezier(0.33, 1, 0.52, 1);
}

.nexoura-svc-phones__motion {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	overflow: hidden;
	transform-origin: center center;
	backface-visibility: hidden;
	transition:
		transform 1.05s cubic-bezier(0.33, 1, 0.52, 1),
		opacity 0.85s cubic-bezier(0.33, 1, 0.52, 1);
}

.nexoura-svc-phones__surface {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: transparent;
	isolation: isolate;
}

.nexoura-svc-phones__device[data-deck-rank="0"] {
	z-index: 3;
	transform: translate3d(0, 0, 0) scale(1);
}

.nexoura-svc-phones__device[data-deck-rank="1"] {
	z-index: 2;
	transform: translate3d(83px, 40px, 0) scale(0.8675, 0.8667);
}

.nexoura-svc-phones__device[data-deck-rank="2"] {
	z-index: 1;
	transform: translate3d(167px, 80px, 0) scale(0.7325, 0.7333);
}

.nexoura-svc-phones__device[data-deck-rank="3"] {
	z-index: 0;
	transform: translate3d(167px, 88px, 0) scale(0.665, 0.665);
	opacity: 0;
	pointer-events: none;
}

.nexoura-svc-phones__device[data-deck-rank="3"] .nexoura-svc-phones__motion {
	opacity: 0;
}

.nexoura-svc-phones__device[data-deck-rank="3"] .nexoura-svc-phones__diffuse {
	opacity: 0;
}

.nexoura-svc-phones--no-transition .nexoura-svc-phones__device,
.nexoura-svc-phones--no-transition .nexoura-svc-phones__motion,
.nexoura-svc-phones--no-transition .nexoura-svc-phones__diffuse {
	transition: none !important;
}

.nexoura-svc-phones--advance .nexoura-svc-phones__device {
	will-change: transform, opacity;
}

.nexoura-svc-phones--advance .nexoura-svc-phones__motion {
	will-change: transform, opacity;
}

.nexoura-svc-phones--advance .nexoura-svc-phones__diffuse {
	will-change: transform, opacity;
}

.nexoura-svc-phones--advance [data-deck-rank="0"] {
	z-index: 4;
	transform: translate3d(-108px, 14px, 0) scale(0.64, 0.64);
	opacity: 0;
	transition-delay: 0s;
}

.nexoura-svc-phones--advance [data-deck-rank="0"] .nexoura-svc-phones__motion {
	transform: translate3d(-12px, 0, 0) scale(0.98);
	transition-delay: 0s;
}

.nexoura-svc-phones--advance [data-deck-rank="0"] .nexoura-svc-phones__diffuse {
	opacity: 0;
	transition-delay: 0s;
}

.nexoura-svc-phones--advance [data-deck-rank="1"] {
	z-index: 3;
	transform: translate3d(0, 0, 0) scale(1);
	opacity: 1;
	transition-delay: 0.05s;
}

.nexoura-svc-phones--advance [data-deck-rank="2"] {
	z-index: 2;
	transform: translate3d(83px, 40px, 0) scale(0.8675, 0.8667);
	opacity: 1;
	transition-delay: 0.1s;
}

.nexoura-svc-phones--advance [data-deck-rank="3"] {
	z-index: 1;
	transform: translate3d(167px, 80px, 0) scale(0.7325, 0.7333);
	opacity: 1;
	transition-delay: 0.16s;
}

.nexoura-svc-phones--advance [data-deck-rank="3"] .nexoura-svc-phones__motion {
	opacity: 1;
	transition-delay: 0.2s;
}

.nexoura-svc-phones--advance [data-deck-rank="3"] .nexoura-svc-phones__diffuse {
	opacity: 0.3;
	transition-delay: 0.16s;
}

.nexoura-svc-phones__media {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transform: scale(1.04);
	transform-origin: center center;
	backface-visibility: hidden;
}

.nexoura-svc-phones__diffuse .nexoura-svc-phones__media {
	transform: scale(1.1);
}

.nexoura-svc-chapter--is-active .nexoura-svc-phones__surface {
	transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.nexoura-svc-chapter__footer {
	position: absolute;
	top: 500px;
	left: 0;
	right: 0;
	z-index: 5;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 48px;
	box-sizing: border-box;
	height: 180px;
	min-height: 180px;
	padding-bottom: 40px;
	border-bottom: 1px solid var(--nx-black);
	pointer-events: auto;
}

.nexoura-svc-chapter:last-child .nexoura-svc-chapter__footer {
	border-bottom: none;
	margin-bottom: 100px;
}

.nexoura-svc-chapter:last-child .nexoura-svc-chapter__inner {
	height: 780px;
	min-height: 780px;
}

.nexoura-svc-chapter + .nexoura-svc-chapter {
	margin-top: 0;
}

.nexoura-svc-chapter__title {
	margin: 0;
	padding-top: 0;
	font-weight: 700;
	font-size: 62px;
	line-height: 62px;
	letter-spacing: -3.6px;
	color: #111111;
	flex: 1;
}

.nexoura-svc-chapter__title-line {
	display: block;
}

.nexoura-svc-scope {
	list-style: none;
	margin: 0;
	padding: 0;
	flex: 0 0 auto;
	min-width: 256px;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	position: relative;
	z-index: 2;
	pointer-events: auto;
}

.nexoura-svc-scope__item {
	position: relative;
	width: 100%;
	display: flex;
	justify-content: flex-end;
}

.nexoura-svc-scope__btn {
	display: inline-flex;
	justify-content: flex-end;
	width: 100%;
	padding: 0;
	border: none;
	background: transparent;
	cursor: pointer;
	font-family: var(--nx-font);
	font-weight: 700;
	font-size: 16px;
	line-height: 16px;
	letter-spacing: 1px;
	text-transform: uppercase;
	text-align: right;
	color: #333333;
	opacity: 0.6;
	transition:
		opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		color 0.35s ease;
}

.nexoura-svc-scope__item--active .nexoura-svc-scope__btn {
	opacity: 1;
	color: var(--nx-black);
}

.nexoura-svc-scope__block {
	display: inline-flex;
	flex-direction: column;
	align-items: stretch;
}

.nexoura-svc-scope__row {
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	gap: 20px;
}

.nexoura-svc-scope__arrow {
	width: 0;
	height: 12px;
	flex-shrink: 0;
	overflow: hidden;
	opacity: 0;
	transition:
		width 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.nexoura-svc-scope__item--active .nexoura-svc-scope__arrow {
	width: 16px;
	opacity: 1;
	filter: none;
}

.nexoura-svc-scope__label {
	display: inline-block;
	text-align: right;
	white-space: nowrap;
}

.nexoura-svc-scope__rule {
	display: block;
	height: 1px;
	margin-top: 11px;
	background: var(--nx-black);
	transform: scaleX(0);
	transform-origin: right center;
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.nexoura-svc-scope__item--active .nexoura-svc-scope__rule {
	transform: scaleX(1);
}

.nexoura-svc-scope__item + .nexoura-svc-scope__item {
	margin-top: 40px;
}

.nexoura-svc-scope__btn:hover,
.nexoura-svc-scope__btn:focus-visible {
	opacity: 1;
}

.nexoura-svc-chapter {
	opacity: 0;
	transform: translateY(48px);
	transition:
		opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.nexoura-svc-chapter--ready {
	opacity: 1;
	transform: none;
}

/* ─── Modern Stacks（内容 1552；Services 通栏见 body.nexoura-services > .nexoura-svc-stacks） ─── */
.nexoura-svc-stacks {
	width: 100%;
	background: var(--nx-footer-bg);
	color: var(--nx-white);
	padding: 128px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.4);
	box-sizing: border-box;
}

.nexoura-svc-stacks__inner {
	width: var(--nx-content);
	margin: 0 auto;
	padding: 0;
	box-sizing: border-box;
}

.nexoura-svc-stacks__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 48px;
	margin-bottom: 128px;
}

.nexoura-svc-stacks__title {
	margin: 0;
	font-weight: 700;
	font-size: 92px;
	line-height: 92px;
	letter-spacing: -4.8px;
	text-transform: uppercase;
	flex: 0 1 384px;
}

.nexoura-svc-stacks__title-line {
	display: block;
}

.nexoura-svc-stacks__title-line--muted {
	color: #acb0b5;
}

.nexoura-svc-stacks__lead {
	margin: 0;
	flex: 0 1 592px;
	font-weight: 300;
	font-size: 24px;
	line-height: 39px;
}

.nexoura-svc-stacks__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
}

.nexoura-svc-stack-card {
	padding: 48px;
	box-sizing: border-box;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.14) 0%,
		rgba(255, 255, 255, 0.06) 52%,
		rgba(255, 255, 255, 0.03) 100%
	);
	backdrop-filter: blur(20px) saturate(160%);
	-webkit-backdrop-filter: blur(20px) saturate(160%);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.2) inset,
		inset 0 0 48px rgba(255, 255, 255, 0.04);
	transition:
		background 0.4s cubic-bezier(0.22, 1, 0.36, 1),
		border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.nexoura-svc-stack-card:hover,
.nexoura-svc-stack-card:focus-within {
	border-color: rgba(255, 255, 255, 0.22);
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.2) 0%,
		rgba(255, 255, 255, 0.1) 52%,
		rgba(255, 255, 255, 0.05) 100%
	);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.28) inset,
		inset 0 0 56px rgba(255, 255, 255, 0.06);
	transform: translateY(-6px);
}

.nexoura-svc-stack-card__icon-wrap {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	width: 32px;
	height: 32px;
	margin-bottom: 32px;
	overflow: hidden;
	flex-shrink: 0;
}

.nexoura-svc-stack-card__icon {
	display: block;
	width: 32px;
	height: 32px;
}

.nexoura-svc-stack-card__title {
	margin: 0 0 15px;
	font-weight: 700;
	font-size: 20px;
	line-height: 28px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.nexoura-svc-stack-card__desc {
	margin: 0;
	font-weight: 300;
	font-size: 16px;
	line-height: 24px;
}

.nexoura-svc-stack-card__desc-line {
	display: block;
}

.nexoura-svc-stacks__header,
.nexoura-svc-stack-card {
	opacity: 0;
	transform: translateY(32px);
	transition:
		opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
		background 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.nexoura-svc-stacks--ready .nexoura-svc-stacks__header,
.nexoura-svc-stacks--ready .nexoura-svc-stack-card {
	opacity: 1;
	transform: none;
}

.nexoura-svc-stacks--ready .nexoura-svc-stack-card:nth-child(1) { transition-delay: 0.05s; }
.nexoura-svc-stacks--ready .nexoura-svc-stack-card:nth-child(2) { transition-delay: 0.12s; }
.nexoura-svc-stacks--ready .nexoura-svc-stack-card:nth-child(3) { transition-delay: 0.19s; }
.nexoura-svc-stacks--ready .nexoura-svc-stack-card:nth-child(4) { transition-delay: 0.26s; }

@media (prefers-reduced-motion: reduce) {
	.nexoura-svc-hero__title,
	.nexoura-svc-hero__lead,
	.nexoura-svc-chapter,
	.nexoura-svc-stacks__header,
	.nexoura-svc-stack-card {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

@media (max-width: 1600px) {
	.nexoura-svc-hero__title,
	.nexoura-svc-stacks__title {
		font-size: 72px;
		line-height: 72px;
	}

	.nexoura-svc-chapter__title {
		font-size: 52px;
		line-height: 52px;
	}
}

@media (max-width: 1200px) {
	body.nexoura-services {
		width: 100%;
		zoom: 1;
		transform: none;
	}

	body.nexoura-services .nexoura-services-page {
		width: auto;
		max-width: none;
		margin-left: var(--nx-gutter);
		margin-right: var(--nx-gutter);
	}

	body.nexoura-services .nexoura-services-page__safe {
		width: auto;
		max-width: none;
		margin-left: 0;
		margin-right: 0;
	}

	body.nexoura-services > .nexoura-svc-stacks,
	body.nexoura-services > .nexoura-footer {
		width: 100%;
		max-width: none;
		margin-left: 0;
		margin-right: 0;
	}

	body.nexoura-services > .nexoura-svc-stacks {
		padding-left: var(--nx-gutter);
		padding-right: var(--nx-gutter);
	}

	body.nexoura-services .nexoura-svc-stacks .nexoura-svc-stacks__inner {
		width: auto;
		max-width: none;
		margin-left: auto;
		margin-right: auto;
		padding-left: var(--nx-gutter);
		padding-right: var(--nx-gutter);
	}

	.nexoura-svc-hero {
		padding: 64px 0;
	}

	.nexoura-svc-hero__inner {
		flex-direction: column;
		gap: 32px;
	}

	.nexoura-svc-hero__title,
	.nexoura-svc-hero__lead {
		flex: none;
		width: 100%;
	}

	.nexoura-svc-chapter__inner {
		height: auto;
		min-height: 0;
	}

	.nexoura-svc-chapter__body {
		min-height: 0;
	}

	.nexoura-svc-chapter__copy {
		width: 100%;
		max-width: none;
	}

	.nexoura-svc-chapter__phones {
		position: relative;
		top: auto;
		left: auto;
		width: 100%;
		max-width: 400px;
		height: 600px;
		margin: 48px auto 0;
		overflow: visible;
	}

	.nexoura-svc-chapter__footer {
		position: static;
		min-height: 0;
		margin-top: 48px;
	}

	.nexoura-svc-chapter__footer {
		flex-direction: column;
		align-items: flex-start;
		gap: 32px;
	}

	.nexoura-svc-chapter__title {
		font-size: 40px;
		line-height: 44px;
		letter-spacing: -2px;
		padding-top: 0;
	}

	.nexoura-svc-scope {
		padding-left: 0;
		width: 100%;
		align-items: flex-end;
	}

	.nexoura-svc-stacks__header {
		flex-direction: column;
		align-items: flex-start;
		margin-bottom: 64px;
	}

	.nexoura-svc-stacks__title,
	.nexoura-svc-stacks__lead {
		flex: none;
		width: 100%;
	}

	.nexoura-svc-stacks__grid {
		grid-template-columns: 1fr;
	}
}

/* ═══════════════════════════════════════════════════════════════
   Work page — Figma work @ 1920px (node 1547-2122)
   ═══════════════════════════════════════════════════════════════ */

html:has(body.nexoura-work) {
	overflow-x: clip;
}

body.nexoura-work {
	position: relative;
	width: 100%;
	max-width: none;
	margin: 0;
	font-family: var(--nx-font);
	font-size: 16px;
	line-height: 1.5;
	color: var(--nx-black);
	background: var(--nx-white);
	overflow-x: clip;
	-webkit-font-smoothing: antialiased;
}

body.nexoura-work a {
	color: inherit;
	text-decoration: none;
}

body.nexoura-work img {
	display: block;
	max-width: 100%;
}

body.nexoura-work .nexoura-wk-card__btn img {
	max-width: none;
}

body.nexoura-work #page,
body.nexoura-work .nexoura-work-page {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	overflow-x: clip;
	box-sizing: border-box;
}

.nexoura-work-page > section {
	width: 100%;
	max-width: var(--nx-content);
	margin-left: auto;
	margin-right: auto;
	padding-left: 0;
	padding-right: 0;
	box-sizing: border-box;
}

/*
 * Work 页 body 满宽无 1920+zoom；导航按与 Services 相同的画布比例缩放（≥768px）。
 * 须用 calc(100vw * N / 1920)，勿用 length × length（会导致 logo/字号失效）。
 */
@media (min-width: 768px) {
	body.nexoura-work .nexoura-nav--work,
	body.nexoura-work-detail .nexoura-nav--work {
		--nx-nav-pad-y: calc(100vw * 21 / 1920);
		--nx-nav-inner-h: calc(100vw * 80 / 1920);
		--nx-nav-logo-h: calc(100vw * 36 / 1920);
		padding-left: calc(100vw * 70 / 1920);
		padding-right: calc(100vw * 70 / 1920);
	}

	body.nexoura-work .nexoura-nav--work.nexoura-nav--scrolled,
	body.nexoura-work-detail .nexoura-nav--work.nexoura-nav--scrolled {
		--nx-nav-pad-y: calc(100vw * 12 / 1920);
		--nx-nav-inner-h: calc(100vw * 64 / 1920);
		--nx-nav-logo-h: calc(100vw * 30 / 1920);
	}

	body.nexoura-work .nexoura-nav--work .nexoura-nav__inner,
	body.nexoura-work-detail .nexoura-nav--work .nexoura-nav__inner {
		padding-left: calc(100vw * 30 / 1920);
		padding-right: calc(100vw * 30 / 1920);
	}

	body.nexoura-work .nexoura-nav--work .nexoura-nav__logo img,
	body.nexoura-work-detail .nexoura-nav--work .nexoura-nav__logo img {
		max-width: calc(100vw * 297.782 / 1920);
	}

	body.nexoura-work .nexoura-nav--work .nexoura-nav__menu a,
	body.nexoura-work-detail .nexoura-nav--work .nexoura-nav__menu a {
		font-size: calc(100vw * 22 / 1920);
		line-height: calc(100vw * 16 / 1920);
		padding-right: calc(100vw * 48 / 1920);
	}

	body.nexoura-work .nexoura-nav--work .nexoura-nav__search,
	body.nexoura-work-detail .nexoura-nav--work .nexoura-nav__search {
		padding: 0 calc(100vw * 60 / 1920);
	}

	body.nexoura-work .nexoura-nav--work .nexoura-nav__search img,
	body.nexoura-work-detail .nexoura-nav--work .nexoura-nav__search img {
		width: calc(100vw * 22 / 1920);
		height: calc(100vw * 22 / 1920);
	}

	body.nexoura-work .nexoura-nav--work .nexoura-nav__cta-inner,
	body.nexoura-work-detail .nexoura-nav--work .nexoura-nav__cta-inner {
		font-size: calc(100vw * 18 / 1920);
		line-height: calc(100vw * 18 / 1920);
		padding: calc(100vw * 10 / 1920) calc(100vw * 24 / 1920);
		gap: calc(100vw * 16 / 1920);
	}

	body.nexoura-work .nexoura-nav--work .nexoura-nav__cta img,
	body.nexoura-work-detail .nexoura-nav--work .nexoura-nav__cta img {
		width: calc(100vw * 12 / 1920);
		height: calc(100vw * 16 / 1920);
	}

	body.nexoura-work .nexoura-nav--work .nexoura-nav__menu-toggle img,
	body.nexoura-work-detail .nexoura-nav--work .nexoura-nav__menu-toggle img {
		width: calc(100vw * 32 / 1920);
		height: calc(100vw * 24 / 1920);
	}
}

/* ─── Hero ─── */
.nexoura-wk-hero {
	padding: 128px 0 96px;
}

.nexoura-wk-hero__inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 48px;
	width: 100%;
	margin: 0;
}

.nexoura-wk-hero__title {
	margin: 0;
	font-weight: 700;
	font-size: 92px;
	line-height: 92px;
	text-transform: uppercase;
	flex: 0 1 760px;
	opacity: 0;
	transform: translateY(32px);
	transition:
		opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.nexoura-wk-hero__title-line {
	display: block;
}

.nexoura-wk-hero__aside {
	flex: 0 0 444px;
	padding-top: 8px;
	opacity: 0;
	transform: translateY(24px);
	transition:
		opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.nexoura-wk-hero__lead {
	margin: 0 0 40px;
	font-weight: 400;
	font-size: 20px;
	line-height: 32px;
	color: #6a7282;
}

.nexoura-wk-hero__meta {
	display: flex;
	gap: 64px;
}

.nexoura-wk-hero__meta-label {
	display: block;
	margin-bottom: 8px;
	font-weight: 700;
	font-size: 12px;
	line-height: 16px;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: rgba(0, 0, 0, 0.45);
}

.nexoura-wk-hero__meta-value {
	display: block;
	font-weight: 700;
	font-size: 16px;
	line-height: 20px;
	letter-spacing: 1.2px;
	text-transform: uppercase;
}

.nexoura-wk-hero--ready .nexoura-wk-hero__title,
.nexoura-wk-hero--ready .nexoura-wk-hero__aside {
	opacity: 1;
	transform: none;
}

.nexoura-wk-hero--ready .nexoura-wk-hero__aside {
	transition-delay: 0.12s;
}

/* ─── Toolbar ─── */
.nexoura-wk-toolbar {
	padding: 0;
}

.nexoura-wk-toolbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	width: 100%;
	margin: 0;
	padding: 24px 0 28px;
	border-top: 0.667px solid var(--nx-gray-bg);
	border-bottom: 0.667px solid var(--nx-gray-bg);
}

.nexoura-wk-sort {
	position: relative;
}

.nexoura-wk-sort__toggle {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 0;
	border: none;
	background: transparent;
	font-family: var(--nx-font);
	font-weight: 700;
	font-size: 16px;
	line-height: 16px;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: var(--nx-black);
	cursor: pointer;
	transition: opacity 0.2s ease;
}

.nexoura-wk-sort__toggle:hover,
.nexoura-wk-sort__toggle:focus-visible {
	opacity: 0.75;
}

.nexoura-wk-sort__arrows {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	display: block;
}

.nexoura-wk-sort__arrow {
	opacity: 0.35;
	transition: opacity 0.2s ease;
}

/* 倒序（新→旧）：高亮下箭头；正序（旧→新）：高亮上箭头 */
.nexoura-wk-sort__toggle[data-sort-dir="desc"] .nexoura-wk-sort__arrow--down,
.nexoura-wk-sort__toggle[data-sort-dir="asc"] .nexoura-wk-sort__arrow--up {
	opacity: 1;
}

.nexoura-wk-filters {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.nexoura-wk-filters__link {
	position: relative;
	display: inline-block;
	font-weight: 700;
	font-size: 16px;
	line-height: 16px;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	padding-right: 48px;
	padding-bottom: 6px;
	white-space: nowrap;
	color: inherit;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.nexoura-wk-filters__link:last-child {
	padding-right: 0;
}

.nexoura-wk-filters__link::after {
	content: "";
	position: absolute;
	left: 0;
	right: 48px;
	bottom: 0;
	height: 2px;
	background: var(--nx-black);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.nexoura-wk-filters__link:last-child::after {
	right: 0;
}

.nexoura-wk-filters__link:hover,
.nexoura-wk-filters__link:focus-visible {
	opacity: 0.75;
}

.nexoura-wk-filters__link--active::after {
	transform: scaleX(0.6);
}

/* ─── Project grid (Figma @ 1920: equal cols + 64px gap in 1552 safe area) ─── */
.nexoura-wk-grid-section {
	padding: 80px 0 130px;
}

.nexoura-wk-load-more {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 24px 0 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 14px;
}

.nexoura-wk-load-more__spinner {
	width: 18px;
	height: 18px;
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-top-color: rgba(255, 255, 255, 0.85);
	border-radius: 50%;
	animation: nexoura-wk-spin 0.8s linear infinite;
	opacity: 0;
}

.nexoura-wk-load-more--active .nexoura-wk-load-more__spinner {
	opacity: 1;
}

@keyframes nexoura-wk-spin {
	to {
		transform: rotate(360deg);
	}
}

.nexoura-wk-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: var(--nx-wk-gap-x);
	row-gap: var(--nx-wk-gap-y);
	width: 100%;
	max-width: 100%;
	margin: 0;
}

.nexoura-wk-card {
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 100%;
	min-width: 0;
	opacity: 0;
	transform: translateY(40px);
	transition:
		opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.nexoura-wk-card--full {
	grid-column: 1 / -1;
	width: 100%;
}

.nexoura-wk-card--half {
	width: 100%;
	min-width: 0;
}

.nexoura-wk-card--hidden {
	opacity: 0 !important;
	transform: translateY(20px) !important;
	pointer-events: none;
}

.nexoura-wk-card--removed {
	display: none;
}

.nexoura-wk-card__link {
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 100%;
	min-width: 0;
	color: inherit;
	text-decoration: none;
}

.nexoura-wk-card__media {
	background: var(--nx-gray-bg);
	overflow: hidden;
	width: 100%;
}

.nexoura-wk-card--full .nexoura-wk-card__media {
	width: 100%;
	height: 768px;
}

.nexoura-wk-card--half .nexoura-wk-card__media {
	width: 100%;
	height: 418px;
}

.nexoura-wk-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1);
	transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}

.nexoura-wk-card:hover .nexoura-wk-card__media img,
.nexoura-wk-card:focus-within .nexoura-wk-card__media img {
	transform: scale(1.06);
}

.nexoura-wk-card__footer {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	padding-top: 24.667px;
	border-top: 0.667px solid var(--nx-black);
	box-sizing: border-box;
	overflow: visible;
}

.nexoura-wk-card--full .nexoura-wk-card__footer {
	width: 100%;
	max-width: 100%;
}

.nexoura-wk-card__info {
	flex: 1;
	min-width: 0;
}

.nexoura-wk-card__name {
	margin: 0 0 8px;
	font-weight: 700;
	font-size: 30px;
	line-height: 36px;
	text-transform: uppercase;
}

.nexoura-wk-card__title-link {
	color: inherit;
	text-decoration: none;
}

.nexoura-wk-card__title-link:hover,
.nexoura-wk-card__title-link:focus-visible {
	color: inherit;
}

.nexoura-wk-card__type {
	margin: 0;
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	color: rgba(0, 0, 0, 0.5);
}

.nexoura-wk-card__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border: 1px solid var(--nx-black);
	border-radius: 100px;
	flex-shrink: 0;
	background: transparent;
	transition:
		background-color 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.nexoura-wk-card__btn:hover,
.nexoura-wk-card__btn:focus-visible {
	background-color: var(--nx-black);
	border-color: var(--nx-black);
	transform: rotate(-45deg);
}

.nexoura-wk-card__btn img {
	display: block;
	width: 24px;
	height: 24px;
	min-width: 24px;
	min-height: 24px;
	max-width: none;
	flex-shrink: 0;
	transition: filter 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.nexoura-wk-card__btn:hover img,
.nexoura-wk-card__btn:focus-visible img {
	filter: invert(1);
}

.nexoura-wk-grid--ready .nexoura-wk-card {
	opacity: 1;
	transform: none;
}

.nexoura-wk-grid--ready .nexoura-wk-card:nth-child(1) { transition-delay: 0.04s; }
.nexoura-wk-grid--ready .nexoura-wk-card:nth-child(2) { transition-delay: 0.1s; }
.nexoura-wk-grid--ready .nexoura-wk-card:nth-child(3) { transition-delay: 0.16s; }
.nexoura-wk-grid--ready .nexoura-wk-card:nth-child(4) { transition-delay: 0.22s; }
.nexoura-wk-grid--ready .nexoura-wk-card:nth-child(5) { transition-delay: 0.28s; }
.nexoura-wk-grid--ready .nexoura-wk-card:nth-child(6) { transition-delay: 0.34s; }

/* ─── CTA (full-bleed 1920 black; copy stays in 1552 safe area) ─── */
.nexoura-wk-cta {
	background: var(--nx-black);
	color: var(--nx-white);
	width: 100%;
	padding: 160px 0;
	box-sizing: border-box;
}

.nexoura-wk-cta__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	width: 100%;
	margin: 0;
	padding: 0;
	opacity: 0;
	transform: translateY(32px);
	transition:
		opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.nexoura-wk-cta--ready .nexoura-wk-cta__inner {
	opacity: 1;
	transform: none;
}

.nexoura-wk-cta__eyebrow {
	margin: 0 0 32px;
	font-weight: 700;
	font-size: 14px;
	line-height: 16px;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
}

.nexoura-wk-cta__title {
	position: relative;
	flex: none;
	align-self: stretch;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 307.19px;
	margin: 0 0 48px;
	padding: 0;
	box-sizing: border-box;
	font-family: var(--nx-font);
	font-weight: 700;
	font-size: 92px;
	line-height: 92px;
	letter-spacing: -6.4px;
	text-transform: uppercase;
	text-align: center;
	color: var(--nx-white);
}

.nexoura-wk-cta__title-line {
	display: block;
	width: 100%;
	text-align: center;
}

.nexoura-wk-cta__title-line--muted {
	color: #acb0b5;
}

.nexoura-wk-cta__link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-weight: 700;
	font-size: 16px;
	line-height: 20px;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: var(--nx-white);
	transition: opacity 0.25s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.nexoura-wk-cta__link:hover,
.nexoura-wk-cta__link:focus-visible {
	opacity: 0.82;
	transform: translateY(-2px);
}

.nexoura-wk-cta__link-icon {
	display: flex;
	align-items: center;
	justify-content: center;
}

.nexoura-wk-cta__link-icon img {
	width: 48px;
	height: 48px;
}

@media (prefers-reduced-motion: reduce) {
	.nexoura-wk-hero__title,
	.nexoura-wk-hero__aside,
	.nexoura-wk-card,
	.nexoura-wk-cta__inner {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.nexoura-wk-card__media img {
		transition: none;
	}

	.nexoura-wk-filters__link::after {
		transition: none;
	}
}

@media (max-width: 1600px) {
	.nexoura-wk-hero__title,
	.nexoura-wk-cta__title {
		font-size: 72px;
		line-height: 72px;
		letter-spacing: -5px;
		min-height: 240px;
	}
}

@media (max-width: 1200px) {
	body.nexoura-work {
		width: 100%;
		zoom: 1;
		transform: none;
	}

	body.nexoura-work .nexoura-work-page {
		width: 100%;
		margin: 0;
	}

	.nexoura-work-page > section {
		max-width: none;
		padding-left: var(--nx-gutter);
		padding-right: var(--nx-gutter);
	}

	body.nexoura-work .nexoura-full-bleed {
		width: 100%;
		max-width: none;
		margin-left: 0;
		margin-right: 0;
	}

	.nexoura-wk-hero {
		padding: 64px 0 48px;
	}

	.nexoura-wk-hero__inner {
		flex-direction: column;
		gap: 32px;
	}

	.nexoura-wk-hero__title,
	.nexoura-wk-hero__aside {
		flex: none;
		width: 100%;
	}

	.nexoura-wk-toolbar__inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 24px;
	}

	.nexoura-wk-filters {
		justify-content: flex-start;
	}

	.nexoura-wk-grid-section {
		padding: 64px 0 96px;
	}

	.nexoura-wk-grid {
		grid-template-columns: 1fr;
		column-gap: 0;
		row-gap: 64px;
	}

	.nexoura-wk-card--half,
	.nexoura-wk-card--half .nexoura-wk-card__media {
		width: 100%;
	}

	.nexoura-wk-card--full .nexoura-wk-card__media {
		height: min(768px, 92vw);
	}

	.nexoura-wk-card--half .nexoura-wk-card__media {
		height: min(418px, 56vw);
	}

	.nexoura-wk-cta {
		width: 100%;
		margin-left: auto;
		margin-right: auto;
		padding: 96px 0;
	}

	.nexoura-wk-cta__title {
		width: 100%;
		min-height: auto;
		font-size: 48px;
		line-height: 52px;
		letter-spacing: -3.35px;
	}
}

/* ═══════════════════════════════════════════════════════════════
   About page — Figma about @ 1920px (node 1547-1511)
   About mobile — see assets/css/about-mobile.css (≤767px, Figma 1922:128)
   ═══════════════════════════════════════════════════════════════ */

html:has(body.nexoura-about) {
	overflow-x: clip;
}

body.nexoura-about {
	position: relative;
	width: var(--nx-max);
	margin: 0 auto;
	font-family: var(--nx-font);
	font-size: 16px;
	line-height: 1.5;
	color: var(--nx-black);
	background: var(--nx-white);
	overflow-x: clip;
	-webkit-font-smoothing: antialiased;
}

body.nexoura-about a {
	color: inherit;
	text-decoration: none;
}

body.nexoura-about img {
	display: block;
	max-width: 100%;
}

body.nexoura-about #page,
body.nexoura-about .nexoura-about-page {
	width: 100%;
	max-width: none;
	margin: 0;
	overflow-x: clip;
}

.nexoura-about-page {
	padding-top: 122px;
}

/* ─── Hero ─── */
.nexoura-about-hero {
	padding: 128px var(--nx-gutter);
}

.nexoura-about-hero__inner {
	max-width: 1552px;
	margin: 0 auto;
}

.nexoura-about-hero__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 48px;
}

.nexoura-about-hero__title {
	margin: 0;
	flex: 0 1 780px;
	font-weight: 700;
	font-size: 92px;
	line-height: 92px;
	text-transform: uppercase;
	opacity: 0;
	transform: translateY(32px);
	transition:
		opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.nexoura-about-hero__title-line {
	display: block;
}

.nexoura-about-hero__aside {
	flex: 0 0 500px;
	opacity: 0;
	transform: translateY(24px);
	transition:
		opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.08s,
		transform 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.08s;
}

.nexoura-about-hero__lead {
	margin: 0;
	font-style: italic;
	font-weight: 400;
	font-size: 20px;
	line-height: 32px;
	color: #6a7282;
}

.nexoura-about-hero__rule {
	height: 1px;
	margin: 32px 0;
	background: var(--nx-gray-bg);
}

.nexoura-about-hero__meta {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	font-weight: 700;
	font-size: 14px;
	line-height: 14px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #d1d5dc;
}

.nexoura-about-hero__stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	margin-top: 128px;
	padding-top: 128px;
	border-top: 1px solid var(--nx-gray-bg);
}

.nexoura-about-stat {
	opacity: 0;
	transform: translateY(24px);
	transition:
		opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.nexoura-about-stat__value {
	display: block;
	font-weight: 700;
	font-size: 44px;
	line-height: 44px;
	color: #111111;
}

.nexoura-about-stat__label {
	display: block;
	margin-top: 8px;
	font-weight: 700;
	font-size: 14px;
	line-height: 14px;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: #99a1af;
}

.nexoura-about-stat__label-line {
	display: inline;
}

.nexoura-about-stat__label-line + .nexoura-about-stat__label-line::before {
	content: " ";
}

.nexoura-about-hero--ready .nexoura-about-hero__title,
.nexoura-about-hero--ready .nexoura-about-hero__aside {
	opacity: 1;
	transform: none;
}

.nexoura-about-hero--ready .nexoura-about-stat {
	opacity: 1;
	transform: none;
}

.nexoura-about-hero--ready .nexoura-about-stat:nth-child(1) { transition-delay: 0.12s; }
.nexoura-about-hero--ready .nexoura-about-stat:nth-child(2) { transition-delay: 0.2s; }
.nexoura-about-hero--ready .nexoura-about-stat:nth-child(3) { transition-delay: 0.28s; }
.nexoura-about-hero--ready .nexoura-about-stat:nth-child(4) { transition-delay: 0.36s; }

/* ─── Philosophy ─── */
.nexoura-about-philosophy {
	padding: 128px var(--nx-gutter);
}

.nexoura-about-philosophy__inner {
	display: flex;
	align-items: stretch;
	gap: 96px;
	max-width: 1552px;
	margin: 0 auto;
}

.nexoura-about-philosophy__media {
	flex: 0 0 728px;
	overflow: hidden;
	background: rgba(0, 0, 0, 0.05);
	opacity: 0;
	transform: translateX(-32px);
	transition:
		opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.nexoura-about-philosophy__photo {
	width: 100%;
	height: 815px;
	object-fit: cover;
	transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.nexoura-about-philosophy__content {
	flex: 1;
	min-width: 0;
}

.nexoura-about-philosophy__eyebrow {
	margin: 0 0 6px;
	font-weight: 700;
	font-size: 16px;
	line-height: 60px;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: #444444;
	opacity: 0;
	transform: translateY(20px);
	transition:
		opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.nexoura-about-philosophy__title {
	margin: 0 0 48px;
	font-weight: 700;
	font-size: 72px;
	line-height: 72px;
	letter-spacing: -3.6px;
	text-transform: uppercase;
	opacity: 0;
	transform: translateY(28px);
	transition:
		opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.06s,
		transform 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.06s;
}

.nexoura-about-philosophy__summary {
	margin: 0 0 31px;
	font-weight: 500;
	font-size: 20px;
	line-height: 30px;
	opacity: 0;
	transform: translateY(20px);
	transition:
		opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s,
		transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}

.nexoura-about-philosophy__body {
	margin-bottom: 31px;
	font-weight: 300;
	font-size: 14px;
	line-height: 22px;
	opacity: 0;
	transform: translateY(20px);
	transition:
		opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.14s,
		transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.14s;
}

.nexoura-about-philosophy__body p {
	margin: 0;
}

.nexoura-about-philosophy__body p + p {
	margin-top: 0;
}

.nexoura-about-philosophy__values {
	display: flex;
	gap: 96px;
	padding-top: 33px;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	opacity: 0;
	transform: translateY(20px);
	transition:
		opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.18s,
		transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.18s;
}

.nexoura-about-value__key {
	display: block;
	font-weight: 700;
	font-size: 16px;
	line-height: 26px;
	letter-spacing: 1.2px;
	text-transform: uppercase;
}

.nexoura-about-value__desc {
	display: block;
	margin-top: 8px;
	font-weight: 400;
	font-size: 16px;
	line-height: 26px;
	text-transform: uppercase;
}

.nexoura-about-philosophy--ready .nexoura-about-philosophy__media,
.nexoura-about-philosophy--ready .nexoura-about-philosophy__eyebrow,
.nexoura-about-philosophy--ready .nexoura-about-philosophy__title,
.nexoura-about-philosophy--ready .nexoura-about-philosophy__summary,
.nexoura-about-philosophy--ready .nexoura-about-philosophy__body,
.nexoura-about-philosophy--ready .nexoura-about-philosophy__values {
	opacity: 1;
	transform: none;
}

.nexoura-about-philosophy__media:hover .nexoura-about-philosophy__photo,
.nexoura-about-philosophy__media:focus-within .nexoura-about-philosophy__photo {
	transform: scale(1.04);
}

/* ─── Team ─── */
.nexoura-about-team {
	padding: 128px var(--nx-gutter);
}

.nexoura-about-team__inner {
	max-width: 1400px;
	margin: 0 auto;
}

.nexoura-about-team__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 48px;
	margin-bottom: 128px;
}

.nexoura-about-team__eyebrow {
	margin: 0 0 6px;
	font-weight: 700;
	font-size: 16px;
	line-height: 60px;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: #d1d5dc;
}

.nexoura-about-team__title {
	margin: 0;
	font-weight: 700;
	font-size: 72px;
	line-height: 72px;
	letter-spacing: -3.6px;
	text-transform: uppercase;
}

.nexoura-about-team__title span {
	display: block;
}

.nexoura-about-team__lead {
	margin: 0;
	flex: 0 0 320px;
	font-style: italic;
	font-weight: 400;
	font-size: 20px;
	line-height: 32px;
	color: #6a7282;
}

.nexoura-about-team__lead span {
	display: block;
}

.nexoura-about-team__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 4px;
}

.nexoura-team-card {
	position: relative;
	overflow: hidden;
	min-height: 463px;
	background: #f9fafb;
	cursor: pointer;
	opacity: 0;
	transform: translateY(32px);
	transition:
		opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.nexoura-team-card__photo {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.nexoura-team-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0.8) 0%,
		rgba(0, 0, 0, 0) 50%,
		rgba(0, 0, 0, 0) 100%
	);
	opacity: 0.85;
	transition: opacity 0.45s ease;
}

.nexoura-team-card__info {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 32px;
	z-index: 1;
	transform: translateY(8px);
	transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.nexoura-team-card__name {
	margin: 0;
	font-weight: 700;
	font-size: 24px;
	line-height: 32px;
	text-transform: uppercase;
	color: var(--nx-white);
}

.nexoura-team-card__role {
	margin: 8px 0 0;
	font-weight: 700;
	font-size: 14px;
	line-height: 14px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--nx-white);
}

.nexoura-team-card--is-hovered .nexoura-team-card__photo,
.nexoura-team-card:focus-within .nexoura-team-card__photo {
	transform: scale(1.08);
}

.nexoura-team-card--is-hovered .nexoura-team-card__overlay,
.nexoura-team-card:focus-within .nexoura-team-card__overlay {
	opacity: 1;
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0.55) 0%,
		rgba(0, 0, 0, 0.15) 45%,
		rgba(0, 0, 0, 0.75) 100%
	);
}

.nexoura-team-card--is-hovered .nexoura-team-card__info,
.nexoura-team-card:focus-within .nexoura-team-card__info {
	transform: translateY(0);
}

.nexoura-about-team__header {
	opacity: 0;
	transform: translateY(28px);
	transition:
		opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.nexoura-about-team--ready .nexoura-team-card {
	opacity: 1;
	transform: none;
}

.nexoura-about-team--ready .nexoura-about-team__header {
	opacity: 1;
	transform: none;
}

.nexoura-about-team--ready .nexoura-team-card:nth-child(1) { transition-delay: 0.06s; }
.nexoura-about-team--ready .nexoura-team-card:nth-child(2) { transition-delay: 0.12s; }
.nexoura-about-team--ready .nexoura-team-card:nth-child(3) { transition-delay: 0.18s; }
.nexoura-about-team--ready .nexoura-team-card:nth-child(4) { transition-delay: 0.24s; }

/* ─── Hub ─── */
.nexoura-about-hub {
	background: var(--nx-footer-bg);
	color: var(--nx-white);
	padding: 128px var(--nx-gutter);
	border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.nexoura-about-hub__inner {
	display: flex;
	align-items: stretch;
	gap: 96px;
	max-width: 1552px;
	margin: 0 auto;
}

.nexoura-about-hub__content {
	flex: 0 0 728px;
}

.nexoura-about-hub__eyebrow {
	margin: 0 0 6px;
	font-weight: 700;
	font-size: 16px;
	line-height: 60px;
	letter-spacing: 4px;
	text-transform: uppercase;
}

.nexoura-about-hub__title {
	margin: 0 0 64px;
	font-weight: 700;
	font-size: 72px;
	line-height: 72px;
	letter-spacing: -3.6px;
	text-transform: uppercase;
}

.nexoura-about-hub__title span {
	display: block;
}

.nexoura-about-hub__title-muted {
	color: #acb0b5;
}

.nexoura-about-hub__contacts {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 48px 76px;
}

.nexoura-about-contact__head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
}

.nexoura-about-contact__head img {
	width: 32px;
	height: 32px;
	filter: brightness(0) invert(1);
}

.nexoura-about-contact__head span {
	font-weight: 700;
	font-size: 14px;
	line-height: 14px;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.nexoura-about-contact__body {
	margin: 0;
	font-style: normal;
	font-weight: 300;
	font-size: 16px;
	line-height: 24px;
}

.nexoura-about-contact__body--strong {
	font-weight: 700;
	text-transform: uppercase;
}

.nexoura-about-contact__body a {
	transition: opacity 0.2s ease;
}

.nexoura-about-contact__body a:hover,
.nexoura-about-contact__body a:focus {
	opacity: 0.75;
}

.nexoura-about-hub__map {
	position: relative;
	flex: 1;
	min-height: 519px;
	overflow: hidden;
	background: #e5e7eb;
	opacity: 0;
	transform: translateX(32px);
	transition:
		opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.nexoura-about-hub__map-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.65;
}

.nexoura-about-hub__map-card {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: min(100% - 48px, 308px);
	padding: 32px;
	text-align: center;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.nexoura-about-hub__map-label {
	margin: 0 0 16px;
	font-weight: 700;
	font-size: 9px;
	line-height: 14px;
	letter-spacing: 0.9px;
	text-transform: uppercase;
}

.nexoura-about-hub__map-title {
	margin: 0;
	font-weight: 700;
	font-size: 30px;
	line-height: 36px;
	text-transform: uppercase;
}

.nexoura-about-hub__content {
	opacity: 0;
	transform: translateY(28px);
	transition:
		opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.nexoura-about-hub--ready .nexoura-about-hub__content,
.nexoura-about-hub--ready .nexoura-about-hub__map {
	opacity: 1;
	transform: none;
}

.nexoura-about-hub--ready .nexoura-about-hub__map {
	transition-delay: 0.1s;
}

.nexoura-about-hub__map:hover .nexoura-about-hub__map-card,
.nexoura-about-hub__map:focus-within .nexoura-about-hub__map-card {
	transform: translate(-50%, -50%) scale(1.03);
}

@media (prefers-reduced-motion: reduce) {
	.nexoura-about-hero__title,
	.nexoura-about-hero__aside,
	.nexoura-about-stat,
	.nexoura-about-philosophy__media,
	.nexoura-about-philosophy__eyebrow,
	.nexoura-about-philosophy__title,
	.nexoura-about-philosophy__summary,
	.nexoura-about-philosophy__body,
	.nexoura-about-philosophy__values,
	.nexoura-about-team__header,
	.nexoura-team-card,
	.nexoura-about-hub__content,
	.nexoura-about-hub__map {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

@media (max-width: 1600px) {
	.nexoura-about-hero__title,
	.nexoura-about-philosophy__title,
	.nexoura-about-team__title,
	.nexoura-about-hub__title {
		font-size: 72px;
		line-height: 72px;
	}
}

@media (max-width: 1200px) {
	body.nexoura-about {
		width: 100%;
		zoom: 1;
		transform: none;
	}

	.nexoura-about-page {
		padding-top: 0;
	}

	.nexoura-about-hero,
	.nexoura-about-philosophy,
	.nexoura-about-team,
	.nexoura-about-hub {
		padding: 64px var(--nx-gutter);
	}

	.nexoura-about-hero__top,
	.nexoura-about-philosophy__inner,
	.nexoura-about-team__header,
	.nexoura-about-hub__inner {
		flex-direction: column;
		gap: 32px;
	}

	.nexoura-about-hero__title,
	.nexoura-about-hero__aside,
	.nexoura-about-philosophy__media,
	.nexoura-about-team__lead,
	.nexoura-about-hub__content {
		flex: none;
		width: 100%;
	}

	.nexoura-about-hero__stats {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px;
		margin-top: 64px;
		padding-top: 64px;
	}

	.nexoura-about-philosophy__photo {
		height: 420px;
	}

	.nexoura-about-philosophy__values {
		flex-direction: column;
		gap: 24px;
	}

	.nexoura-about-team__header {
		margin-bottom: 64px;
	}

	.nexoura-about-team__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.nexoura-team-card {
		min-height: 360px;
	}

	.nexoura-about-hub__contacts {
		grid-template-columns: 1fr;
	}

	.nexoura-about-hub__map {
		min-height: 320px;
	}
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ═══════════════════════════════════════════════════════════════
   Search overlay — Figma node 1547-2603
   ═══════════════════════════════════════════════════════════════ */

.nexoura-search {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: stretch;
	justify-content: center;
	pointer-events: none;
}

.nexoura-search__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	opacity: 0;
	transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.nexoura-search__panel {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: var(--nx-max);
	min-height: 100%;
	background: var(--nx-white);
	padding: 128px var(--nx-search-gutter) 96px;
	box-sizing: border-box;
	transform: translateY(-32px);
	opacity: 0;
	transition:
		opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.nexoura-search--open {
	pointer-events: auto;
}

.nexoura-search--open .nexoura-search__backdrop {
	opacity: 1;
}

.nexoura-search--open .nexoura-search__panel {
	opacity: 1;
	transform: none;
}

.nexoura-search__close {
	position: absolute;
	top: 48px;
	right: var(--nx-search-gutter);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	padding: 0;
	border: none;
	border-radius: 0;
	background: transparent;
	color: var(--nx-black);
	cursor: pointer;
	transition: opacity 0.25s ease;
}

.nexoura-search__close:hover,
.nexoura-search__close:focus-visible {
	opacity: 0.55;
}

.nexoura-search__inner {
	width: 100%;
	margin: 0;
}

.nexoura-search__row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 48px;
	padding-bottom: 24px;
	border-bottom: 2px solid var(--nx-black);
}

.nexoura-search__input {
	flex: 1 1 auto;
	min-width: 0;
	padding: 0;
	border: none;
	background: transparent;
	font-family: var(--nx-font);
	font-weight: 700;
	font-size: 92px;
	line-height: 0.95;
	letter-spacing: -2px;
	color: var(--nx-black);
	caret-color: var(--nx-black);
	outline: none;
	-webkit-appearance: none;
	appearance: none;
}

.nexoura-search__input::-webkit-search-decoration,
.nexoura-search__input::-webkit-search-results-button,
.nexoura-search__input::-webkit-search-results-decoration {
	-webkit-appearance: none;
	appearance: none;
	display: none;
}

.nexoura-search__input::-webkit-search-cancel-button {
	-webkit-appearance: none;
	appearance: none;
	display: none;
}

.nexoura-search__input::-ms-clear {
	display: none;
	width: 0;
	height: 0;
}

.nexoura-search__input::placeholder {
	color: rgba(0, 0, 0, 0.28);
	font-weight: 600;
}

.nexoura-search__submit {
	flex: 0 0 auto;
	padding: 0;
	border: none;
	background: transparent;
	font-family: var(--nx-font);
	font-weight: 700;
	font-size: 92px;
	line-height: 0.95;
	letter-spacing: -2px;
	color: var(--nx-black);
	cursor: pointer;
	transition: opacity 0.25s ease;
}

.nexoura-search__submit:hover,
.nexoura-search__submit:focus-visible {
	opacity: 0.55;
}

.nexoura-search__suggestions {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 26px;
	margin-top: 48px;
	padding: 0;
}

.nexoura-search__suggestions-label {
	margin: 0;
	font-weight: 400;
	font-size: 16px;
	line-height: 26px;
	text-transform: uppercase;
	color: rgba(0, 0, 0, 0.3);
}

.nexoura-search__tags {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 26px;
	padding: 0;
}

.nexoura-search__tag {
	padding: 0;
	border: none;
	border-radius: 0;
	background: transparent;
	font-family: var(--nx-font);
	font-weight: 700;
	font-size: 18px;
	line-height: 26px;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: var(--nx-black);
	cursor: pointer;
	transition: opacity 0.25s ease;
}

.nexoura-search__tag:hover,
.nexoura-search__tag:focus-visible {
	opacity: 0.55;
}

body.nexoura-search-open {
	overflow: hidden;
}

/* ═══════════════════════════════════════════════════════════════
   Search results page — Figma node 1547-2679
   Search mobile — see assets/css/search-mobile.css (≤767px, Figma 2351:855)
   ═══════════════════════════════════════════════════════════════ */

html:has(body.nexoura-search-page-body) {
	overflow-x: clip;
}

body.nexoura-search-page-body {
	position: relative;
	width: var(--nx-max);
	margin: 0 auto;
	font-family: var(--nx-font);
	font-size: 16px;
	line-height: 1.5;
	color: var(--nx-black);
	background: var(--nx-white);
	overflow-x: clip;
	-webkit-font-smoothing: antialiased;
}

body.nexoura-search-page-body a {
	color: inherit;
	text-decoration: none;
}

body.nexoura-search-page-body img {
	display: block;
	max-width: 100%;
}

body.nexoura-search-page-body #page,
body.nexoura-search-page-body .nexoura-search-page {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	overflow-x: clip;
	box-sizing: border-box;
}

.nexoura-search-page > section {
	width: 100%;
	max-width: none;
	margin: 0;
	padding-left: var(--nx-search-gutter);
	padding-right: var(--nx-search-gutter);
	box-sizing: border-box;
}

.nexoura-nav--search {
	--nx-nav-bg: rgba(255, 255, 255, 0.72);
	--nx-nav-border: rgba(0, 0, 0, 0.08);
	--nx-cta-bg: transparent;
	color: var(--nx-black);
}

body.nexoura-search-page-body .nexoura-nav__inner {
	padding: 0 var(--nx-search-gutter);
}

.nexoura-nav--search .nexoura-nav__logo img,
.nexoura-nav--search .nexoura-nav__search img,
.nexoura-nav--search .nexoura-nav__cta img,
.nexoura-nav--search .nexoura-nav__menu-toggle img {
	filter: brightness(0);
}

.nexoura-nav--search .nexoura-nav__cta-inner {
	background: rgba(0, 0, 0, 0.004);
	border: 1px solid var(--nx-black);
	box-shadow: none;
}

.nexoura-nav--search .nexoura-nav__cta:hover .nexoura-nav__cta-inner,
.nexoura-nav--search .nexoura-nav__cta:focus .nexoura-nav__cta-inner {
	background: rgba(0, 0, 0, 0.06);
}

.nexoura-sr-head {
	position: relative;
	padding: 144px 0 24px;
}

.nexoura-sr-head__inner {
	position: relative;
	opacity: 0;
	transform: translateY(28px);
	transition:
		opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.nexoura-sr-head--ready .nexoura-sr-head__inner {
	opacity: 1;
	transform: none;
}

.nexoura-sr-head__close {
	position: absolute;
	top: -40px;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	padding: 0;
	border: none;
	background: transparent;
	color: var(--nx-black);
	cursor: pointer;
	transition: opacity 0.25s ease;
}

.nexoura-sr-head__close:hover,
.nexoura-sr-head__close:focus-visible {
	opacity: 0.55;
}

.nexoura-sr-head__form {
	margin: 48px 0 0;
}

.nexoura-sr-head__count {
	margin: 24px 0 0;
	font-weight: 700;
	font-size: 16px;
	line-height: 16px;
	letter-spacing: 6px;
	text-transform: uppercase;
	color: var(--nx-black);
}

.nexoura-sr-grid-section {
	padding: 0 0 130px;
}

.nexoura-sr-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	row-gap: 64px;
	column-gap: 20px;
	list-style: none;
	margin: 32px 0 0;
	padding: 0;
}

.nexoura-sr-card {
	opacity: 0;
	transform: translateY(20px);
	transition:
		opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.nexoura-sr-grid--ready .nexoura-sr-card {
	opacity: 1;
	transform: none;
}

.nexoura-sr-grid--ready .nexoura-sr-card:nth-child(1) { transition-delay: 0.04s; }
.nexoura-sr-grid--ready .nexoura-sr-card:nth-child(2) { transition-delay: 0.1s; }
.nexoura-sr-grid--ready .nexoura-sr-card:nth-child(3) { transition-delay: 0.16s; }
.nexoura-sr-grid--ready .nexoura-sr-card:nth-child(4) { transition-delay: 0.22s; }
.nexoura-sr-grid--ready .nexoura-sr-card:nth-child(5) { transition-delay: 0.28s; }
.nexoura-sr-grid--ready .nexoura-sr-card:nth-child(6) { transition-delay: 0.34s; }

.nexoura-sr-card__link {
	display: flex;
	flex-direction: column;
	gap: 20px;
	color: inherit;
	text-decoration: none;
}

.nexoura-sr-card__media {
	display: block;
	aspect-ratio: 4 / 3;
	background: var(--nx-gray-bg);
	overflow: hidden;
}

.nexoura-sr-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1);
	transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.nexoura-sr-card__link:hover .nexoura-sr-card__media img,
.nexoura-sr-card__link:focus-visible .nexoura-sr-card__media img {
	transform: scale(1.06);
}

.nexoura-sr-card__name {
	display: block;
	font-weight: 700;
	font-size: 20px;
	line-height: 24px;
	text-transform: uppercase;
}

.nexoura-sr-card__type {
	display: block;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 0.4px;
	color: rgba(0, 0, 0, 0.5);
}

.nexoura-sr-grid-section .nexoura-sr-empty {
	padding-top: 48px;
}

.nexoura-sr-empty {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	max-width: 640px;
	opacity: 0;
	transform: translateY(24px);
	transition:
		opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.nexoura-sr-empty--ready {
	opacity: 1;
	transform: none;
}

.nexoura-sr-empty__title {
	margin: 0;
	font-weight: 700;
	font-size: 36px;
	line-height: 40px;
	text-transform: uppercase;
}

.nexoura-sr-empty__lead {
	margin: 0;
	font-size: 18px;
	line-height: 28px;
	color: #6a7282;
}

.nexoura-sr-empty__link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-top: 8px;
	font-weight: 700;
	font-size: 14px;
	line-height: 16px;
	letter-spacing: 1.2px;
	text-transform: uppercase;
}

.nexoura-sr-empty__link img {
	transform: rotate(90deg);
}

.nexoura-sr-empty__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 8px;
}

.nexoura-sr-empty__tag {
	padding: 10px 18px;
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 100px;
	font-weight: 600;
	font-size: 13px;
	line-height: 16px;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	transition:
		background-color 0.2s ease,
		border-color 0.2s ease;
}

.nexoura-sr-empty__tag:hover,
.nexoura-sr-empty__tag:focus-visible {
	background: rgba(0, 0, 0, 0.04);
	border-color: var(--nx-black);
}

@media (max-width: 1200px) {
	.nexoura-search__panel {
		padding: 96px 24px 64px;
	}

	.nexoura-search__close {
		top: 24px;
		right: 24px;
	}

	.nexoura-search__input,
	.nexoura-search__submit {
		font-size: 48px;
		letter-spacing: -1px;
	}

	.nexoura-search__row {
		flex-wrap: wrap;
		gap: 16px;
	}

	body.nexoura-search-page-body .nexoura-nav__inner {
		padding: 0 24px;
	}

	.nexoura-search-page > section {
		padding-left: 24px;
		padding-right: 24px;
	}

	.nexoura-sr-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	#nexoura-search-input,
	.nexoura-search__input,
	.nexoura-search__submit {
		font-size: 16px;
		line-height: 1.2;
		letter-spacing: 0;
	}

	.nexoura-search__suggestions-label,
	.nexoura-search__tag {
		font-size: 16px;
		line-height: 26px;
	}
}

@media (max-width: 640px) {
	.nexoura-sr-grid {
		grid-template-columns: minmax(0, 1fr);
	}
}

/* ═══════════════════════════════════════════════════════════════
   Contact / inquiry page — Figma node 1798-21
   ═══════════════════════════════════════════════════════════════ */

html:has(body.nexoura-contact) {
	overflow-x: clip;
}

body.nexoura-contact {
	position: relative;
	width: var(--nx-max);
	margin: 0 auto;
	font-family: var(--nx-font);
	font-size: 16px;
	line-height: 1.5;
	color: var(--nx-black);
	background: var(--nx-white);
	overflow-x: clip;
	-webkit-font-smoothing: antialiased;
}

body.nexoura-contact a {
	color: inherit;
	text-decoration: none;
}

body.nexoura-contact img {
	display: block;
	max-width: 100%;
}

body.nexoura-contact #page,
body.nexoura-contact .nexoura-contact-page {
	width: 100%;
	max-width: none;
	margin: 0;
	overflow-x: clip;
}

.nexoura-contact-page {
	position: relative;
	z-index: 2;
	padding-top: 122px;
}

body.nexoura-contact .nexoura-footer {
	z-index: 1;
}

body.nexoura-contact .nexoura-contact-shell__form-wrap,
body.nexoura-contact .nexoura-contact-form,
body.nexoura-contact .nexoura-contact-form__stack {
	overflow: visible;
}

body.nexoura-contact .nexoura-contact-select__menu {
	z-index: 100;
}

/* ─── Shell: title section + body (Figma 1798-21) ─── */
.nexoura-contact-shell {
	padding: 0;
}

.nexoura-contact-shell__inner {
	width: 100%;
	max-width: var(--nx-max);
	margin: 0 auto;
	opacity: 0;
	transform: translateY(28px);
	transition:
		opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.nexoura-contact-shell--ready .nexoura-contact-shell__inner {
	opacity: 1;
	transform: none;
}

html:not(.nexoura-js) .nexoura-contact-shell__inner {
	opacity: 1;
	transform: none;
}

.nexoura-contact-title {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 128px var(--nx-gutter);
	gap: 96px;
	min-height: 440px;
	background: var(--nx-white);
	align-self: stretch;
}

.nexoura-contact-title__container {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 47.33px;
	width: 100%;
	max-width: 1552px;
}

.nexoura-contact-title__heading {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
	max-width: 1552px;
	min-height: 184px;
	margin: 0;
	font-style: normal;
	font-weight: 700;
	font-size: 92px;
	line-height: 92px;
	text-transform: uppercase;
	color: var(--nx-black);
}

.nexoura-contact-title__line {
	display: block;
}

.nexoura-contact-shell__body {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
	width: 100%;
	max-width: var(--nx-max);
	margin: 0 auto;
	padding: 0 var(--nx-gutter) 200px;
	gap: 30px;
	min-height: 918px;
	isolation: isolate;
}

.nexoura-contact-shell__intro {
	position: absolute;
	left: var(--nx-gutter);
	top: 0;
	width: 652px;
	min-width: 0;
	overflow: visible;
}

.nexoura-contact-shell__lead {
	margin: 0;
	max-width: 652px;
	font-style: italic;
	font-weight: 500;
	font-size: 28px;
	line-height: 48px;
	color: var(--nx-black);
}

.nexoura-contact-mark {
	position: absolute;
	left: 0;
	top: 252px;
	z-index: 1;
	width: 32px;
}

.nexoura-contact-mark__graphic {
	display: block;
	width: 32px;
	height: 488px;
}

.nexoura-contact-shell__form-wrap {
	flex: none;
	width: 700px;
	max-width: 700px;
	overflow: visible;
}

.nexoura-contact-notice {
	margin: 0 0 48px;
	padding: 20px 24px;
	font-size: 16px;
	line-height: 26px;
	border: 1px solid var(--nx-gray-bg);
	background: var(--nx-zinc-100);
}

.nexoura-contact-notice--success {
	border-color: rgba(34, 120, 70, 0.22);
	background: #f0faf4;
}

.nexoura-contact-notice--error {
	border-color: rgba(180, 40, 40, 0.25);
	background: #fff5f5;
}

.nexoura-contact-notice a {
	text-decoration: underline;
}

.nexoura-contact-form {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 40px;
	width: 700px;
}

.nexoura-contact-form__stack {
	display: flex;
	flex-direction: column;
	gap: 40px;
	width: 100%;
	overflow: visible;
}

.nexoura-contact-form__stack:has(.nexoura-contact-select--open) {
	position: relative;
	z-index: 20;
}

.nexoura-contact-form__row {
	display: flex;
	gap: 30px;
	width: 100%;
}

.nexoura-contact-form__row .nexoura-contact-field {
	flex: 1 1 335px;
	min-width: 0;
}

.nexoura-contact-field {
	display: flex;
	flex-direction: column;
}

.nexoura-contact-field:has(.nexoura-contact-select--open) {
	position: relative;
	z-index: 21;
}

.nexoura-contact-field__control {
	width: 100%;
	box-sizing: border-box;
	padding: 24px 0;
	height: 66px;
	border: none;
	border-bottom: 1px solid var(--nx-black);
	border-radius: 0;
	background: #fff;
	font-family: var(--nx-font);
	font-weight: 400;
	font-size: 18px;
	line-height: 18px;
	color: var(--nx-black);
	outline: none;
	transition: border-color 0.25s ease;
	-webkit-appearance: none;
	appearance: none;
}

.nexoura-contact-field__control::placeholder {
	color: #999;
	font-weight: 400;
}

.nexoura-contact-field__control:focus {
	border-bottom-color: var(--nx-black);
}

.nexoura-contact-field__control--area {
	height: 210px;
	min-height: 210px;
	padding: 24px 0 168px;
	overflow: hidden;
	resize: none;
}

.nexoura-contact-select {
	--nx-select-blur: 12px;
	--nx-select-bg: rgba(255, 255, 255, 0.72);
	--nx-select-border: rgba(0, 0, 0, 0.08);
	position: relative;
	height: 66px;
}

.nexoura-contact-select--open {
	z-index: 40;
}

.nexoura-contact-select__input {
	width: 100%;
	box-sizing: border-box;
	padding: 21px 36px 21px 0;
	height: 66px;
	border: none;
	border-bottom: 1px solid var(--nx-black);
	border-radius: 0;
	background: #fff;
	font-family: var(--nx-font);
	font-weight: 400;
	font-size: 18px;
	line-height: 18px;
	color: var(--nx-black);
	cursor: pointer;
	outline: none;
	transition: border-color 0.25s ease;
	-webkit-appearance: none;
	appearance: none;
}

.nexoura-contact-select__input:focus {
	border-bottom-color: var(--nx-black);
}

.nexoura-contact-select__input:invalid {
	color: #999;
}

.nexoura-contact-select__input option {
	color: var(--nx-black);
	background: #fff;
}

.nexoura-contact-select__input--native {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	pointer-events: none;
}

.nexoura-contact-select__trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	width: 100%;
	box-sizing: border-box;
	padding: 21px 0;
	height: 66px;
	border: none;
	border-bottom: 1px solid var(--nx-black);
	border-radius: 0;
	background: #fff;
	font-family: var(--nx-font);
	font-weight: 400;
	font-size: 18px;
	line-height: 18px;
	color: var(--nx-black);
	cursor: pointer;
	text-align: left;
	transition: border-color 0.25s ease;
}

.nexoura-contact-select__trigger:focus-visible,
.nexoura-contact-select--open .nexoura-contact-select__trigger {
	border-bottom-color: var(--nx-black);
	outline: none;
}

.nexoura-contact-select__label {
	flex: 1;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.nexoura-contact-select__label--placeholder {
	color: #999;
}

.nexoura-contact-select__menu {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	right: 0;
	z-index: 30;
	margin: 0;
	padding: 6px;
	list-style: none;
	background: var(--nx-select-bg);
	border: 1px solid var(--nx-select-border);
	border-radius: 2px;
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
	backdrop-filter: blur(var(--nx-select-blur)) saturate(160%);
	-webkit-backdrop-filter: blur(var(--nx-select-blur)) saturate(160%);
	opacity: 0;
	transform: translateY(-6px);
	pointer-events: none;
	transition:
		opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
	max-height: 280px;
	overflow-y: auto;
	overscroll-behavior: contain;
}

.nexoura-contact-select__menu:not([hidden]) {
	opacity: 1;
	transform: none;
	pointer-events: auto;
}

.nexoura-contact-select__option {
	display: block;
	width: 100%;
	padding: 14px 18px;
	margin: 0;
	border: none;
	border-radius: 2px;
	background: transparent;
	font-family: var(--nx-font);
	font-weight: 400;
	font-size: 17px;
	line-height: 22px;
	text-align: left;
	color: var(--nx-black);
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.nexoura-contact-select__menu li + li {
	margin-top: 2px;
}

.nexoura-contact-select__option:hover,
.nexoura-contact-select__option:focus-visible {
	background: rgba(0, 0, 0, 0.05);
	outline: none;
}

.nexoura-contact-select__option--active {
	background: rgba(0, 0, 0, 0.06);
	font-weight: 500;
}

.nexoura-contact-select__arrow {
	position: static;
	flex: 0 0 auto;
	width: 24px;
	height: 24px;
	margin: 0;
	pointer-events: none;
	object-fit: contain;
	transform: none;
	transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.nexoura-contact-select--open .nexoura-contact-select__arrow {
	transform: rotate(180deg);
}

.nexoura-contact-form__actions {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: flex-end;
	width: 100%;
	margin-top: 0;
}

.nexoura-contact-submit {
	padding: 0;
	border: none;
	background: transparent;
	cursor: pointer;
	transition: opacity 0.25s ease;
}

.nexoura-contact-submit:hover,
.nexoura-contact-submit:focus-visible {
	opacity: 0.72;
}

.nexoura-contact-submit__inner {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	box-sizing: border-box;
	min-width: 238px;
	height: 58px;
	padding: 20px 34px;
	border: 1px solid var(--nx-black);
	font-family: var(--nx-font);
	font-weight: 700;
	font-size: 18px;
	line-height: 18px;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: var(--nx-black);
	background: rgba(0, 0, 0, 0.004);
}

.nexoura-contact-submit__inner img {
	width: 12px;
	height: 16px;
	transform: rotate(90deg);
	filter: brightness(0);
}

@media (prefers-reduced-motion: reduce) {
	.nexoura-contact-shell__inner {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.nexoura-contact-select__menu,
	.nexoura-contact-select__arrow,
	.nexoura-contact-select__input,
	.nexoura-contact-select__trigger {
		transition: none;
	}

	.nexoura-contact-select__menu {
		transform: none;
	}
}

@media (max-width: 1600px) {
	.nexoura-contact-title__heading {
		font-size: 72px;
		line-height: 72px;
		min-height: 144px;
	}
}

@media (max-width: 1200px) {
	body.nexoura-contact {
		width: 100%;
		zoom: 1;
		transform: none;
	}

	body.nexoura-contact .nexoura-contact-page {
		width: 100%;
		margin: 0;
	}

	.nexoura-contact-title {
		padding: 96px var(--nx-gutter);
		min-height: auto;
		gap: 64px;
	}

	.nexoura-contact-shell__body {
		min-height: auto;
		padding: 0 var(--nx-gutter) 200px;
		align-items: stretch;
	}

	.nexoura-contact-shell__intro {
		position: relative;
		left: auto;
		width: 100%;
		max-width: 652px;
		margin-bottom: 56px;
	}

	.nexoura-contact-mark {
		position: relative;
		top: auto;
		left: auto;
		margin-top: 48px;
	}

	.nexoura-contact-mark__graphic {
		height: 200px;
		width: auto;
	}

	.nexoura-contact-shell__form-wrap,
	.nexoura-contact-form {
		width: 100%;
		max-width: 700px;
		align-self: flex-end;
	}

	.nexoura-contact-form__row {
		flex-direction: column;
		gap: 40px;
	}
}

@media (max-width: 640px) {
	.nexoura-contact-title {
		padding: 64px 24px;
		gap: 48px;
	}

	.nexoura-contact-title__heading {
		font-size: 48px;
		line-height: 48px;
		min-height: 96px;
	}

	.nexoura-contact-shell__body {
		padding: 0 24px 64px;
	}
}

/* Contact mobile — see assets/css/contact-mobile.css (≤767px, Figma 2354:994) */

/* ═══════════════════════════════════════════════════════════════
   Work detail — Figma @ 1920px (node 1547-2420)
   Page 128px T/B only · 64px from edge via 1792px centered shell
   ═══════════════════════════════════════════════════════════════ */

html:has(body.nexoura-work-detail) {
	overflow-x: clip;
}

body.nexoura-work-detail {
	position: relative;
	width: 100%;
	max-width: none;
	margin: 0;
	--nx-gutter: 64px;
	--nx-content: calc(var(--nx-max) - 128px);
	font-family: var(--nx-font);
	font-size: 16px;
	line-height: 1.5;
	color: var(--nx-black);
	background: var(--nx-white);
	overflow-x: clip;
	-webkit-font-smoothing: antialiased;
}

body.nexoura-work-detail a {
	color: inherit;
	text-decoration: none;
}

body.nexoura-work-detail img {
	display: block;
	max-width: 100%;
}

body.nexoura-work-detail #page,
body.nexoura-work-detail .nexoura-wd-page {
	width: 100%;
	max-width: none;
	margin: 0;
	overflow-x: clip;
	box-sizing: border-box;
}

.nexoura-wd-page {
	--nx-wd-safe: 64px;
	--nx-wd-pad-y: 128px;
	--nx-wd-content: 1792px;
	--nx-wd-gap: 32px;
	--nx-wd-media-gap: 10px;
	--nx-wd-text: 800px;
	--nx-wd-img-single-w: 1792px;
	--nx-wd-img-single-h: 1266px;
	--nx-wd-img-double-w: 890px;
	--nx-wd-img-double-h: 890px;
	--nx-wd-img-triple-w: 590px;
	--nx-wd-img-triple-h: 876px;
	--nx-wd-img-quad-w: 890px;
	--nx-wd-img-quad-h: 640px;
	box-sizing: border-box;
	padding-top: var(--nx-wd-pad-y);
	padding-bottom: var(--nx-wd-pad-y);
	padding-left: 0;
	padding-right: 0;
}

.nexoura-wd-shell {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 64px;
	width: 100%;
	max-width: var(--nx-wd-content);
	margin: 0 auto;
	padding: 0;
	box-sizing: border-box;
}

.nexoura-wd-shell > * {
	width: 100%;
	max-width: 100%;
	min-width: 0;
}

.nexoura-wd-next {
	--nx-wd-next-pad-y: 128px;
	--nx-wd-next-pad-x: 184px;
	box-sizing: border-box;
	padding: var(--nx-wd-next-pad-y) var(--nx-wd-next-pad-x);
}

.nexoura-wd-next .nexoura-wd-shell {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
}

body.nexoura-work-detail .nexoura-footer {
	padding: 80px 184px;
}

/* ─── Head ─── */
.nexoura-wd-head {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
	width: 100%;
}

.nexoura-wd-head__title {
	margin: 0;
	font-weight: 700;
	font-size: 72px;
	line-height: 72px;
	letter-spacing: -3.6px;
	color: #111111;
}

.nexoura-wd-meta {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}

.nexoura-wd-meta__tags {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 8px;
}

.nexoura-wd-meta__tag {
	box-sizing: border-box;
	padding: 4px 8px;
	border: 1px solid #e4e4e7;
	font-weight: 700;
	font-size: 12px;
	line-height: 12px;
	letter-spacing: 0.9px;
	text-transform: capitalize;
	color: #000000;
}

.nexoura-wd-meta__date,
.nexoura-wd-meta__service {
	font-weight: 700;
	font-size: 14px;
	line-height: 14px;
	letter-spacing: 2.2px;
	text-transform: uppercase;
	color: #71717b;
}

/* ─── Hero cover (single: full safe width) ─── */
.nexoura-wd-cover {
	display: block;
	width: 100%;
	height: auto;
	max-height: var(--nx-wd-img-single-h);
	margin: 0;
	overflow: hidden;
}

.nexoura-wd-cover__grid {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: var(--nx-wd-media-gap);
	width: 100%;
	max-width: 100%;
}

.nexoura-wd-cover__cell {
	flex: 1 1 0;
	min-width: 0;
	height: auto;
	aspect-ratio: 590 / 876;
	max-height: var(--nx-wd-img-triple-h);
	overflow: hidden;
}

.nexoura-wd-cover__cell img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nexoura-wd-cover__photo {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ─── Story blocks ─── */
.nexoura-wd-story {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 64px;
	width: 100%;
}

.nexoura-wd-block {
	width: 100%;
}

.nexoura-wd-reveal,
.nexoura-wd-block {
	opacity: 0;
	transform: translateY(24px);
	transition:
		opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.nexoura-wd-reveal--ready,
.nexoura-wd-block--ready {
	opacity: 1;
	transform: none;
}

/* Text — italic 32/48, max 800px */
.nexoura-wd-text {
	display: flex;
	width: 100%;
}

.nexoura-wd-text--left {
	justify-content: flex-start;
}

.nexoura-wd-text--right {
	justify-content: flex-end;
}

.nexoura-wd-text__inner {
	max-width: var(--nx-wd-text);
}

.nexoura-wd-text__inner p {
	margin: 0;
	font-style: italic;
	font-weight: 500;
	font-size: 32px;
	line-height: 48px;
	color: #000000;
}

/* Media — equal columns within safe area · quad 2×2 */
.nexoura-wd-media {
	width: 100%;
	max-width: 100%;
	min-width: 0;
}

.nexoura-wd-media__grid {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: var(--nx-wd-media-gap);
	width: 100%;
	max-width: 100%;
	min-width: 0;
}

.nexoura-wd-media__item {
	flex: 1 1 0;
	min-width: 0;
	margin: 0;
	overflow: hidden;
	background: rgba(0, 0, 0, 0.04);
}

.nexoura-wd-media__item img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 100%;
	object-fit: cover;
}

/* 一图：1792×1266 */
.nexoura-wd-media--single .nexoura-wd-media__grid {
	display: block;
}

.nexoura-wd-media--single .nexoura-wd-media__item {
	flex: none;
	width: 100%;
	aspect-ratio: 1792 / 1266;
	height: auto;
	max-height: var(--nx-wd-img-single-h);
}

/* 二图：等宽 ×2 */
.nexoura-wd-media--double .nexoura-wd-media__item {
	aspect-ratio: 1 / 1;
	height: auto;
	max-height: var(--nx-wd-img-double-h);
}

/* 三图：等宽 ×3 */
.nexoura-wd-media--triple .nexoura-wd-media__item {
	aspect-ratio: 590 / 876;
	height: auto;
	max-height: var(--nx-wd-img-triple-h);
}

/* 四图：等宽 2×2 */
.nexoura-wd-media--quad .nexoura-wd-media__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-template-rows: repeat(2, minmax(0, auto));
	gap: var(--nx-wd-media-gap);
	width: 100%;
	max-width: 100%;
}

.nexoura-wd-media--quad .nexoura-wd-media__item {
	flex: none;
	width: 100%;
	aspect-ratio: 890 / 640;
	height: auto;
	max-height: var(--nx-wd-img-quad-h);
}

/* ─── Next project ─── */
.nexoura-wd-next {
	background: var(--nx-black);
	color: var(--nx-white);
}

.nexoura-wd-next__link {
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	justify-content: space-between;
	gap: 48px;
	width: 100%;
	transition: opacity 0.25s ease;
}

.nexoura-wd-next__link:hover,
.nexoura-wd-next__link:focus-visible {
	opacity: 0.82;
}

.nexoura-wd-next__head {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
	max-width: calc(100% - 280px);
}

.nexoura-wd-next__label {
	font-weight: 700;
	font-size: 16px;
	line-height: 60px;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: #d1d5dc;
}

.nexoura-wd-next__title {
	margin: 0;
	font-weight: 700;
	font-size: 72px;
	line-height: 72px;
	letter-spacing: -3.6px;
	color: #ffffff;
}

.nexoura-wd-next__meta .nexoura-wd-meta__tag {
	border-color: rgba(255, 255, 255, 0.24);
	color: #ffffff;
}

.nexoura-wd-next__meta .nexoura-wd-meta__date,
.nexoura-wd-next__meta .nexoura-wd-meta__service {
	color: rgba(255, 255, 255, 0.56);
}

.nexoura-wd-next__cta {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	gap: 16px;
}

.nexoura-wd-next__cta-text {
	font-weight: 700;
	font-size: 14px;
	line-height: 14px;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	white-space: nowrap;
}

.nexoura-wd-next__cta-icon img {
	width: 48px;
	height: 48px;
}

@media (prefers-reduced-motion: reduce) {
	.nexoura-wd-reveal,
	.nexoura-wd-block {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

@media (max-width: 1600px) {
	.nexoura-wd-head__title,
	.nexoura-wd-next__title {
		font-size: 64px;
		line-height: 64px;
	}

	.nexoura-wd-text__inner p {
		font-size: 28px;
		line-height: 42px;
	}
}

@media (max-width: 1200px) {
	body.nexoura-work-detail {
		width: 100%;
		zoom: 1;
		transform: none;
	}

	.nexoura-wd-page {
		padding-left: 0;
		padding-right: 0;
	}

	.nexoura-wd-next {
		padding-left: max(24px, var(--nx-gutter));
		padding-right: max(24px, var(--nx-gutter));
	}

	body.nexoura-work-detail .nexoura-footer {
		padding-top: 80px;
		padding-bottom: 80px;
		padding-left: max(24px, var(--nx-gutter));
		padding-right: max(24px, var(--nx-gutter));
	}

	.nexoura-wd-shell {
		max-width: none;
		padding: 0;
	}

	.nexoura-wd-cover {
		height: auto;
	}

	.nexoura-wd-cover__grid {
		flex-direction: column;
		flex-wrap: wrap;
		height: auto;
	}

	.nexoura-wd-cover__cell {
		flex: none;
		width: 100%;
		height: auto;
		min-height: 280px;
	}

	.nexoura-wd-cover__photo {
		height: auto;
		min-height: 280px;
	}

	.nexoura-wd-text__inner {
		max-width: none;
	}

	.nexoura-wd-text__inner p {
		font-size: 22px;
		line-height: 34px;
	}

	.nexoura-wd-head__title,
	.nexoura-wd-next__title {
		font-size: 48px;
		line-height: 48px;
		letter-spacing: -2px;
	}

	.nexoura-wd-media--double .nexoura-wd-media__grid,
	.nexoura-wd-media--triple .nexoura-wd-media__grid,
	.nexoura-wd-media--quad .nexoura-wd-media__grid {
		display: flex;
		flex-direction: column;
		width: 100%;
	}

	.nexoura-wd-media--single .nexoura-wd-media__item,
	.nexoura-wd-media--triple .nexoura-wd-media__item,
	.nexoura-wd-media--double .nexoura-wd-media__item,
	.nexoura-wd-media--quad .nexoura-wd-media__item {
		flex: none;
		width: 100%;
		height: auto;
		max-height: none;
		min-height: 280px;
	}

	.nexoura-wd-next__link {
		flex-direction: column;
		align-items: flex-start;
	}

	.nexoura-wd-next__head {
		max-width: none;
	}
}



