:root {
	--nc-ink: #0b1220;
	--nc-ink-soft: #162033;
	--nc-primary: #246bfd;
	--nc-primary-dark: #1557e8;
	--nc-cyan: #35c6f4;
	--nc-text: #263247;
	--nc-muted: #667085;
	--nc-line: #e7ebf2;
	--nc-mist: #f5f7fb;
	--nc-white: #fff;
	--nc-shadow: 0 20px 60px rgba(14, 29, 61, .1);
	--nc-radius: 22px;
	--nc-container: 1240px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--nc-white);
	color: var(--nc-text);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.75;
	-webkit-font-smoothing: antialiased;
}

body.menu-open {
	overflow: hidden;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
textarea,
select {
	font: inherit;
}

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

.nc-skip-link {
	position: fixed;
	z-index: 9999;
	top: -80px;
	left: 20px;
	padding: 10px 18px;
	border-radius: 8px;
	background: var(--nc-white);
	color: var(--nc-ink);
	transition: top .2s;
}

.nc-skip-link:focus {
	top: 20px;
}

.nc-announcement {
	position: relative;
	z-index: 102;
	padding: 7px 0;
	background: var(--nc-primary);
	color: var(--nc-white);
	font-size: 13px;
}

.nc-announcement .nc-container {
	display: flex;
	justify-content: center;
	gap: 18px;
}

.nc-announcement a {
	font-weight: 700;
}

.nc-site-header {
	position: sticky;
	z-index: 100;
	top: 0;
	border-bottom: 1px solid rgba(231, 235, 242, .8);
	background: rgba(255, 255, 255, .88);
	backdrop-filter: blur(18px);
	transition: box-shadow .25s, background .25s;
}

.nc-site-header.is-scrolled {
	box-shadow: 0 8px 32px rgba(14, 29, 61, .07);
}

.nc-header-inner {
	display: flex;
	align-items: center;
	min-height: 78px;
	gap: 34px;
}

.nc-brand {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
	gap: 11px;
	color: var(--nc-ink);
}

.nc-brand .custom-logo-link {
	display: block;
}

.nc-brand .custom-logo {
	width: auto;
	max-height: 46px;
}

.nc-settings-logo {
	width: auto;
	max-width: 190px;
	max-height: 46px;
	object-fit: contain;
}

.nc-brand-mark {
	position: relative;
	display: inline-block;
	width: 39px;
	height: 39px;
	transform: rotate(45deg);
	border: 1px solid rgba(36, 107, 253, .3);
	border-radius: 11px;
	background: linear-gradient(135deg, var(--nc-primary), var(--nc-cyan));
	box-shadow: 0 8px 22px rgba(36, 107, 253, .25);
}

.nc-brand-mark i {
	position: absolute;
	display: block;
	width: 5px;
	height: 5px;
	border-radius: 2px;
	background: white;
}

.nc-brand-mark i:nth-child(1) {
	top: 10px;
	left: 10px;
}

.nc-brand-mark i:nth-child(2) {
	top: 10px;
	right: 10px;
}

.nc-brand-mark i:nth-child(3) {
	right: 10px;
	bottom: 10px;
	width: 15px;
}

.nc-brand-copy {
	display: flex;
	flex-direction: column;
	line-height: 1;
}

.nc-brand-copy strong {
	font-size: 19px;
	font-weight: 800;
	letter-spacing: .06em;
}

.nc-brand-copy small {
	margin-top: 7px;
	color: #8a94a6;
	font-size: 8px;
	font-weight: 700;
	letter-spacing: .17em;
}

.nc-primary-nav {
	margin-left: auto;
}

.nc-nav-list,
.nc-nav-list ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.nc-nav-list {
	display: flex;
	align-items: center;
	gap: 28px;
}

.nc-nav-list > li {
	position: relative;
}

.nc-nav-list > li > a {
	display: flex;
	align-items: center;
	min-height: 78px;
	color: #344054;
	font-size: 15px;
	font-weight: 600;
	white-space: nowrap;
}

.nc-nav-list > li > a:hover,
.nc-nav-list > .current-menu-item > a,
.nc-nav-list > .current_page_item > a {
	color: var(--nc-primary);
}

.nc-nav-list > li > a::after {
	position: absolute;
	right: 50%;
	bottom: -1px;
	left: 50%;
	height: 2px;
	background: var(--nc-primary);
	content: "";
	transition: left .2s, right .2s;
}

.nc-nav-list > li:hover > a::after,
.nc-nav-list > .current-menu-item > a::after {
	right: 0;
	left: 0;
}

.nc-nav-list .sub-menu {
	position: absolute;
	top: calc(100% - 8px);
	left: -22px;
	min-width: 190px;
	padding: 10px;
	border: 1px solid var(--nc-line);
	border-radius: 14px;
	background: white;
	box-shadow: var(--nc-shadow);
	visibility: hidden;
	opacity: 0;
	transform: translateY(8px);
	transition: .2s;
}

.nc-nav-list li:hover > .sub-menu,
.nc-nav-list li:focus-within > .sub-menu {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}

.nc-nav-list .sub-menu a {
	display: block;
	padding: 8px 12px;
	border-radius: 8px;
	font-size: 14px;
}

.nc-nav-list .sub-menu a:hover {
	background: var(--nc-mist);
	color: var(--nc-primary);
}

.nc-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 24px;
	gap: 10px;
	border: 1px solid var(--nc-primary);
	border-radius: 13px;
	background: var(--nc-primary);
	box-shadow: 0 12px 26px rgba(36, 107, 253, .22);
	color: white;
	font-weight: 700;
	line-height: 1.2;
	transition: transform .2s, background .2s, box-shadow .2s;
}

.nc-button:hover {
	background: var(--nc-primary-dark);
	box-shadow: 0 16px 30px rgba(36, 107, 253, .28);
	transform: translateY(-2px);
}

.nc-button:focus-visible,
.nc-text-link:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: 3px solid rgba(36, 107, 253, .28);
	outline-offset: 3px;
}

.nc-button-sm {
	min-height: 42px;
	padding-inline: 18px;
	border-radius: 10px;
	font-size: 14px;
}

.nc-button-outline {
	border-color: var(--nc-line);
	background: white;
	box-shadow: none;
	color: var(--nc-ink);
}

.nc-button-outline:hover {
	border-color: var(--nc-primary);
	background: white;
	color: var(--nc-primary);
}

.nc-button-ghost {
	border-color: rgba(255, 255, 255, .3);
	background: rgba(255, 255, 255, .06);
	box-shadow: none;
	color: white;
}

.nc-button-ghost:hover {
	border-color: rgba(255, 255, 255, .55);
	background: rgba(255, 255, 255, .12);
}

.nc-button-white {
	border-color: white;
	background: white;
	box-shadow: 0 15px 35px rgba(4, 29, 89, .2);
	color: var(--nc-primary);
}

.nc-button-white:hover {
	background: #f4f8ff;
	color: var(--nc-primary-dark);
}

.nc-menu-toggle {
	display: none;
	margin-left: auto;
	padding: 7px 4px;
	border: 0;
	background: transparent;
	color: var(--nc-ink);
}

.nc-menu-icon {
	display: flex;
	flex-direction: column;
	width: 26px;
	gap: 6px;
}

.nc-menu-icon i {
	display: block;
	width: 100%;
	height: 2px;
	background: currentColor;
	transition: transform .2s;
}

.nc-menu-toggle-label {
	position: absolute;
	overflow: hidden;
	width: 1px;
	height: 1px;
	clip: rect(0, 0, 0, 0);
}

.nc-hero {
	position: relative;
	overflow: hidden;
	padding: 96px 0 0;
	background:
		radial-gradient(circle at 75% 20%, rgba(36, 107, 253, .2), transparent 28%),
		linear-gradient(128deg, #07101f 0%, #0d1830 55%, #0b1938 100%);
	color: white;
}

.nc-hero-grid {
	position: absolute;
	inset: 0;
	opacity: .14;
	background-image:
		linear-gradient(rgba(255, 255, 255, .12) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, .12) 1px, transparent 1px);
	background-size: 66px 66px;
	mask-image: linear-gradient(to right, black, transparent 80%);
}

.nc-hero-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(2px);
}

.nc-hero-orb-one {
	top: 12%;
	right: 4%;
	width: 230px;
	height: 230px;
	border: 1px solid rgba(53, 198, 244, .25);
}

.nc-hero-orb-two {
	right: 34%;
	bottom: 10%;
	width: 80px;
	height: 80px;
	background: rgba(36, 107, 253, .12);
}

.nc-hero-inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(440px, .98fr);
	align-items: center;
	min-height: 570px;
	gap: 74px;
}

.nc-hero-content {
	position: relative;
	z-index: 2;
	padding-bottom: 72px;
}

.nc-kicker {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: var(--nc-primary);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.nc-kicker::before {
	width: 22px;
	height: 2px;
	background: currentColor;
	content: "";
}

.nc-kicker-light {
	color: #8edbff;
}

.nc-hero h1 {
	max-width: 720px;
	margin: 22px 0 24px;
	color: white;
	font-size: clamp(44px, 4.5vw, 68px);
	font-weight: 820;
	letter-spacing: -.055em;
	line-height: 1.12;
}

.nc-hero h1 em {
	background: linear-gradient(90deg, #75b7ff, #46d5f0);
	background-clip: text;
	color: transparent;
	font-style: normal;
}

.nc-hero-content > p {
	max-width: 625px;
	margin: 0;
	color: #b8c3d7;
	font-size: 18px;
	line-height: 1.8;
}

.nc-hero-actions {
	display: flex;
	margin-top: 34px;
	gap: 14px;
}

.nc-hero-proof {
	display: flex;
	align-items: center;
	margin-top: 40px;
	gap: 14px;
}

.nc-proof-avatars {
	display: flex;
	padding-left: 10px;
}

.nc-proof-avatars i {
	display: grid;
	width: 32px;
	height: 32px;
	margin-left: -10px;
	place-items: center;
	border: 2px solid #111c31;
	border-radius: 50%;
	background: #1e3356;
	color: #dce8fa;
	font-size: 11px;
	font-style: normal;
	font-weight: 700;
}

.nc-proof-avatars i:nth-child(2) {
	background: #174880;
}

.nc-proof-avatars i:nth-child(3) {
	background: #185b6f;
}

.nc-hero-proof p {
	display: flex;
	flex-direction: column;
	margin: 0;
	line-height: 1.4;
}

.nc-hero-proof strong {
	color: #eaf1fb;
	font-size: 13px;
}

.nc-hero-proof small {
	margin-top: 3px;
	color: #8795ac;
	font-size: 11px;
}

.nc-hero-visual {
	position: relative;
	z-index: 1;
	min-height: 490px;
	perspective: 1200px;
}

.nc-dashboard {
	position: absolute;
	top: 20px;
	right: -45px;
	left: 25px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 22px;
	background: rgba(12, 24, 47, .78);
	box-shadow: 0 50px 100px rgba(0, 0, 0, .4);
	backdrop-filter: blur(20px);
	transform: rotateY(-7deg) rotateX(3deg);
}

.nc-dashboard-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 19px;
	border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.nc-dashboard-top small {
	color: #74849c;
	font-size: 9px;
	letter-spacing: .17em;
}

.nc-dashboard-dots {
	display: flex;
	gap: 6px;
}

.nc-dashboard-dots i {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #ff7c72;
}

.nc-dashboard-dots i:nth-child(2) {
	background: #f5c25b;
}

.nc-dashboard-dots i:nth-child(3) {
	background: #42d197;
}

.nc-dashboard-body {
	padding: 34px;
}

.nc-dashboard-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.nc-dashboard-title > div {
	display: flex;
	flex-direction: column;
}

.nc-dashboard-title span {
	color: #8e9bb0;
	font-size: 12px;
}

.nc-dashboard-title strong {
	margin-top: 2px;
	font-size: 34px;
	line-height: 1.2;
}

.nc-status {
	padding: 5px 10px;
	border: 1px solid rgba(49, 215, 163, .25);
	border-radius: 999px;
	background: rgba(49, 215, 163, .1);
	color: #6ee7ba;
	font-size: 10px;
	font-style: normal;
}

.nc-progress {
	height: 5px;
	margin-top: 20px;
	overflow: hidden;
	border-radius: 10px;
	background: rgba(255, 255, 255, .08);
}

.nc-progress i {
	display: block;
	width: 84%;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, var(--nc-primary), var(--nc-cyan));
	box-shadow: 0 0 16px var(--nc-primary);
}

.nc-dashboard-chart {
	display: flex;
	align-items: flex-end;
	height: 150px;
	margin-top: 26px;
	padding: 15px 12px 0;
	gap: 12px;
	border-bottom: 1px solid rgba(255, 255, 255, .1);
	background: repeating-linear-gradient(to bottom, rgba(255, 255, 255, .06) 0, rgba(255, 255, 255, .06) 1px, transparent 1px, transparent 42px);
}

.nc-dashboard-chart span {
	flex: 1;
	height: var(--h);
	border-radius: 5px 5px 0 0;
	background: linear-gradient(to top, rgba(36, 107, 253, .25), #3a82ff);
	box-shadow: 0 -5px 16px rgba(36, 107, 253, .18);
}

.nc-dashboard-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin-top: 24px;
	gap: 13px;
}

.nc-dashboard-cards > div {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 15px;
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 12px;
	background: rgba(255, 255, 255, .035);
}

.nc-dashboard-cards small {
	color: #8c99ad;
	font-size: 10px;
}

.nc-dashboard-cards strong {
	margin-top: 3px;
	font-size: 20px;
}

.nc-dashboard-cards span {
	position: absolute;
	right: 14px;
	bottom: 14px;
	color: #63dcb3;
	font-size: 10px;
}

.nc-float-card {
	position: absolute;
	z-index: 2;
	display: flex;
	align-items: center;
	padding: 13px 17px;
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 14px;
	background: rgba(24, 40, 69, .88);
	box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
	gap: 11px;
	backdrop-filter: blur(16px);
}

.nc-float-card > span {
	display: grid;
	width: 35px;
	height: 35px;
	place-items: center;
	border-radius: 10px;
	background: rgba(36, 107, 253, .18);
	color: #7ab4ff;
	font-weight: 800;
}

.nc-float-card > div {
	display: flex;
	flex-direction: column;
	line-height: 1.3;
}

.nc-float-card strong {
	font-size: 11px;
}

.nc-float-card small {
	margin-top: 4px;
	color: #8493a8;
	font-size: 9px;
}

.nc-float-card-code {
	bottom: 44px;
	left: -22px;
}

.nc-float-card-users {
	top: 50%;
	right: -4px;
}

.nc-float-card-users > span {
	background: rgba(38, 201, 151, .14);
	color: #5ce0b4;
}

.nc-logo-strip {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 98px;
	padding-block: 20px;
	gap: 50px;
	border-top: 1px solid rgba(255, 255, 255, .1);
	color: #718097;
}

.nc-logo-strip > span {
	flex: 0 0 auto;
	font-size: 12px;
}

.nc-logo-strip > div {
	display: flex;
	justify-content: space-between;
	flex: 1;
	gap: 26px;
}

.nc-logo-strip strong {
	color: #94a2b6;
	font-size: 14px;
	letter-spacing: .04em;
}

.nc-section {
	padding: 104px 0;
}

.nc-services-section {
	background:
		radial-gradient(circle at 95% 5%, rgba(36, 107, 253, .05), transparent 25%),
		white;
}

.nc-section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	margin-bottom: 50px;
	gap: 80px;
}

.nc-section-heading > div {
	max-width: 680px;
}

.nc-section-heading h2 {
	margin: 14px 0 0;
	color: var(--nc-ink);
	font-size: clamp(32px, 3.5vw, 48px);
	letter-spacing: -.035em;
	line-height: 1.18;
}

.nc-section-heading > p {
	max-width: 450px;
	margin: 0;
	color: var(--nc-muted);
	font-size: 16px;
	line-height: 1.8;
}

.nc-section-heading-center {
	display: block;
	text-align: center;
}

.nc-section-heading-center > div,
.nc-section-heading-center > p {
	margin-inline: auto;
}

.nc-section-heading-center > p {
	margin-top: 18px;
}

.nc-grid {
	display: grid;
	gap: 24px;
}

.nc-grid-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.nc-service-card {
	position: relative;
	overflow: hidden;
	min-height: 350px;
	padding: 32px;
	border: 1px solid var(--nc-line);
	border-radius: var(--nc-radius);
	background: white;
	transition: border .25s, box-shadow .25s, transform .25s;
}

.nc-service-card:hover {
	border-color: rgba(36, 107, 253, .28);
	box-shadow: var(--nc-shadow);
	transform: translateY(-5px);
}

.nc-service-number {
	position: absolute;
	top: 27px;
	right: 27px;
	color: #cbd2de;
	font-size: 12px;
	font-weight: 700;
}

.nc-service-icon {
	position: relative;
	width: 52px;
	height: 52px;
	margin-bottom: 25px;
	border-radius: 15px;
	background: linear-gradient(135deg, rgba(36, 107, 253, .11), rgba(53, 198, 244, .14));
}

.nc-service-icon::before,
.nc-service-icon::after,
.nc-service-icon i {
	position: absolute;
	content: "";
}

.nc-service-icon::before {
	top: 15px;
	left: 14px;
	width: 21px;
	height: 16px;
	border: 2px solid var(--nc-primary);
	border-radius: 4px;
}

.nc-service-icon::after {
	right: 12px;
	bottom: 12px;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: var(--nc-cyan);
	box-shadow: 0 0 0 4px white;
}

.nc-service-card:nth-child(2n) .nc-service-icon {
	background: linear-gradient(135deg, rgba(112, 68, 255, .1), rgba(36, 107, 253, .08));
}

.nc-service-card:nth-child(3n) .nc-service-icon {
	background: linear-gradient(135deg, rgba(30, 190, 153, .1), rgba(53, 198, 244, .1));
}

.nc-service-card h3 {
	margin: 0;
	color: var(--nc-ink);
	font-size: 22px;
}

.nc-service-card h3 a::after {
	position: absolute;
	inset: 0;
	content: "";
}

.nc-service-card p {
	margin: 14px 0 18px;
	color: var(--nc-muted);
	font-size: 14px;
}

.nc-service-card ul {
	margin: 0;
	padding: 0;
	list-style: none;
	color: #46536a;
	font-size: 13px;
}

.nc-service-card li {
	margin-top: 6px;
}

.nc-service-card li::before {
	margin-right: 8px;
	color: var(--nc-primary);
	content: "·";
	font-weight: 900;
}

.nc-circle-link {
	position: absolute;
	right: 26px;
	bottom: 25px;
	z-index: 1;
	display: grid;
	width: 40px;
	height: 40px;
	place-items: center;
	border: 1px solid var(--nc-line);
	border-radius: 50%;
	color: var(--nc-primary);
}

.nc-service-card:hover .nc-circle-link {
	border-color: var(--nc-primary);
	background: var(--nc-primary);
	color: white;
}

.nc-metrics-section {
	padding-top: 20px;
}

.nc-metrics-panel {
	position: relative;
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	overflow: hidden;
	padding: 70px;
	gap: 80px;
	border-radius: 28px;
	background:
		radial-gradient(circle at 85% 15%, rgba(36, 107, 253, .28), transparent 32%),
		linear-gradient(130deg, #091426, #111f39);
	color: white;
}

.nc-metrics-panel::after {
	position: absolute;
	right: -140px;
	bottom: -170px;
	width: 390px;
	height: 390px;
	border: 1px solid rgba(255, 255, 255, .09);
	border-radius: 50%;
	content: "";
}

.nc-metrics-copy h2 {
	margin: 17px 0;
	color: white;
	font-size: 38px;
	line-height: 1.25;
}

.nc-metrics-copy p {
	margin: 0 0 24px;
	color: #aab7cb;
}

.nc-text-link {
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--nc-primary);
	font-size: 14px;
	font-weight: 750;
}

.nc-text-link:hover {
	color: var(--nc-primary-dark);
}

.nc-text-link-light {
	color: #83c5ff;
}

.nc-metrics-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.nc-metrics-grid > div {
	display: flex;
	flex-direction: column;
	min-height: 142px;
	padding: 25px 34px;
	border-right: 1px solid rgba(255, 255, 255, .1);
	border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.nc-metrics-grid > div:nth-child(even) {
	border-right: 0;
}

.nc-metrics-grid > div:nth-last-child(-n+2) {
	border-bottom: 0;
}

.nc-metrics-grid strong {
	color: white;
	font-size: 43px;
	line-height: 1.2;
}

.nc-metrics-grid span {
	margin-top: 10px;
	color: #9ba9bd;
	font-size: 13px;
}

.nc-featured-cases {
	display: grid;
	gap: 32px;
}

.nc-case-feature {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(340px, .8fr);
	overflow: hidden;
	border: 1px solid var(--nc-line);
	border-radius: 26px;
	background: white;
}

.nc-case-feature:nth-child(even) {
	grid-template-columns: minmax(340px, .8fr) minmax(0, 1.2fr);
}

.nc-case-feature:nth-child(even) .nc-case-feature-media {
	order: 2;
}

.nc-case-feature-media {
	position: relative;
	display: block;
	min-height: 430px;
	overflow: hidden;
	background: linear-gradient(135deg, #eff4ff, #d8e6ff);
}

.nc-case-feature-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .45s;
}

.nc-case-feature:hover .nc-case-feature-media img {
	transform: scale(1.025);
}

.nc-project-mockup {
	position: absolute;
	inset: 14% 10% -15% 13%;
	border: 7px solid #17223a;
	border-radius: 18px 18px 0 0;
	background: white;
	box-shadow: 0 30px 50px rgba(38, 71, 139, .25);
	transform: rotate(-3deg);
}

.nc-project-mockup::before {
	display: block;
	height: 32px;
	border-bottom: 1px solid var(--nc-line);
	background: #fbfcff;
	content: "";
}

.nc-project-mockup i {
	position: absolute;
	top: 58px;
	right: 8%;
	left: 8%;
	height: 33%;
	border-radius: 10px;
	background: linear-gradient(135deg, var(--nc-primary), #5dbdee);
}

.nc-project-mockup b,
.nc-project-mockup em {
	position: absolute;
	bottom: 19%;
	height: 24%;
	border-radius: 8px;
	background: #edf2fa;
}

.nc-project-mockup b {
	right: 53%;
	left: 8%;
}

.nc-project-mockup em {
	right: 8%;
	left: 53%;
}

.nc-case-feature:nth-child(2) .nc-case-feature-media {
	background: linear-gradient(135deg, #e7fbf7, #c6efe7);
}

.nc-case-feature:nth-child(2) .nc-project-mockup i {
	background: linear-gradient(135deg, #0b967f, #53d7c0);
}

.nc-case-feature:nth-child(3) .nc-case-feature-media {
	background: linear-gradient(135deg, #f3ecff, #e0d3ff);
}

.nc-case-feature:nth-child(3) .nc-project-mockup i {
	background: linear-gradient(135deg, #7044ff, #b16de9);
}

.nc-case-feature-copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: 56px;
}

.nc-eyebrow {
	color: var(--nc-primary);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.nc-case-feature h3 {
	margin: 12px 0;
	color: var(--nc-ink);
	font-size: 31px;
	line-height: 1.28;
}

.nc-case-feature-copy > p {
	margin: 0;
	color: var(--nc-muted);
}

.nc-case-result {
	display: flex;
	align-items: baseline;
	margin: 26px 0 22px;
	gap: 12px;
}

.nc-case-result strong {
	color: var(--nc-primary);
	font-size: 35px;
	line-height: 1;
}

.nc-case-result span {
	color: var(--nc-muted);
	font-size: 13px;
}

.nc-section-footer {
	margin-top: 42px;
	text-align: center;
}

.nc-process-section {
	background: var(--nc-mist);
}

.nc-process-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.nc-process-item {
	position: relative;
	padding: 0 30px 0 0;
}

.nc-process-item::before {
	position: absolute;
	top: 15px;
	right: 30px;
	left: 48px;
	height: 1px;
	background: #d7dfeb;
	content: "";
}

.nc-process-item:last-child::before {
	display: none;
}

.nc-process-item > span {
	position: relative;
	z-index: 1;
	display: grid;
	width: 31px;
	height: 31px;
	place-items: center;
	border-radius: 50%;
	background: var(--nc-primary);
	box-shadow: 0 0 0 7px #e8efff;
	color: white;
	font-size: 10px;
	font-weight: 800;
}

.nc-process-item h3 {
	margin: 26px 0 8px;
	color: var(--nc-ink);
	font-size: 19px;
}

.nc-process-item p {
	margin: 0;
	color: var(--nc-muted);
	font-size: 13px;
}

.nc-stack-row {
	display: flex;
	align-items: center;
	margin-top: 64px;
	padding-top: 28px;
	gap: 40px;
	border-top: 1px solid #dce2ec;
}

.nc-stack-row > span {
	flex: 0 0 auto;
	color: #8792a3;
	font-size: 12px;
}

.nc-stack-row > div {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
}

.nc-stack-row i {
	padding: 6px 11px;
	border: 1px solid #dce3ed;
	border-radius: 7px;
	background: white;
	color: #59667a;
	font-size: 11px;
	font-style: normal;
	font-weight: 700;
}

.nc-testimonial-section {
	background: #fbfcfe;
}

.nc-quote-card {
	display: flex;
	flex-direction: column;
	min-height: 310px;
	padding: 32px;
	border: 1px solid var(--nc-line);
	border-radius: var(--nc-radius);
	background: white;
	box-shadow: 0 12px 40px rgba(18, 32, 60, .04);
}

.nc-quote-mark {
	height: 43px;
	color: var(--nc-primary);
	font-family: Georgia, serif;
	font-size: 62px;
	line-height: 1;
}

.nc-quote-content {
	flex: 1;
	color: #3d495c;
	font-size: 15px;
}

.nc-quote-content p {
	margin: 6px 0 20px;
}

.nc-quote-card footer {
	display: flex;
	align-items: center;
	padding-top: 20px;
	gap: 12px;
	border-top: 1px solid var(--nc-line);
}

.nc-quote-card footer > img,
.nc-quote-card footer > span {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border-radius: 50%;
	background: #e9f1ff;
	color: var(--nc-primary);
	object-fit: cover;
	font-size: 15px;
	font-weight: 800;
}

.nc-quote-card footer div {
	display: flex;
	flex-direction: column;
}

.nc-quote-card footer strong {
	color: var(--nc-ink);
	font-size: 13px;
}

.nc-quote-card footer small {
	color: #8b95a5;
	font-size: 11px;
}

.nc-card {
	overflow: hidden;
	border: 1px solid var(--nc-line);
	border-radius: var(--nc-radius);
	background: white;
	transition: box-shadow .25s, transform .25s;
}

.nc-card:hover {
	box-shadow: var(--nc-shadow);
	transform: translateY(-5px);
}

.nc-card-media {
	display: block;
	overflow: hidden;
	aspect-ratio: 3 / 2;
	background: #eaf0fc;
}

.nc-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s;
}

.nc-card:hover .nc-card-media img {
	transform: scale(1.035);
}

.nc-card-placeholder {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	background:
		radial-gradient(circle at 75% 20%, rgba(53, 198, 244, .4), transparent 30%),
		linear-gradient(135deg, #dce8ff, #eef4ff);
}

.nc-card-placeholder::before {
	position: absolute;
	inset: 22% 14% -10%;
	border: 5px solid #24334f;
	border-bottom: 0;
	border-radius: 13px 13px 0 0;
	background: white;
	box-shadow: 0 20px 35px rgba(23, 50, 100, .2);
	content: "";
	transform: rotate(-2deg);
}

.nc-card-placeholder i {
	position: absolute;
	z-index: 1;
	right: 22%;
	left: 22%;
	height: 7px;
	border-radius: 4px;
	background: #cbd8ec;
}

.nc-card-placeholder i:nth-child(1) {
	top: 43%;
	background: var(--nc-primary);
}

.nc-card-placeholder i:nth-child(2) {
	top: 50%;
	width: 30%;
}

.nc-card-placeholder i:nth-child(3) {
	top: 61%;
	height: 30%;
	background: #e9eef6;
}

.nc-card-body {
	padding: 26px;
}

.nc-card h2 {
	margin: 9px 0;
	color: var(--nc-ink);
	font-size: 20px;
	line-height: 1.35;
}

.nc-card p {
	margin: 0 0 18px;
	color: var(--nc-muted);
	font-size: 13px;
}

.nc-cta-section {
	padding: 20px 0 100px;
}

.nc-cta-panel {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	overflow: hidden;
	padding: 62px 68px;
	gap: 40px;
	border-radius: 26px;
	background:
		radial-gradient(circle at 80% 5%, rgba(78, 208, 247, .25), transparent 35%),
		linear-gradient(135deg, #1758dc, #2878fa);
	color: white;
}

.nc-cta-panel::before,
.nc-cta-panel::after {
	position: absolute;
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 50%;
	content: "";
}

.nc-cta-panel::before {
	right: 12%;
	bottom: -150px;
	width: 310px;
	height: 310px;
}

.nc-cta-panel::after {
	top: -120px;
	right: -80px;
	width: 260px;
	height: 260px;
}

.nc-cta-panel > * {
	position: relative;
	z-index: 1;
}

.nc-cta-panel h2 {
	margin: 13px 0 8px;
	color: white;
	font-size: 38px;
	letter-spacing: -.03em;
	line-height: 1.25;
}

.nc-cta-panel p {
	margin: 0;
	color: #d8e7ff;
}

.nc-page-hero {
	position: relative;
	overflow: hidden;
	padding: 105px 0 80px;
	background:
		radial-gradient(circle at 75% 20%, rgba(36, 107, 253, .16), transparent 30%),
		linear-gradient(135deg, #f8faff, #eef4ff);
	text-align: center;
}

.nc-page-hero::after {
	position: absolute;
	inset: 0;
	opacity: .5;
	background-image: radial-gradient(#bdd0f5 1px, transparent 1px);
	background-size: 28px 28px;
	content: "";
	mask-image: linear-gradient(to bottom, transparent, black 50%, transparent);
}

.nc-page-hero .nc-container {
	position: relative;
	z-index: 1;
}

.nc-page-hero h1 {
	max-width: 820px;
	margin: 16px auto;
	color: var(--nc-ink);
	font-size: clamp(40px, 5vw, 62px);
	letter-spacing: -.045em;
	line-height: 1.15;
}

.nc-page-hero p {
	max-width: 670px;
	margin: 0 auto;
	color: var(--nc-muted);
	font-size: 17px;
}

.nc-page-hero-description p {
	max-width: 670px;
	margin: 0 auto;
	color: var(--nc-muted);
	font-size: 17px;
}

.nc-page-hero-compact {
	padding: 78px 0 62px;
}

.nc-page-hero-compact h1 {
	font-size: clamp(36px, 4vw, 50px);
}

.nc-breadcrumb {
	display: flex;
	justify-content: center;
	margin-bottom: 18px;
	gap: 8px;
	color: #8490a4;
	font-size: 12px;
}

.nc-breadcrumb a:hover {
	color: var(--nc-primary);
}

.nc-page-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 330px;
	align-items: start;
	gap: 64px;
}

.nc-content {
	min-width: 0;
	color: #334059;
	font-size: 17px;
	line-height: 1.85;
}

.nc-content > * {
	max-width: 780px;
	margin-right: auto;
	margin-left: auto;
}

.nc-content > .alignwide {
	max-width: 1040px;
}

.nc-content > .alignfull {
	max-width: none;
}

.nc-content h2,
.nc-content h3,
.nc-content h4 {
	margin-top: 1.8em;
	color: var(--nc-ink);
	line-height: 1.35;
}

.nc-content h2 {
	font-size: 30px;
}

.nc-content h3 {
	font-size: 23px;
}

.nc-content a {
	color: var(--nc-primary);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.nc-content blockquote {
	padding: 18px 24px;
	border-left: 4px solid var(--nc-primary);
	border-radius: 0 12px 12px 0;
	background: var(--nc-mist);
	color: #44516a;
}

.nc-content img {
	border-radius: 16px;
}

.nc-content pre {
	overflow-x: auto;
	padding: 22px;
	border-radius: 14px;
	background: #111a2b;
	color: #dce7f7;
}

.nc-sidebar-card {
	position: sticky;
	top: 106px;
	padding: 27px;
	border: 1px solid var(--nc-line);
	border-radius: var(--nc-radius);
	background: white;
	box-shadow: 0 15px 50px rgba(17, 32, 66, .07);
}

.nc-sidebar-card h2 {
	margin: 0 0 10px;
	color: var(--nc-ink);
	font-size: 22px;
}

.nc-sidebar-card p {
	margin: 0 0 18px;
	color: var(--nc-muted);
	font-size: 13px;
}

.nc-sidebar-card .nc-button {
	width: 100%;
}

.nc-filter-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 35px;
	padding: 13px 16px;
	gap: 18px;
	border: 1px solid var(--nc-line);
	border-radius: 15px;
	background: white;
}

.nc-filter-options {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.nc-filter-options a {
	padding: 7px 13px;
	border-radius: 8px;
	color: var(--nc-muted);
	font-size: 13px;
	font-weight: 650;
}

.nc-filter-options a:hover,
.nc-filter-options a.is-active {
	background: #edf3ff;
	color: var(--nc-primary);
}

.nc-filter-search {
	display: flex;
	min-width: 245px;
}

.nc-filter-search input {
	width: 100%;
	min-height: 38px;
	padding: 0 12px;
	border: 1px solid var(--nc-line);
	border-radius: 8px 0 0 8px;
	outline: 0;
}

.nc-filter-search button {
	padding: 0 13px;
	border: 0;
	border-radius: 0 8px 8px 0;
	background: var(--nc-ink);
	color: white;
}

.nc-post-meta {
	display: flex;
	justify-content: center;
	margin-top: 20px;
	gap: 8px;
	color: #8590a2;
	font-size: 12px;
}

.nc-post-featured {
	width: min(calc(100% - 48px), 1100px);
	margin: -35px auto 70px;
}

.nc-post-featured img {
	width: 100%;
	max-height: 620px;
	border-radius: 25px;
	box-shadow: var(--nc-shadow);
	object-fit: cover;
}

.nc-case-summary {
	display: grid;
	grid-template-columns: 1.35fr .65fr;
	margin-bottom: 60px;
	gap: 60px;
}

.nc-case-summary h2 {
	margin: 0 0 16px;
	color: var(--nc-ink);
	font-size: 34px;
}

.nc-case-facts {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1px;
	border: 1px solid var(--nc-line);
	border-radius: 16px;
	background: var(--nc-line);
}

.nc-case-facts div {
	padding: 18px;
	background: white;
}

.nc-case-facts div:first-child {
	border-radius: 15px 0 0;
}

.nc-case-facts small,
.nc-case-facts strong {
	display: block;
}

.nc-case-facts small {
	color: #8b96a7;
	font-size: 11px;
}

.nc-case-facts strong {
	margin-top: 4px;
	color: var(--nc-ink);
	font-size: 13px;
}

.nc-results {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin: 55px 0;
	gap: 14px;
}

.nc-results div {
	padding: 28px;
	border-radius: 17px;
	background: #f1f5ff;
}

.nc-results strong,
.nc-results span {
	display: block;
}

.nc-results strong {
	color: var(--nc-primary);
	font-size: 32px;
}

.nc-results span {
	margin-top: 6px;
	color: var(--nc-muted);
	font-size: 12px;
}

.nc-pagination,
.navigation.pagination {
	margin-top: 50px;
	text-align: center;
}

.page-numbers {
	display: inline-grid;
	width: 40px;
	height: 40px;
	margin: 0 3px;
	place-items: center;
	border: 1px solid var(--nc-line);
	border-radius: 8px;
	color: var(--nc-muted);
	font-size: 13px;
}

.page-numbers.current,
.page-numbers:hover {
	border-color: var(--nc-primary);
	background: var(--nc-primary);
	color: white;
}

.nc-empty {
	padding: 70px 30px;
	border: 1px dashed #ccd5e2;
	border-radius: var(--nc-radius);
	background: var(--nc-mist);
	text-align: center;
}

.nc-empty h2 {
	margin: 0 0 8px;
	color: var(--nc-ink);
}

.nc-empty p {
	margin: 0;
	color: var(--nc-muted);
}

.nc-detail-hero {
	position: relative;
	overflow: hidden;
	padding: 100px 0 90px;
	background:
		radial-gradient(circle at 80% 15%, rgba(36,107,253,.2), transparent 30%),
		#091426;
	color: white;
}

.nc-detail-hero::after {
	position: absolute;
	inset: 0;
	opacity: .13;
	background-image: linear-gradient(rgba(255,255,255,.15) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.15) 1px,transparent 1px);
	background-size: 56px 56px;
	content: "";
	mask-image: linear-gradient(to right,transparent,black);
}

.nc-detail-hero-inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	align-items: center;
	gap: 80px;
}

.nc-detail-hero h1 {
	margin: 17px 0;
	color: white;
	font-size: clamp(44px,5vw,66px);
	letter-spacing: -.05em;
	line-height: 1.12;
}

.nc-detail-hero p {
	color: #aebbd0;
	font-size: 17px;
}

.nc-detail-architecture {
	position: relative;
	min-height: 340px;
}

.nc-detail-architecture > div span {
	position: absolute;
	display: grid;
	width: 155px;
	height: 82px;
	place-items: center;
	border: 1px solid rgba(255,255,255,.15);
	border-radius: 16px;
	background: rgba(255,255,255,.06);
	color: #cfddf0;
	font-size: 12px;
}

.nc-detail-architecture > div span:nth-child(1) { top: 10px; left: 20px; }
.nc-detail-architecture > div span:nth-child(2) { top: 125px; right: 0; }
.nc-detail-architecture > div span:nth-child(3) { bottom: 15px; left: 0; }

.nc-detail-architecture > strong {
	position: absolute;
	top: 115px;
	left: 135px;
	display: grid;
	width: 110px;
	height: 110px;
	place-items: center;
	border: 1px solid rgba(53,198,244,.4);
	border-radius: 50%;
	background: linear-gradient(135deg,rgba(36,107,253,.35),rgba(53,198,244,.15));
	text-align: center;
}

.nc-icon-card {
	padding: 28px;
	border: 1px solid var(--nc-line);
	border-radius: var(--nc-radius);
	background: white;
}

.nc-icon-card > span {
	display: grid;
	width: 38px;
	height: 38px;
	place-items: center;
	border-radius: 11px;
	background: #edf3ff;
	color: var(--nc-primary);
}

.nc-icon-card h3 {
	margin: 18px 0 0;
	color: var(--nc-ink);
}

.nc-check-list {
	margin: 25px 0 0;
	padding: 0;
	list-style: none;
}

.nc-check-list li {
	margin: 10px 0;
	padding: 14px 16px;
	border: 1px solid #dde3ed;
	border-radius: 10px;
	background: white;
}

.nc-check-list li::before {
	margin-right: 10px;
	color: var(--nc-primary);
	content: "✓";
	font-weight: 800;
}

.nc-case-detail-hero {
	padding: 82px 0 0;
	background: linear-gradient(135deg,#f7faff,#edf3ff);
}

.nc-case-detail-head {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	align-items: end;
	gap: 55px;
}

.nc-case-detail-head h1 {
	margin: 15px 0 22px;
	color: var(--nc-ink);
	font-size: clamp(42px,5vw,65px);
	letter-spacing: -.05em;
	line-height: 1.12;
}

.nc-case-detail-head > div > p {
	color: var(--nc-muted);
	font-size: 17px;
}

.nc-case-visual {
	position: relative;
	min-height: 430px;
}

.nc-case-visual > img {
	position: absolute;
	inset: 35px -40px -45px 0;
	width: calc(100% + 40px);
	height: calc(100% + 10px);
	border: 7px solid #1a2640;
	border-bottom: 0;
	border-radius: 20px 20px 0 0;
	box-shadow: 0 40px 70px rgba(34,67,130,.24);
	object-fit: cover;
	transform: rotate(-2deg);
}

.nc-contact-section {
	background: var(--nc-mist);
}

.nc-contact-layout {
	display: grid;
	grid-template-columns: .8fr 1.2fr;
	align-items: start;
	gap: 60px;
}

.nc-contact-info h1 {
	margin: 14px 0 20px;
	color: var(--nc-ink);
	font-size: 48px;
	line-height: 1.18;
}

.nc-contact-info > p {
	color: var(--nc-muted);
}

.nc-contact-list {
	margin-top: 35px;
}

.nc-contact-list div {
	display: grid;
	grid-template-columns: 42px 1fr;
	padding: 18px 0;
	gap: 14px;
	border-bottom: 1px solid var(--nc-line);
}

.nc-contact-list div > span {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border-radius: 11px;
	background: #eef3ff;
	color: var(--nc-primary);
}

.nc-contact-list p { margin: 0; }
.nc-contact-list strong,.nc-contact-list small { display: block; }
.nc-contact-list strong { color:var(--nc-ink);font-size:14px; }
.nc-contact-list small { color:var(--nc-muted);font-size:12px; }

.nc-form-panel {
	padding: 40px;
	border: 1px solid var(--nc-line);
	border-radius: 24px;
	background: white;
	box-shadow: var(--nc-shadow);
}

.nc-form-panel > h2 { margin:0 0 6px;color:var(--nc-ink);font-size:25px; }
.nc-form-panel > p { margin:0 0 25px;color:var(--nc-muted);font-size:13px; }
.nc-form-panel .nc-content { max-width:none; }

.nc-map-embed {
	overflow: hidden;
	height: 360px;
	margin-top: 60px;
	border-radius: 24px;
}

.nc-map-embed iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

.nc-search-head {
	display: flex;
	max-width: 720px;
	margin: 28px auto 0;
}

.nc-search-head input {
	flex: 1;
	min-height: 54px;
	padding: 0 18px;
	border: 1px solid var(--nc-line);
	border-radius: 12px 0 0 12px;
	background: white;
	box-shadow: 0 15px 40px rgba(20,40,80,.08);
}

.nc-search-head button {
	padding: 0 25px;
	border: 0;
	border-radius: 0 12px 12px 0;
	background: var(--nc-primary);
	color: white;
	font-weight: 700;
}

.nc-search-list {
	max-width: 860px;
}

.nc-search-item {
	padding: 28px 0;
	border-bottom: 1px solid var(--nc-line);
}

.nc-search-item small { color:var(--nc-primary);font-weight:700; }
.nc-search-item h2 { margin:6px 0;color:var(--nc-ink);font-size:23px; }
.nc-search-item p { margin:0;color:var(--nc-muted); }

.nc-404 {
	display: grid;
	min-height: 680px;
	place-items: center;
	padding: 70px 20px;
	background: radial-gradient(circle at 50% 40%,rgba(36,107,253,.13),transparent 28%),#f8faff;
	text-align: center;
}

.nc-404 strong {
	display: block;
	background: linear-gradient(135deg,var(--nc-primary),var(--nc-cyan));
	background-clip: text;
	color: transparent;
	font-size: clamp(110px,18vw,220px);
	font-weight: 900;
	letter-spacing: -.09em;
	line-height: .8;
}

.nc-404 h1 { margin:35px 0 10px;color:var(--nc-ink);font-size:35px; }
.nc-404 p { margin:0 0 26px;color:var(--nc-muted); }

.nc-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.nc-form-field {
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.nc-form-field-full {
	grid-column: 1 / -1;
}

.nc-form-field label {
	color: #364155;
	font-size: 13px;
	font-weight: 700;
}

.nc-form-field label span {
	color: #e64b4b;
}

.nc-form input,
.nc-form textarea,
.nc-form select {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #d8dfeb;
	border-radius: 10px;
	background: white;
	outline: 0;
	transition: border .2s, box-shadow .2s;
}

.nc-form input:focus,
.nc-form textarea:focus,
.nc-form select:focus {
	border-color: var(--nc-primary);
	box-shadow: 0 0 0 4px rgba(36, 107, 253, .1);
}

.nc-form textarea {
	min-height: 140px;
	resize: vertical;
}

.nc-form-consent {
	display: flex;
	align-items: flex-start;
	grid-column: 1 / -1;
	gap: 9px;
	color: var(--nc-muted);
	font-size: 12px;
}

.nc-form-consent input {
	width: auto;
	margin-top: 5px;
}

.nc-form-notice {
	grid-column: 1 / -1;
	padding: 12px 15px;
	border-radius: 10px;
	background: #e9f9f2;
	color: #147a56;
	font-size: 13px;
}

.nc-form-notice.is-error {
	background: #fff0f0;
	color: #b83232;
}

.nc-honeypot {
	position: absolute;
	left: -9999px;
}

.nc-site-footer {
	padding: 75px 0 25px;
	background: #08111f;
	color: #8290a5;
}

.nc-footer-main {
	display: grid;
	grid-template-columns: 1.45fr .8fr .9fr 1fr;
	padding-bottom: 55px;
	gap: 55px;
}

.nc-brand-light {
	color: white;
}

.nc-footer-brand > p {
	max-width: 330px;
	margin: 22px 0;
	font-size: 13px;
}

.nc-footer-qr {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 11px;
}

.nc-footer-qr img {
	width: 58px;
	height: 58px;
	border-radius: 8px;
	object-fit: cover;
}

.nc-footer-column h2 {
	margin: 5px 0 20px;
	color: white;
	font-size: 14px;
}

.nc-footer-links {
	margin: 0;
	padding: 0;
	list-style: none;
}

.nc-footer-links li {
	margin: 10px 0;
}

.nc-footer-links a,
.nc-footer-contact a,
.nc-footer-contact p {
	color: #8290a5;
	font-size: 12px;
}

.nc-footer-links a:hover,
.nc-footer-contact a:hover {
	color: white;
}

.nc-footer-contact {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.nc-footer-contact .nc-footer-phone {
	margin-bottom: 7px;
	color: white;
	font-size: 20px;
	font-weight: 750;
}

.nc-footer-contact p {
	margin: 8px 0 0;
}

.nc-footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, .08);
	font-size: 11px;
}

.nc-footer-bottom p {
	margin: 0;
}

.nc-footer-bottom > div {
	display: flex;
	gap: 20px;
}

.nc-footer-bottom a:hover {
	color: white;
}

.nc-floating-contact {
	position: fixed;
	z-index: 90;
	right: 18px;
	bottom: 22px;
	display: none;
	overflow: hidden;
	border: 1px solid var(--nc-line);
	border-radius: 13px;
	background: white;
	box-shadow: var(--nc-shadow);
}

.nc-floating-contact a {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 8px 16px;
	color: var(--nc-muted);
	font-size: 10px;
}

.nc-floating-contact a + a {
	background: var(--nc-primary);
	color: white;
}

.nc-floating-contact span {
	font-size: 17px;
	line-height: 1.3;
}

.screen-reader-text {
	position: absolute !important;
	overflow: hidden;
	width: 1px;
	height: 1px;
	padding: 0;
	border: 0;
	margin: -1px;
	clip: rect(1px, 1px, 1px, 1px);
	word-wrap: normal !important;
}

@media (max-width: 1100px) {
	.nc-header-inner {
		gap: 20px;
	}

	.nc-nav-list {
		gap: 18px;
	}

	.nc-hero-inner {
		grid-template-columns: 1fr 1fr;
		gap: 34px;
	}

	.nc-dashboard {
		right: -90px;
		left: 0;
	}

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

	.nc-process-list {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px 0;
	}

	.nc-process-item:nth-child(2)::before {
		display: none;
	}

	.nc-footer-main {
		grid-template-columns: 1.3fr .7fr .8fr;
	}

	.nc-footer-contact {
		grid-column: 1 / -1;
	}
}

@media (max-width: 900px) {
	.nc-menu-toggle {
		display: block;
	}

	.nc-header-cta {
		display: none;
	}

	.nc-primary-nav {
		position: fixed;
		top: 78px;
		right: 0;
		bottom: 0;
		left: 0;
		overflow-y: auto;
		padding: 12px 24px 40px;
		background: white;
		visibility: hidden;
		opacity: 0;
		transform: translateY(-8px);
		transition: .2s;
	}

	.admin-bar .nc-primary-nav {
		top: 110px;
	}

	.nc-primary-nav.is-open {
		visibility: visible;
		opacity: 1;
		transform: translateY(0);
	}

	.nc-nav-list {
		display: block;
	}

	.nc-nav-list > li {
		border-bottom: 1px solid var(--nc-line);
	}

	.nc-nav-list > li > a {
		min-height: 58px;
		font-size: 16px;
	}

	.nc-nav-list > li > a::after {
		display: none;
	}

	.nc-nav-list .sub-menu {
		position: static;
		display: block;
		padding: 0 0 12px 15px;
		border: 0;
		box-shadow: none;
		visibility: visible;
		opacity: 1;
		transform: none;
	}

	.nc-hero {
		padding-top: 74px;
	}

	.nc-hero-inner {
		display: block;
	}

	.nc-hero-content {
		padding-bottom: 30px;
		text-align: center;
	}

	.nc-hero-content > p {
		margin-inline: auto;
	}

	.nc-kicker {
		justify-content: center;
	}

	.nc-hero-actions,
	.nc-hero-proof {
		justify-content: center;
	}

	.nc-hero-visual {
		max-width: 650px;
		margin-inline: auto;
	}

	.nc-dashboard {
		right: 30px;
		left: 30px;
		transform: rotateY(-2deg);
	}

	.nc-float-card-code {
		left: 5px;
	}

	.nc-logo-strip {
		display: block;
		text-align: center;
	}

	.nc-logo-strip > div {
		flex-wrap: wrap;
		justify-content: center;
		margin-top: 17px;
	}

	.nc-section-heading {
		display: block;
	}

	.nc-section-heading > p {
		margin-top: 18px;
	}

	.nc-metrics-panel,
	.nc-case-feature,
	.nc-case-feature:nth-child(even),
	.nc-page-layout,
	.nc-case-summary,
	.nc-detail-hero-inner,
	.nc-case-detail-head,
	.nc-contact-layout {
		grid-template-columns: 1fr;
	}

	.nc-case-feature:nth-child(even) .nc-case-feature-media {
		order: initial;
	}

	.nc-case-feature-media {
		min-height: 380px;
	}

	.nc-detail-architecture {
		max-width: 480px;
		margin-inline: auto;
	}

	.nc-footer-main {
		grid-template-columns: 1fr 1fr;
	}

	.nc-footer-brand {
		grid-column: 1 / -1;
	}

	.nc-sidebar-card {
		position: static;
	}
}

@media (max-width: 680px) {
	.nc-container {
		width: min(calc(100% - 32px), var(--nc-container));
	}

	.nc-announcement .nc-container {
		align-items: center;
		justify-content: space-between;
	}

	.nc-header-inner {
		min-height: 68px;
	}

	.nc-brand-copy strong {
		font-size: 17px;
	}

	.nc-primary-nav {
		top: 68px;
	}

	.nc-hero {
		padding-top: 58px;
	}

	.nc-hero h1 {
		font-size: 39px;
	}

	.nc-hero-content > p {
		font-size: 16px;
	}

	.nc-hero-actions {
		flex-direction: column;
	}

	.nc-hero-actions .nc-button {
		width: 100%;
	}

	.nc-hero-proof {
		text-align: left;
	}

	.nc-hero-visual {
		min-height: 395px;
	}

	.nc-dashboard {
		top: 10px;
		right: 0;
		left: 0;
	}

	.nc-dashboard-body {
		padding: 22px;
	}

	.nc-dashboard-chart {
		height: 115px;
	}

	.nc-dashboard-title strong {
		font-size: 26px;
	}

	.nc-float-card-users {
		display: none;
	}

	.nc-float-card-code {
		bottom: 5px;
		left: 10px;
	}

	.nc-logo-strip {
		padding-block: 22px;
	}

	.nc-logo-strip > div {
		gap: 15px 24px;
	}

	.nc-logo-strip strong {
		font-size: 12px;
	}

	.nc-section {
		padding: 72px 0;
	}

	.nc-section-heading {
		margin-bottom: 32px;
	}

	.nc-section-heading h2 {
		font-size: 34px;
	}

	.nc-grid-3,
	.nc-grid-2,
	.nc-metrics-panel,
	.nc-metrics-grid,
	.nc-results,
	.nc-form {
		grid-template-columns: 1fr;
	}

	.nc-metrics-section {
		padding-top: 5px;
	}

	.nc-metrics-panel {
		padding: 42px 28px;
		gap: 34px;
	}

	.nc-metrics-copy h2 {
		font-size: 31px;
	}

	.nc-metrics-grid > div {
		min-height: 100px;
		padding: 20px 0;
		border-right: 0;
	}

	.nc-metrics-grid > div:nth-last-child(2) {
		border-bottom: 1px solid rgba(255, 255, 255, .1);
	}

	.nc-metrics-grid strong {
		font-size: 37px;
	}

	.nc-case-feature-media {
		min-height: 270px;
	}

	.nc-case-feature-copy {
		padding: 30px 25px;
	}

	.nc-case-feature h3 {
		font-size: 25px;
	}

	.nc-process-list {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.nc-process-item {
		display: grid;
		grid-template-columns: 35px 1fr;
		padding: 0;
		gap: 15px;
	}

	.nc-process-item::before {
		top: 38px;
		bottom: -30px;
		left: 15px;
		width: 1px;
		height: auto;
	}

	.nc-process-item:nth-child(2)::before {
		display: block;
	}

	.nc-process-item:last-child::before {
		display: none;
	}

	.nc-process-item h3 {
		margin: 0 0 5px;
	}

	.nc-stack-row {
		display: block;
		margin-top: 48px;
	}

	.nc-stack-row > div {
		margin-top: 15px;
	}

	.nc-cta-section {
		padding-bottom: 70px;
	}

	.nc-cta-panel {
		display: block;
		padding: 42px 27px;
		text-align: center;
	}

	.nc-cta-panel h2 {
		font-size: 30px;
	}

	.nc-cta-panel .nc-button {
		width: 100%;
		margin-top: 25px;
	}

	.nc-page-hero,
	.nc-page-hero-compact {
		padding: 65px 0 50px;
	}

	.nc-page-hero h1 {
		font-size: 38px;
	}

	.nc-post-featured {
		width: calc(100% - 32px);
		margin-bottom: 45px;
	}

	.nc-filter-bar {
		display: block;
	}

	.nc-filter-search {
		min-width: 0;
		margin-top: 13px;
	}

	.nc-case-facts {
		grid-template-columns: 1fr;
	}

	.nc-footer-main {
		grid-template-columns: 1fr 1fr;
		gap: 35px 25px;
	}

	.nc-footer-brand,
	.nc-footer-contact {
		grid-column: 1 / -1;
	}

	.nc-footer-bottom {
		display: block;
		padding-bottom: 55px;
	}

	.nc-footer-bottom > div {
		margin-top: 12px;
	}

	.nc-floating-contact {
		display: flex;
	}

	.nc-form-field-full,
	.nc-form-consent,
	.nc-form-notice {
		grid-column: auto;
	}

	.nc-detail-hero { padding:66px 0 50px; }
	.nc-detail-hero h1 { font-size:40px; }
	.nc-detail-architecture { min-height:300px;transform:scale(.86);transform-origin:top center; }
	.nc-case-visual { min-height:300px; }
	.nc-contact-info h1 { font-size:38px; }
	.nc-form-panel { padding:27px 20px; }
}

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

	*,
	*::before,
	*::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
	}
}
