:root {
	--nx-bg: #020617;
	--nx-panel: #0f172a;
	--nx-text: #ffffff;
	--nx-muted: #cbd5e1;
	--nx-subtle: #94a3b8;
	--nx-accent: #3b82f6;
	--nx-line: rgba(255, 255, 255, 0.12);
	--nx-line-strong: rgba(255, 255, 255, 0.22);
	--nx-container: 1160px;
}

html {
	scroll-behavior: smooth;
}

html.is-nx-drawer-open {
	overflow: hidden;
}

body.neuralix-front {
	margin: 0;
	background: var(--nx-bg);
	color: var(--nx-text);
	font-family: Inter, "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.8;
}

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

.neuralix-front a {
	color: inherit;
	text-decoration: none;
}

.neuralix-front ul,
.neuralix-front ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

.neuralix-front h1,
.neuralix-front h2,
.neuralix-front h3,
.neuralix-front p {
	margin: 0;
}

.neuralix-front button {
	font: inherit;
}

.nx-container {
	width: min(var(--nx-container), calc(100% - 40px));
	margin-inline: auto;
}

.nx-kicker {
	color: var(--nx-accent);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 1.4;
}

.nx-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 100;
	height: 80px;
	border-bottom: 1px solid transparent;
	background: rgba(2, 6, 23, 0);
	transition: background-color 0.28s ease, border-color 0.28s ease, backdrop-filter 0.28s ease;
}

body.admin-bar .nx-header {
	top: 32px;
}

.nx-header.is-scrolled,
.nx-header.is-open {
	border-bottom-color: var(--nx-line);
	background: rgba(2, 6, 23, 0.86);
	backdrop-filter: blur(18px);
}

.nx-header__inner {
	width: min(1240px, calc(100% - 40px));
	height: 100%;
	margin-inline: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
}

.nx-logo {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	color: var(--nx-text);
	line-height: 1;
}

.nx-logo__mark {
	width: 34px;
	height: 34px;
	border: 1px solid var(--nx-line-strong);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.05);
	font-size: 16px;
	font-weight: 600;
}

.nx-logo__text {
	font-size: 18px;
	font-weight: 600;
}

.nx-nav {
	display: flex;
	align-items: center;
	gap: 28px;
	margin-left: auto;
}

.nx-nav a,
.nx-header__link {
	color: var(--nx-muted);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	transition: color 0.2s ease;
}

.nx-nav a:hover,
.nx-header__link:hover {
	color: var(--nx-text);
}

.nx-header__actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.nx-header__button {
	min-height: 40px;
	padding: 0 18px;
	border: 1px solid var(--nx-line-strong);
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.06);
	color: var(--nx-text);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.3;
	transition: border-color 0.2s ease, background-color 0.2s ease;
}

.nx-header__button:hover {
	border-color: rgba(255, 255, 255, 0.34);
	background: rgba(255, 255, 255, 0.1);
}

.nx-menu-button {
	display: none;
	width: 38px;
	height: 38px;
	padding: 0;
	border: 1px solid var(--nx-line);
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
}

.nx-menu-button span {
	width: 16px;
	height: 1px;
	display: block;
	margin: 0 auto;
	background: var(--nx-text);
	transition: transform 0.24s ease;
}

.nx-menu-button span + span {
	margin-top: 6px;
}

.nx-menu-button.is-open span:first-child {
	transform: translateY(3.5px) rotate(45deg);
}

.nx-menu-button.is-open span:last-child {
	transform: translateY(-3.5px) rotate(-45deg);
}

.nx-drawer {
	display: none;
	position: fixed;
	inset: 80px 0 0;
	z-index: 99;
	padding: 24px 20px 40px;
	background: rgba(2, 6, 23, 0.96);
	backdrop-filter: blur(18px);
}

body.admin-bar .nx-drawer {
	top: 112px;
}

.nx-drawer.is-open {
	display: block;
}

.nx-drawer__nav {
	width: min(520px, 100%);
	margin-inline: auto;
	border-top: 1px solid var(--nx-line);
}

.nx-drawer__nav a {
	padding: 20px 0;
	border-bottom: 1px solid var(--nx-line);
	display: block;
	color: var(--nx-text);
	font-size: 24px;
	font-weight: 500;
	line-height: 1.3;
}

.nx-drawer__actions {
	width: min(520px, 100%);
	margin: 32px auto 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.nx-site {
	background: var(--nx-bg);
	overflow: hidden;
}

.nx-hero {
	position: relative;
	min-height: 92svh;
	padding: 156px 0 72px;
	display: grid;
	align-items: center;
	overflow: hidden;
	isolation: isolate;
	background: var(--nx-bg);
}

.nx-hero__canvas,
.nx-hero__grid {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.nx-hero__canvas {
	z-index: -2;
	opacity: 0.72;
}

.nx-hero__grid {
	z-index: -1;
	opacity: 0.38;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
	background-size: 88px 88px;
	-webkit-mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 72%, transparent);
	mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 72%, transparent);
}

.nx-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 72px;
}

.nx-hero__content {
	max-width: 820px;
}

.nx-hero__title {
	margin-top: 20px;
	color: var(--nx-text);
	font-size: 72px;
	font-weight: 500;
	line-height: 1.12;
}

.nx-hero__lead {
	max-width: 680px;
	margin-top: 30px;
	color: var(--nx-muted);
	font-size: 19px;
	line-height: 2;
}

.nx-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

.nx-hero .nx-actions {
	margin-top: 40px;
}

.nx-actions--center {
	justify-content: center;
}

.nx-button {
	min-width: 160px;
	min-height: 52px;
	padding: 0 24px;
	border: 1px solid var(--nx-line);
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.04);
	color: var(--nx-text);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.3;
	text-align: center;
	transition: border-color 0.24s ease, background-color 0.24s ease, transform 0.24s ease;
}

.nx-button--primary {
	border-color: var(--nx-accent);
	background: var(--nx-accent);
}

.nx-button:hover {
	border-color: rgba(255, 255, 255, 0.32);
	transform: translateY(-2px);
}

.nx-button--primary:hover {
	border-color: #60a5fa;
	background: #60a5fa;
}

.nx-hero__signals {
	width: min(100%, 940px);
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-top: 1px solid var(--nx-line);
	border-bottom: 1px solid var(--nx-line);
}

.nx-hero__signals li {
	min-height: 112px;
	padding: 22px 28px;
	display: grid;
	align-content: center;
	gap: 6px;
}

.nx-hero__signals li + li {
	border-left: 1px solid var(--nx-line);
}

.nx-hero__signals span {
	color: var(--nx-subtle);
	font-size: 12px;
	line-height: 1.4;
}

.nx-hero__signals strong {
	color: var(--nx-text);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.6;
}

.nx-section {
	position: relative;
	padding-block: 140px;
}

.nx-section--base {
	background: var(--nx-bg);
}

.nx-section--panel {
	border-block: 1px solid var(--nx-line);
	background: var(--nx-panel);
}

.nx-section__head {
	max-width: 540px;
}

.nx-section__head--center {
	max-width: 740px;
	margin-inline: auto;
	text-align: center;
}

.nx-section__title {
	margin-top: 18px;
	color: var(--nx-text);
	font-size: 48px;
	font-weight: 500;
	line-height: 1.22;
}

.nx-section__lead {
	max-width: 640px;
	margin: 24px auto 0;
	color: var(--nx-muted);
	font-size: 17px;
	line-height: 1.9;
}

.nx-split {
	display: grid;
	grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
	gap: 80px;
	align-items: start;
}

.nx-split--reverse {
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.nx-copy {
	color: var(--nx-muted);
	font-size: 17px;
	line-height: 2;
}

.nx-copy p + p {
	margin-top: 24px;
}

.nx-principles {
	margin-top: 96px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-top: 1px solid var(--nx-line);
	border-bottom: 1px solid var(--nx-line);
}

.nx-principles li {
	min-height: 240px;
	padding: 36px 32px;
}

.nx-principles li + li {
	border-left: 1px solid var(--nx-line);
}

.nx-principles span,
.nx-service__number {
	color: var(--nx-accent);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.4;
}

.nx-principles h3,
.nx-service h3 {
	margin-top: 24px;
	color: var(--nx-text);
	font-size: 22px;
	font-weight: 500;
	line-height: 1.45;
}

.nx-principles p,
.nx-service p {
	margin-top: 16px;
	color: var(--nx-muted);
	font-size: 15px;
	line-height: 1.9;
}

.nx-service-grid {
	margin-top: 72px;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1px;
	border: 1px solid var(--nx-line);
	background: var(--nx-line);
}

.nx-service {
	min-height: 300px;
	padding: 32px 28px;
	background: rgba(2, 6, 23, 0.54);
	transition: background-color 0.24s ease, transform 0.24s ease;
}

.nx-service:hover {
	background: rgba(17, 24, 39, 0.86);
	transform: translateY(-2px);
}

.nx-steps {
	border-top: 1px solid var(--nx-line);
}

.nx-steps li {
	display: grid;
	grid-template-columns: 160px minmax(0, 1fr);
	gap: 32px;
	padding: 28px 0;
	border-bottom: 1px solid var(--nx-line);
}

.nx-steps span {
	color: var(--nx-text);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.7;
}

.nx-steps p {
	color: var(--nx-muted);
	font-size: 16px;
	line-height: 1.9;
}

.nx-vision {
	padding-block: 140px;
	border-top: 1px solid var(--nx-line);
	border-bottom: 1px solid var(--nx-line);
	background: var(--nx-bg);
}

.nx-vision__title {
	max-width: 940px;
	margin-top: 24px;
	color: var(--nx-text);
	font-size: 88px;
	font-weight: 500;
	line-height: 1.12;
}

.nx-vision__text {
	max-width: 560px;
	margin-top: 32px;
	color: var(--nx-muted);
	font-size: 18px;
	line-height: 1.9;
}

.nx-cta {
	padding-block: 120px;
	background: var(--nx-panel);
}

.nx-cta__inner {
	max-width: 820px;
	text-align: center;
}

.nx-cta h2 {
	margin-top: 18px;
	color: var(--nx-text);
	font-size: 48px;
	font-weight: 500;
	line-height: 1.25;
}

.nx-cta p:not(.nx-kicker) {
	max-width: 580px;
	margin: 24px auto 0;
	color: var(--nx-muted);
	font-size: 17px;
	line-height: 1.9;
}

.nx-cta .nx-actions {
	margin-top: 36px;
}

.nx-footer {
	border-top: 1px solid var(--nx-line);
	background: var(--nx-bg);
}

.nx-footer__inner {
	padding-block: 72px;
	display: flex;
	justify-content: space-between;
	gap: 48px;
}

.nx-footer__brand p {
	margin-top: 18px;
	color: var(--nx-muted);
	font-size: 15px;
	line-height: 1.8;
}

.nx-footer__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
}

.nx-footer__nav a,
.nx-footer__bottom a {
	color: var(--nx-muted);
	font-size: 14px;
	line-height: 1.6;
	transition: color 0.2s ease;
}

.nx-footer__nav a:hover,
.nx-footer__bottom a:hover {
	color: var(--nx-text);
}

.nx-footer__bottom {
	padding: 0 0 32px;
	display: flex;
	justify-content: space-between;
	gap: 24px;
	color: var(--nx-subtle);
	font-size: 13px;
	line-height: 1.6;
}

.nx-reveal {
	opacity: 0;
	transform: translate3d(0, 24px, 0);
	transition:
		opacity 0.72s ease,
		transform 0.72s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.nx-reveal.is-visible,
.is-loaded .nx-hero .nx-reveal {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.nx-scroll-progress {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 110;
	width: calc(var(--nx-scroll-progress, 0) * 100%);
	height: 2px;
	background: var(--nx-accent);
	pointer-events: none;
}

@media (max-width: 1023px) {
	.nx-header {
		height: 72px;
	}

	.nx-header__inner,
	.nx-container {
		width: min(calc(100% - 32px), var(--nx-container));
	}

	.nx-nav,
	.nx-header__actions {
		display: none;
	}

	.nx-menu-button {
		display: block;
	}

	.nx-drawer {
		top: 72px;
	}

	.nx-hero {
		min-height: 90svh;
		padding: 120px 0 64px;
	}

	.nx-hero__title {
		font-size: 56px;
	}

	.nx-section,
	.nx-vision {
		padding-block: 104px;
	}

	.nx-section__title,
	.nx-cta h2 {
		font-size: 40px;
	}

	.nx-split,
	.nx-split--reverse {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.nx-principles,
	.nx-service-grid {
		grid-template-columns: 1fr;
	}

	.nx-principles li + li,
	.nx-hero__signals li + li {
		border-left: 0;
		border-top: 1px solid var(--nx-line);
	}

	.nx-vision__title {
		font-size: 62px;
	}

	.nx-footer__inner {
		flex-direction: column;
	}
}

@media (max-width: 782px) {
	body.admin-bar .nx-header {
		top: 46px;
	}

	body.admin-bar .nx-drawer {
		top: 118px;
	}
}

@media (max-width: 767px) {
	.nx-header__inner,
	.nx-container {
		width: min(calc(100% - 24px), var(--nx-container));
	}

	.nx-logo__mark {
		width: 32px;
		height: 32px;
	}

	.nx-logo__text {
		font-size: 17px;
	}

	.nx-hero {
		padding: 112px 0 56px;
	}

	.nx-hero__inner {
		gap: 48px;
	}

	.nx-hero__title {
		margin-top: 16px;
		font-size: 42px;
		line-height: 1.18;
	}

	.nx-hero__lead {
		margin-top: 24px;
		font-size: 16px;
		line-height: 1.9;
	}

	.nx-actions,
	.nx-actions--center,
	.nx-drawer__actions {
		width: 100%;
		display: grid;
		grid-template-columns: 1fr;
	}

	.nx-button {
		width: 100%;
		min-height: 54px;
	}

	.nx-hero__signals {
		grid-template-columns: 1fr;
	}

	.nx-hero__signals li {
		min-height: 96px;
		padding: 20px 0;
	}

	.nx-section,
	.nx-vision,
	.nx-cta {
		padding-block: 84px;
	}

	.nx-section__title,
	.nx-cta h2 {
		font-size: 34px;
		line-height: 1.3;
	}

	.nx-section__lead,
	.nx-copy,
	.nx-cta p:not(.nx-kicker) {
		font-size: 16px;
	}

	.nx-principles {
		margin-top: 64px;
	}

	.nx-principles li,
	.nx-service {
		min-height: auto;
		padding: 28px 0;
	}

	.nx-service-grid {
		margin-top: 56px;
		border-inline: 0;
		background: transparent;
	}

	.nx-service {
		border-bottom: 1px solid var(--nx-line);
		background: transparent;
	}

	.nx-service:hover {
		background: transparent;
		transform: none;
	}

	.nx-principles h3,
	.nx-service h3 {
		font-size: 20px;
	}

	.nx-steps li {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.nx-vision__title {
		font-size: 48px;
		line-height: 1.16;
	}

	.nx-footer__inner {
		padding-block: 56px;
	}

	.nx-footer__bottom {
		flex-direction: column;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.neuralix-front *,
	.neuralix-front *::before,
	.neuralix-front *::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
	}

	.nx-reveal {
		opacity: 1 !important;
		transform: none !important;
	}
}
