/* Mobile off-canvas overrides + motion helpers (Tailwind handles main layout) */

:root {
	--page-shell-max: 85vw;
	--page-shell-gutter: 1.5rem;
}

/* Keep all page sections and nav aligned to one shell width */
.max-w-page {
	max-width: min(var(--page-shell-max), calc(100vw - var(--page-shell-gutter) * 2));
}

/* Only remove horizontal padding for page content area */
main .max-w-page {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

body.hc-nav-open .pa-mobile-main-logo {
	opacity: 0;
}

.hc-offcanvas-nav {
	font-family: "Blinker", sans-serif;
}

.hc-offcanvas-nav .nav-container,
.hc-offcanvas-nav .nav-wrapper,
.hc-offcanvas-nav ul {
	background: #ffffff;
}

.hc-offcanvas-nav .nav-content > .nav-close:first-child a,
.hc-offcanvas-nav .nav-title + .nav-close a.has-label,
.hc-offcanvas-nav li.nav-close a,
.hc-offcanvas-nav .nav-back a {
	background: #f8fafc;
	border-top: 1px solid rgba(45, 136, 255, 0.15);
	border-bottom: 1px solid rgba(45, 136, 255, 0.15);
}

.hc-offcanvas-nav .nav-item-link,
.hc-offcanvas-nav li.nav-close a,
.hc-offcanvas-nav .nav-back a,
.hc-offcanvas-nav a.nav-next {
	border-bottom: 1px solid rgba(15, 23, 42, 0.08);
	color: #334155;
}

.hc-offcanvas-nav::after,
.hc-offcanvas-nav .nav-wrapper::after {
	background: rgba(15, 23, 42, 0.35);
}

.hc-nav-trigger span,
.hc-nav-trigger span::before,
.hc-nav-trigger span::after {
	background-color: #1e293b;
}

li.custom-content.pa-mobile-menu-logo {
	position: absolute;
	top: 0;
	padding-left: 15px;
	width: 100%;
	background: #ffffff;
	border-bottom: 1px solid rgba(45, 136, 255, 0.15);
}

/* Scrolled navbar — frosted backdrop within nav width */
.pa-navbar {
	height: 99px;
	width: min(100%, var(--page-shell-max));
	padding-left: var(--page-shell-gutter);
	padding-right: var(--page-shell-gutter);
}

.pa-navbar::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	opacity: 0;
	pointer-events: none;
	transition: opacity 450ms ease;
}

.pa-navbar.pa-navbar-scrolled::before {
	opacity: 1;
	background: rgba(255, 255, 255, 0.95);
	border: 0.5px solid rgba(15, 23, 42, 0.08);
	box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}

ul.navbar-nav {
	margin-top: 66px;
	overflow: hidden;
}

@media all and (max-width: 1199px) {
	.pa-navbar .hc-nav-trigger {
		top: 50%;
		margin-top: -12px;
	}
}

@media all and (min-width: 1200px) {
	ul.navbar-nav {
		margin-top: 0;
		overflow: visible;
	}
}

/* Language dropdown */
.lang-switcher__menu {
	opacity: 0;
	visibility: hidden;
	transform: translateY(4px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.lang-switcher.is-open .lang-switcher__menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.lang-switcher.is-open .lang-switcher__chevron {
	transform: rotate(180deg);
}

.pa-navbar .nav-link::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 28px;
	width: 0;
	height: 2px;
	background: #2d88ff;
	border-radius: 999px;
	transform: translateX(-50%);
	transition: width 0.35s ease;
	box-shadow: 0 0 10px rgba(45, 136, 255, 0.35);
}

@media all and (min-width: 1200px) {
	.pa-navbar .nav-link:hover::after,
	.pa-navbar .nav-link:focus-visible::after {
		width: 28px;
	}
}

@media all and (min-width: 1200px) {
	li.custom-content.pa-mobile-menu-logo,
	.pa-mobile-main-logo {
		display: none;
	}
}

/* Hero — light frosted mask over video */
.hero-video-mask {
	overflow: hidden;
	background: rgba(255, 255, 255, 0.72);
}

.hero-video-mask::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(
		to right,
		rgba(255, 255, 255, 0.88) 0%,
		rgba(255, 255, 255, 0.65) 50%,
		rgba(255, 255, 255, 0.45) 100%
	);
}

.hero-video-mask::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	background: radial-gradient(circle at 20% 20%, rgba(45, 136, 255, 0.1), transparent 45%);
}

body.pa-homepage .hero-video-mask {
	display: none;
}

body.pa-homepage #top {
	aspect-ratio: auto;
	min-height: 100dvh;
}

body.pa-homepage #top .hero-eyebrow,
body.pa-homepage #top .hero-subtitle,
body.pa-homepage #top .hero-caption {
	background: rgba(7, 35, 64, 0.76);
	box-shadow: 0 5px 18px rgba(3, 20, 38, 0.28);
	color: #fff;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.42);
}

body.pa-homepage #top .hero-eyebrow,
body.pa-homepage #top .hero-caption {
	border-radius: 999px;
	padding: 0.45rem 0.85rem;
}

body.pa-homepage #top .hero-subtitle {
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 0.6rem;
	padding: 0.65rem 1rem;
	font-weight: 500;
}

body.pa-homepage #top .hero-secondary-action {
	border-color: rgba(255, 255, 255, 0.9);
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 5px 18px rgba(3, 20, 38, 0.28);
	color: #123d6d;
}

body.pa-homepage #top .hero-secondary-action:hover,
body.pa-homepage #top .hero-secondary-action:focus-visible {
	background: #fff;
	color: #0b2e55;
}

body.pa-homepage #top .hero-badges {
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 999px;
	background: rgba(7, 35, 64, 0.72);
	box-shadow: 0 5px 18px rgba(3, 20, 38, 0.24);
	padding: 0.55rem;
}

body.pa-homepage #top .hero-scroll-hint {
	background: transparent;
	box-shadow: none;
	color: #fff;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.58);
}

.hero-shine-line {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	z-index: 3;
	width: 38%;
	pointer-events: none;
	transform: skewX(-12deg);
	background: linear-gradient(
		to right,
		transparent 0%,
		rgba(45, 136, 255, 0.12) 50%,
		transparent 100%
	);
}

.hero-swiper {
	width: auto;
	max-width: min(100vw - 3rem, 56rem);
	height: auto;
}

.hero-swiper .swiper-slide {
	width: auto;
	height: auto;
}

.hero-swiper-pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: rgba(15, 23, 42, 0.2);
	opacity: 1;
	transition: transform 0.35s ease, background-color 0.35s ease;
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
	background: #2d88ff;
	transform: scale(1.15);
	box-shadow: 0 0 14px rgba(45, 136, 255, 0.4);
}

.hero-placeholder-bg {
	background:
		radial-gradient(circle at 20% 30%, rgba(45, 136, 255, 0.12), transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(45, 136, 255, 0.08), transparent 45%),
		linear-gradient(160deg, #ffffff 0%, #f8fafc 45%, #ffffff 100%);
	background-size: 200% 200%;
	animation: hero-bg-shift 18s ease-in-out infinite alternate;
}

.hero-bg-image__photo {
	opacity: 0.55;
}

.hero-bg-image--detail .hero-bg-image__photo {
	opacity: 0.62;
}

.hero-bg-image__overlay {
	background:
		linear-gradient(
			180deg,
			rgba(255, 255, 255, 0.08) 0%,
			rgba(248, 250, 252, 0.04) 42%,
			rgba(255, 255, 255, 0.55) 78%,
			#ffffff 100%
		);
}

.hero-bg-image--detail .hero-bg-image__overlay {
	background:
		linear-gradient(
			180deg,
			rgba(255, 255, 255, 0.06) 0%,
			rgba(248, 250, 252, 0.03) 45%,
			rgba(255, 255, 255, 0.50) 80%,
			#ffffff 100%
		);
}

/* Inner-page banners — fixed 600px (excludes full-viewport product hero) */
section.pushable-content:has(> .hero-bg-image--list),
section.pushable-content:has(> .hero-bg-image--detail):not(.product-hero) {
	height: 600px;
	min-height: 600px !important;
	max-height: 600px;
	padding-top: 99px !important;
	padding-bottom: 0 !important;
	display: flex;
	align-items: center;
	box-sizing: border-box;
	overflow: hidden;
}

section.pushable-content:has(> .hero-bg-image--list) > .relative.z-10,
section.pushable-content:has(> .hero-bg-image--detail):not(.product-hero) > .relative.z-10 {
	width: 100%;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

/* 栏目 Banner 标题/说明：随 85% 版心自适应（禁止 max-w-3xl / Nch 等固定上限） */
section.pushable-content > .relative.z-10 > h1,
section.pushable-content > .relative.z-10 > p.mt-6,
.contact-hero__title,
.contact-hero__lead,
.news-hero__title,
.news-hero__lead,
.about-hero__title,
.about-hero__lead {
	width: auto;
	max-width: 100%;
	overflow-wrap: anywhere;
	text-wrap: pretty;
}

/* Wide banner heroes (e.g. news 1920×650) — fixed display height, not full section */
.hero-bg-image--banner {
	width: 100%;
	height: clamp(260px, 33.854vw, 650px);
	max-height: 650px;
}

.news-hero .hero-bg-image__photo {
	opacity: 0.72;
	object-fit: cover;
	object-position: center center;
}

.news-hero .hero-bg-image__overlay {
	background:
		linear-gradient(
			180deg,
			rgba(255, 255, 255, 0.04) 0%,
			rgba(248, 250, 252, 0) 38%,
			rgba(255, 255, 255, 0.45) 68%,
			rgba(255, 255, 255, 0.88) 88%,
			#ffffff 100%
		);
}

.video-card__trigger {
	cursor: pointer;
}

.video-modal {
	position: fixed;
	inset: 0;
	z-index: 20000;
	display: grid;
	place-items: center;
	padding: 1.5rem;
}

.video-modal[hidden] {
	display: none;
}

.video-modal-open {
	overflow: hidden;
}

.video-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.72);
}

.video-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(960px, 100%);
	border-radius: 0.75rem;
	border: 1px solid rgba(148, 163, 184, 0.35);
	background: #0f172a;
	padding: 1rem;
	box-shadow: 0 24px 80px rgba(15, 23, 42, 0.45);
}

.video-modal__close {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	z-index: 2;
	display: inline-flex;
	height: 2.25rem;
	width: 2.25rem;
	align-items: center;
	justify-content: center;
	border-radius: 9999px;
	border: 1px solid rgba(148, 163, 184, 0.35);
	background: rgba(15, 23, 42, 0.8);
	color: #e2e8f0;
}

.video-modal__media {
	overflow: hidden;
	border-radius: 0.5rem;
	background: #020617;
}

.video-modal__player,
.video-modal__poster {
	display: block;
	width: 100%;
	max-height: min(70vh, 540px);
	object-fit: contain;
	background: #020617;
}

.video-modal__placeholder {
	margin: 0;
	padding: 0.75rem 1rem 1rem;
	font-size: 0.875rem;
	color: #94a3b8;
	text-align: center;
}

.video-modal__title {
	margin: 0.75rem 0 0;
	padding: 0 0.25rem;
	font-size: 0.95rem;
	font-weight: 600;
	color: #e2e8f0;
}

@keyframes hero-bg-shift {
	0% { background-position: 0% 0%; }
	100% { background-position: 100% 100%; }
}

.hero-scroll-hint {
	animation: none;
}

@keyframes hero-scroll-fade {
	0%, 100% { opacity: 0.5; }
	50% { opacity: 1; }
}

.media-placeholder {
	background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
	position: relative;
	overflow: hidden;
}

.media-placeholder::before {
	content: "";
	position: absolute;
	inset: 0;
	opacity: 0.7;
	background: radial-gradient(circle at 30% 40%, rgba(45, 136, 255, 0.12), transparent 55%);
}

.media-placeholder[data-variant="1"]::before {
	background: radial-gradient(circle at 70% 30%, rgba(45, 136, 255, 0.15), transparent 50%);
}

.media-placeholder[data-variant="2"]::before {
	background: radial-gradient(circle at 50% 60%, rgba(45, 136, 255, 0.1), transparent 45%);
}

.media-placeholder[data-variant="3"]::before {
	background: radial-gradient(circle at 20% 70%, rgba(45, 136, 255, 0.14), transparent 50%);
}

.media-placeholder[data-variant="4"]::before {
	background: radial-gradient(circle at 80% 55%, rgba(45, 136, 255, 0.12), transparent 48%);
}

.media-placeholder[data-variant="5"]::before {
	background: radial-gradient(circle at 35% 25%, rgba(45, 136, 255, 0.11), transparent 52%);
}

.media-placeholder[data-variant="6"]::before {
	background: radial-gradient(circle at 60% 75%, rgba(45, 136, 255, 0.13), transparent 46%);
}

.factory-gallery-wrap {
	position: relative;
}

.solution-card {
	min-height: 100%;
}

.solution-card__case {
	transition: border-color 0.2s ease, background-color 0.2s ease;
}

.solution-card:hover .solution-card__case {
	border-color: rgba(45, 136, 255, 0.28);
	background: rgba(45, 136, 255, 0.04);
}

.factory-gallery {
	container-type: inline-size;
	width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior-x: contain;
	-ms-overflow-style: none;
	scrollbar-width: none;
	padding-bottom: 0;
	cursor: grab;
	scroll-behavior: auto;
	scroll-snap-type: none;
}

.factory-gallery.is-dragging {
	cursor: grabbing;
	scroll-behavior: auto;
}

.factory-gallery::-webkit-scrollbar {
	display: none;
}

.lineup-card.product-system-card {
	overflow: hidden;
	padding: 0;
}

.product-system-card__image {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 2.5;
	height: auto;
	margin: 0 0 1.5rem;
	object-fit: cover;
}

.product-system-card > :not(.product-system-card__image) {
	margin-left: 1.75rem;
	margin-right: 1.75rem;
}

.product-system-card > a:last-child {
	margin-bottom: 1.75rem;
}

.application-card__image {
	width: calc(100% + 3rem);
	max-width: none;
	aspect-ratio: 4 / 2.5;
	height: auto;
	margin: -1.5rem -1.5rem 1.25rem;
	object-fit: cover;
}

.solution-card:has(.application-card__image) {
	overflow: hidden;
}

.factory-gallery__track {
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: 1rem;
	width: max-content;
}

.factory-gallery__item {
	flex: 0 0 auto;
	width: calc((100cqw - 2rem) / 3);
	min-width: 220px;
	max-width: 360px;
	margin: 0;
	scroll-snap-align: none;
}

.factory-gallery__nav {
	position: absolute;
	top: 38%;
	z-index: 2;
	display: grid;
	height: 2.5rem;
	width: 2.5rem;
	place-items: center;
	border-radius: 9999px;
	border: 1px solid rgba(148, 163, 184, 0.45);
	background: rgba(255, 255, 255, 0.92);
	color: #334155;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
	transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.factory-gallery__nav:hover {
	border-color: rgba(45, 136, 255, 0.45);
	color: #2d88ff;
	transform: translateY(-1px);
}

.factory-gallery__nav--prev {
	left: -0.25rem;
}

.factory-gallery__nav--next {
	right: -0.25rem;
}

@media (max-width: 639px) {
	.factory-gallery__item {
		width: calc((100% - 1rem) / 1.35);
		min-width: 220px;
	}

	.factory-gallery__nav {
		display: none;
	}
}

.factory-gallery__media {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.factory-gallery__badge {
	position: relative;
	z-index: 1;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #94a3b8;
	background: rgba(255, 255, 255, 0.78);
	padding: 0.25rem 0.65rem;
	border-radius: 9999px;
	border: 1px solid rgba(148, 163, 184, 0.35);
}

.spotlight-section {
	min-height: 32rem;
}

.spotlight-media .media-placeholder {
	opacity: 0.5;
}

.spotlight-overlay {
	background: linear-gradient(
		to bottom,
		rgba(255, 255, 255, 0.88) 0%,
		rgba(248, 250, 252, 0.95) 100%
	);
	pointer-events: none;
}

@media (min-width: 1024px) {
	.spotlight-overlay {
		background: linear-gradient(
			to right,
			rgba(255, 255, 255, 0.96) 0%,
			rgba(255, 255, 255, 0.55) 45%,
			rgba(255, 255, 255, 0.96) 100%
		);
	}

	.spotlight-section:nth-child(even) .spotlight-overlay,
	.spotlight-section.spotlight-reverse .spotlight-overlay {
		background: linear-gradient(
			to left,
			rgba(255, 255, 255, 0.96) 0%,
			rgba(255, 255, 255, 0.55) 45%,
			rgba(255, 255, 255, 0.96) 100%
		);
	}
}

.format-tab.is-active,
.case-filter.is-active {
	border-color: rgba(45, 136, 255, 0.6);
	background: rgba(45, 136, 255, 0.12);
	color: #1d4ed8;
}

.product-hero .hero-video-mask {
	opacity: 0.85;
}

.performance-slider {
	-webkit-appearance: none;
	appearance: none;
	height: 6px;
	border-radius: 999px;
	background: linear-gradient(to right, rgba(45, 136, 255, 0.25), rgba(45, 136, 255, 0.75));
	outline: none;
	cursor: pointer;
}

.performance-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #2d88ff;
	border: 2px solid #ffffff;
	box-shadow: 0 0 16px rgba(45, 136, 255, 0.4);
	cursor: pointer;
}

.performance-slider::-moz-range-thumb {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #2d88ff;
	border: 2px solid #ffffff;
	box-shadow: 0 0 16px rgba(45, 136, 255, 0.4);
	cursor: pointer;
}

details summary::-webkit-details-marker {
	display: none;
}

.cookie-settings-modal {
	position: fixed;
	inset: 0;
	z-index: 21000;
	display: grid;
	place-items: center;
	padding: 1rem;
}

.cookie-settings-modal[hidden] {
	display: none;
}

.cookie-settings-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.65);
}

.cookie-settings-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(640px, 100%);
	border-radius: 0.75rem;
	border: 1px solid rgba(148, 163, 184, 0.35);
	background: #ffffff;
	padding: 1.25rem;
	box-shadow: 0 24px 80px rgba(15, 23, 42, 0.28);
}

.cookie-settings-modal__close {
	position: absolute;
	right: 0.75rem;
	top: 0.75rem;
	height: 2rem;
	width: 2rem;
	border-radius: 9999px;
	border: 1px solid rgba(148, 163, 184, 0.5);
	background: #f8fafc;
	color: #334155;
}

.cookie-settings-item {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 1rem;
	padding: 0.75rem;
	border: 1px solid rgba(148, 163, 184, 0.35);
	border-radius: 0.5rem;
	background: #f8fafc;
}

.cookie-settings-item small {
	display: block;
	margin-top: 0.25rem;
	color: #64748b;
}



/* 04 风格页脚 */
.site-footer {
	background: #0f172a;
	color: rgba(148, 163, 184, 0.85);
	padding-top: 4rem;
	font-family: inherit;
}

.site-footer a {
	text-decoration: none;
}

.site-footer .container {
	width: min(var(--page-shell-max), calc(100vw - var(--page-shell-gutter) * 2));
	max-width: var(--page-shell-max);
	margin-left: auto;
	margin-right: auto;
}

.site-footer__grid {
	grid-template-columns: 1.6fr repeat(5, minmax(0, 1fr));
	gap: 2.125rem;
	display: grid;
}

.site-footer__brand {
	color: #fff;
	align-items: center;
	line-height: 0;
	display: inline-flex;
}

.site-footer__wordmark {
	display: flex;
	flex-direction: column;
	gap: 0.28rem;
	line-height: 1;
}

.site-footer__wordmark strong {
	font-size: 1.45rem;
	letter-spacing: 0.16em;
}

.site-footer__wordmark small {
	color: rgba(203, 213, 225, 0.8);
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.16em;
}

.site-footer__brand-column > p {
	max-width: 320px;
	color: rgba(203, 213, 225, 0.92);
	margin: 1.5rem 0;
	font-size: .875rem;
	line-height: 1.75;
}

.site-footer__socials {
	flex-wrap: wrap;
	align-items: center;
	gap: .625rem;
	margin-top: 1.375rem;
	display: flex;
}

.site-footer__group h2 {
	color: #fff;
	margin: .15rem 0 1.2rem;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.35;
}

.site-footer__group nav {
	gap: .85rem;
	display: grid;
}

.site-footer__group a {
	color: rgba(203, 213, 225, 0.92);
	font-size: .875rem;
	line-height: 1.55;
}

.site-footer__group a:hover,
.site-footer__group a:focus-visible {
	color: #fff;
	outline: none;
}

@media (min-width: 1101px) {
	.site-footer__group {
		justify-self: end;
		text-align: left;
	}

	.site-footer__group nav {
		justify-items: start;
	}
}

.site-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	color: rgba(203, 213, 225, 0.85);
	margin-top: 3.625rem;
	padding: 1.25rem 0;
}

.site-footer__bottom-inner {
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: .75rem;
	display: flex;
}

.site-footer__bottom small,
.site-footer__bottom a {
	color: inherit;
	font-size: .8125rem;
	line-height: 1.45;
}

.site-footer__bottom nav {
	flex-wrap: wrap;
	gap: 1.3rem;
	display: flex;
}

.site-footer__bottom a:hover,
.site-footer__bottom a:focus-visible {
	color: #fff;
	outline: none;
}

@media (width <= 1100px) {
	.site-footer__grid {
		grid-template-columns: 1.4fr repeat(2, minmax(0, 1fr));
	}
}

@media (width <= 760px) {
	.site-footer {
		padding-top: 3rem;
	}

	.site-footer__grid {
		grid-template-columns: 1fr 1fr;
	}

	.site-footer__brand-column {
		grid-column: 1 / -1;
	}

	.site-footer__bottom-inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.site-footer__bottom nav {
		gap: .8rem 1rem;
	}
}

@media (width <= 480px) {
	.site-footer__grid {
		grid-template-columns: 1fr;
	}

	.site-footer__brand-column {
		grid-column: auto;
	}
}

/* 04风格下拉导航样式（迁移版） */
.site-header-frame {
  display: contents;
  --hu-color-brand: #165daa;
  --hu-color-brand-strong: #124c89;
  --hu-color-bg-page: #ffffff;
  --hu-color-bg-soft: #f8fafc;
  --hu-color-bg-inverse: #0f172a;
  --hu-color-text-primary: #0f172a;
  --hu-color-text-inverse: #ffffff;
  --hu-color-text-secondary: #5d6775;
  --hu-color-border: #e2e8f0;
  --hu-shadow-md: 0 4px 14px rgba(15, 23, 42, 0.12);
  --hu-space: 1rem;
}

.site-utility {
  height: 34px;
  border-bottom: 1px solid var(--hu-color-border);
  background: var(--hu-color-bg-soft);
  color: var(--hu-color-text-primary);
  font-size: 0.6875rem;
}

.site-utility__inner {
  max-width: min(var(--page-shell-max), calc(100vw - var(--page-shell-gutter) * 2));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--hu-space);
}

.site-utility__tagline {
  overflow: hidden;
  color: var(--hu-color-text-primary);
  font-weight: 500;
  letter-spacing: 0.01em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-utility__links {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: 100%;
  gap: 1.125rem;
}

.site-utility__links a,
.site-utility__links button {
  display: inline-flex;
  align-items: center;
  height: 100%;
  margin: 0;
  padding: 0;
  gap: 0.375rem;
  border: 0;
  background: none;
  color: inherit;
  font-size: inherit;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.site-utility__links a:hover,
.site-utility__links a:focus-visible,
.site-utility__links button:hover,
.site-utility__links button:focus-visible {
  color: var(--hu-color-brand-strong);
  outline: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 78px;
  border-bottom: 1px solid var(--hu-color-border);
  background: var(--hu-color-bg-page);
  box-shadow: 0 1px 0 color-mix(in srgb, var(--hu-color-bg-inverse) 8%, transparent);
}

body.pa-homepage .site-header {
  position: absolute;
  width: 100%;
  border-bottom-color: transparent;
  background: transparent;
  box-shadow: none;
  transition: background-color 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

body.pa-homepage .site-header.is-scrolled,
body.pa-homepage .site-header.is-menu-open {
  position: fixed;
  border-bottom-color: var(--hu-color-border);
  background: var(--hu-color-bg-page);
  box-shadow: 0 1px 0 color-mix(in srgb, var(--hu-color-bg-inverse) 8%, transparent);
}

body.pa-homepage .site-header:not(.is-scrolled):not(.is-menu-open),
body.pa-homepage .site-header:not(.is-scrolled):not(.is-menu-open) .site-header__brand,
body.pa-homepage .site-header:not(.is-scrolled):not(.is-menu-open) .site-header__nav-link,
body.pa-homepage .site-header:not(.is-scrolled):not(.is-menu-open) .site-header__mobile-toggle {
  color: #fff;
}

body.pa-homepage .site-header:not(.is-scrolled):not(.is-menu-open) .site-header__brand-tagline {
	color: rgba(255, 255, 255, 0.78);
}

/* Language chip keeps dark text on white pill (do not inherit hero white) */
body.pa-homepage .site-header:not(.is-scrolled):not(.is-menu-open) .site-header__language {
	color: var(--hu-color-text-primary);
	border-color: rgba(255, 255, 255, 0.55);
	background: rgba(255, 255, 255, 0.96);
}

body.pa-homepage .site-header:not(.is-scrolled):not(.is-menu-open) .site-header__quote {
	box-shadow: none;
	border-color: rgba(255, 255, 255, 0.7);
}

.site-header__row {
  max-width: min(var(--page-shell-max), calc(100vw - var(--page-shell-gutter) * 2));
  margin-inline: auto;
  display: flex;
  align-items: center;
  height: 100%;
  gap: 1.25rem;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.site-header__brand {
  gap: 0.65rem;
  color: #123d6d;
  font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
  line-height: 1;
  text-decoration: none;
}

.site-header__brand-mark {
  width: 2.15rem;
  height: 2.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-header__brand-name {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.site-header__brand-tagline {
  padding-left: 0.6rem;
  border-left: 1px solid color-mix(in srgb, currentColor 25%, transparent);
  color: #52708e;
	font-size: 1.35rem;
	font-weight: 600;
	letter-spacing: 0.08em;
}

@media (max-width: 600px) {
  .site-header__brand {
    gap: 0.45rem;
  }

  .site-header__brand-mark {
    width: 1.85rem;
    height: 1.85rem;
  }

  .site-header__brand-name {
    font-size: 1.16rem;
  }

  .site-header__brand-tagline {
    display: none;
  }
}

.site-header__navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  gap: 1.35rem;
}

.site-header__nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 78px;
  margin: 0;
  padding: 0;
  gap: 0.4rem;
  border: 0;
  background: none;
  color: var(--hu-color-text-primary);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.site-header__nav-link i {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-bottom: 2px;
  border-right: 1.4px solid currentColor;
  border-bottom: 1.4px solid currentColor;
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.site-header__nav-link:hover,
.site-header__nav-link:focus-visible,
.site-header__nav-link.is-open,
.site-header__nav-link.is-active,
.site-header__nav-link.is-open i,
.site-header__nav-link.is-active i {
  color: var(--hu-color-brand);
  outline: none;
}

.site-header__nav-link.is-open i {
  transform: rotate(225deg) translate(-1px, -1px);
}

.site-header__quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-sizing: border-box;
  min-height: 2.2rem;
  height: 2.2rem;
  padding: 0 1.15rem;
  border: 1px solid color-mix(in srgb, var(--hu-color-brand) 28%, #ffffff);
  border-radius: 8px;
  background: var(--hu-color-brand);
  box-shadow: var(--hu-shadow-md);
  color: var(--hu-color-text-inverse);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.site-header__quote:hover,
.site-header__quote:focus-visible {
  background: var(--hu-color-brand-strong);
  outline: none;
}

.site-header__mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: none;
  color: var(--hu-color-text-primary);
  cursor: pointer;
}

.site-header__mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  left: 0;
  z-index: 110;
  width: 100%;
  color: var(--hu-color-text-primary);
}

.mega-menu__grid {
  max-width: min(var(--page-shell-max), calc(100vw - var(--page-shell-gutter) * 2));
  margin-inline: auto;
  display: grid;
  overflow: hidden;
  padding: 1.95rem 1.25rem 2.05rem;
  border: 1px solid var(--hu-color-border);
  border-radius: 12px;
  background: var(--hu-color-bg-page);
  box-shadow: 0 18px 40px color-mix(in srgb, var(--hu-color-bg-inverse) 12%, transparent);
}

.mega-menu__grid--standard {
  grid-template-columns: 1fr 1fr 1fr;
}

.mega-menu__grid--products {
  grid-template-columns: 22% 22% 22% 34%;
}

@media (min-width: 1101px) {
  .mega-menu__grid--products .mega-menu__promo {
    grid-column: 4;
    grid-row: 1;
  }
}

.mega-menu__grid--quad {
  grid-template-columns: 20% 20% 60%;
}

@media (min-width: 1101px) {
  .mega-menu__grid--quad {
    --mega-promo-min-height: 21rem;
    align-items: stretch;
    gap: 1rem;
    /* Equal columns: promo + link groups share width evenly */
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .mega-menu__grid--quad .mega-menu__promo {
    grid-column: 1;
    grid-row: 1;
    min-height: 0;
    align-self: start;
    aspect-ratio: var(--mega-promo-ratio, 3 / 2);
    height: auto;
    margin-left: 0;
  }

  .mega-menu__grid--quad .mega-menu__column:nth-of-type(1) { grid-column: 2; grid-row: 1; }
  .mega-menu__grid--quad .mega-menu__column:nth-of-type(2) { grid-column: 3; grid-row: 1; }
  .mega-menu__grid--quad .mega-menu__column:nth-of-type(3) { grid-column: 4; grid-row: 1; }

  /* Promo + 2 link columns */
  .mega-menu__grid--quad:has(> .mega-menu__column:nth-of-type(2):last-of-type) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  /* Promo + 1 link column */
  .mega-menu__grid--quad:has(> .mega-menu__column:only-of-type) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mega-menu__grid--quad:has(> .mega-menu__column:only-of-type) .mega-menu__column {
    grid-column: 2;
    grid-row: 1;
  }

  .mega-menu__grid--quad .mega-menu__column {
    min-height: var(--mega-promo-min-height);
    border: 1px solid var(--hu-color-border);
    border-radius: 10px;
    background: var(--hu-color-bg-page);
    box-shadow: 0 4px 16px color-mix(in srgb, var(--hu-color-bg-inverse) 5%, transparent);
  }

  .mega-menu__grid--quad .mega-menu__column,
  .mega-menu__grid--quad .mega-menu__column:first-of-type {
    padding: 1.25rem;
    border-left: 1px solid var(--hu-color-border);
  }

  .mega-menu__grid--quad .mega-menu__links {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
}

@media (min-width: 901px) {
  .site-header__row {
    position: relative;
  }

  .site-header__navigation {
    position: absolute;
    left: 50%;
    width: max-content;
    flex: none;
    justify-content: center;
    transform: translateX(-50%);
  }

  .site-header__quote {
    margin-left: auto;
  }

  .site-header__language {
    position: absolute;
    top: 50%;
    right: calc(108px + 0.75rem);
    margin-left: 0;
    transform: translateY(-50%);
  }
}

@media (min-width: 1200px) {
  .site-header__navigation {
    gap: 1.75rem;
  }
}

.site-header__nav-link {
  font-weight: 400;
}

.mega-menu__links a {
  font-weight: 400;
}

.site-header__language {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 2.2rem;
  height: 2.2rem;
  padding: 0 0.75rem;
  gap: 0.38rem;
  border: 1px solid color-mix(in srgb, var(--hu-color-brand) 16%, var(--hu-color-border));
  border-radius: 999px;
  background: var(--hu-color-bg-page);
  color: var(--hu-color-text-primary);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1;
}

.site-header__language svg {
  width: 0.92rem;
  height: 0.92rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.site-header__language i {
  width: 0.36rem;
  height: 0.36rem;
  margin-top: -0.2rem;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  opacity: 0.55;
  transform: rotate(45deg);
}

@media (max-width: 900px) {
  .site-header__language {
    display: none;
  }
}

.mega-menu__column {
  min-width: 0;
  padding: 0 1.35rem;
  border-left: 1px solid var(--hu-color-border);
}

.mega-menu__column:first-of-type {
  padding-left: 0.35rem;
  border-left: 0;
}

.mega-menu__column h2 {
  margin: 0 0 1rem;
  color: var(--hu-color-brand);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
}

.mega-menu__subheading {
  margin-top: 1.45rem !important;
}

.mega-menu__links {
  display: grid;
  gap: 0.28rem;
}

.mega-menu__links a {
  display: flex;
  align-items: center;
  min-height: 2.15rem;
  margin-inline: -0.4rem;
  padding: 0.5rem 0.4rem;
  gap: 0.65rem;
  border-radius: 4px;
  color: var(--hu-color-text-primary);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.35;
  text-decoration: none;
}

.mega-menu__links a::after {
  content: "";
  width: 0.35rem;
  height: 0.35rem;
  margin-left: auto;
  flex: 0 0 auto;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  opacity: 0.45;
  transform: rotate(45deg);
}

.mega-menu__links a:hover,
.mega-menu__links a:focus-visible {
  background: color-mix(in srgb, var(--hu-color-brand) 10%, transparent);
  color: var(--hu-color-brand);
  outline: none;
}

.mega-menu__promo {
  position: relative;
  display: block;
  align-self: start;
  min-width: 0;
  aspect-ratio: var(--mega-promo-ratio, 3 / 2);
  height: auto;
  margin-left: 0.45rem;
  overflow: hidden;
  border: 1px solid var(--hu-color-border);
  border-radius: 5px;
  background: var(--hu-color-bg-page);
  box-shadow: 0 4px 16px color-mix(in srgb, var(--hu-color-bg-inverse) 6%, transparent);
  color: var(--hu-color-text-primary);
  text-decoration: none;
  transition: border-color 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}

@media (min-width: 1101px) {
  .mega-menu__promo {
    height: 320px;
    aspect-ratio: var(--mega-promo-ratio, 3 / 2);
  }

  .mega-menu__grid--quad .mega-menu__promo {
    height: 320px;
    aspect-ratio: auto;
  }

  /* All desktop promo cards share one visual height. The generated subjects
     were composed with an inset safety margin, so cover only removes surplus
     edge area instead of primary content. */
  .mega-menu__promo > img {
    object-fit: cover;
  }
}

.mega-menu__promo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

/* Text-only promo cards (no image yet) */
.mega-menu__promo:not(:has(> img)) {
  display: flex;
  align-items: stretch;
  background:
    linear-gradient(
      145deg,
      color-mix(in srgb, var(--hu-color-brand) 12%, var(--hu-color-bg-soft)),
      var(--hu-color-bg-page)
    );
}

.mega-menu__promo:not(:has(> img)) .mega-menu__promo-body {
  position: static;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  margin: 0.75rem;
  background: color-mix(in srgb, var(--hu-color-bg-page) 92%, transparent);
}

.mega-menu__promo-body {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  display: flex;
  flex-direction: column;
  padding: 0.9rem 1rem 1rem;
  gap: 0.45rem;
  border-radius: 6px;
  background: color-mix(in srgb, var(--hu-color-bg-page) 78%, transparent);
  box-shadow: 0 4px 14px color-mix(in srgb, var(--hu-color-bg-inverse) 8%, transparent);
  backdrop-filter: blur(3px);
}

.mega-menu__promo-body strong {
  color: var(--hu-color-text-primary);
  font-size: 1rem;
  line-height: 1.3;
}

.mega-menu__promo-body span {
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.5;
}

.mega-menu__promo-body b {
  color: var(--hu-color-brand);
  font-size: 0.84rem;
  line-height: 1.3;
}

.mega-menu__close {
  display: none;
}


.site-header__scrim {
  position: fixed;
  inset: 0;
  z-index: 90;
  margin: 0;
  padding: 0;
  border: 0;
  background: color-mix(in srgb, var(--hu-color-bg-inverse) 28%, transparent);
  cursor: default;
}

@media (max-width: 1100px) {
  .mega-menu__grid--standard,
  .mega-menu__grid--products,
  .mega-menu__grid--quad {
    grid-template-columns: 1fr 1fr;
    gap: 1rem 0;
  }

  .mega-menu__promo {
    display: none;
  }
}

@media (max-width: 900px) {
  .site-utility {
    display: none;
  }

  .site-header {
    height: 68px;
  }

  .site-header__row {
    justify-content: space-between;
  }

  .site-header__mobile-toggle {
    display: block;
    order: 3;
  }

  .site-header__navigation {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    z-index: 105;
    display: none;
    align-items: stretch;
    flex-direction: column;
    width: 100%;
    height: auto;
    max-height: calc(100vh - 68px);
    padding: 0.75rem 6% 1.25rem;
    overflow: auto;
    gap: 0;
    background: var(--hu-color-bg-page);
    box-shadow: 0 10px 20px color-mix(in srgb, var(--hu-color-bg-inverse) 12%, transparent);
  }

  .site-header__navigation.is-mobile-open {
    display: flex;
  }

  .site-header__nav-link {
    justify-content: flex-start;
    width: 100%;
    height: auto;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--hu-color-border);
    font-size: 0.9rem;
    text-align: left;
  }

  .site-header__nav-link i {
    margin-left: auto;
  }

  .site-header__quote {
    display: none;
  }

  .mega-menu {
    position: fixed;
    top: 68px;
    bottom: 0;
    z-index: 120;
    overflow: auto;
    background: var(--hu-color-bg-page);
  }

  .mega-menu__column {
    border-left: 0;
    padding: 0;
  }
}

/* Homepage 2026 redesign */
.home-hero {
	position: relative;
	min-height: 100dvh;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	background: #07182c;
	color: #fff;
}

.home-hero__slides,
.home-hero__slide,
.home-hero__veil {
	position: absolute;
	inset: 0;
}

.home-hero__slide {
	margin: 0;
	opacity: 0;
	transition: opacity 1.1s ease;
}

.home-hero__slide.is-active {
	opacity: 1;
}

.home-hero__slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.04);
}

.home-hero__veil {
	background:
		linear-gradient(90deg, rgba(5, 18, 34, 0.82) 0%, rgba(5, 18, 34, 0.42) 46%, rgba(5, 18, 34, 0.18) 100%),
		linear-gradient(180deg, rgba(5, 18, 34, 0.28) 0%, transparent 28%, rgba(5, 18, 34, 0.55) 100%);
}

.home-hero__inner {
	position: relative;
	z-index: 2;
	width: min(var(--page-shell-max), calc(100vw - 3rem));
	max-width: 100%;
	margin: 0 auto 0 7.5vw;
	padding: 8rem 0 6.5rem;
}

.home-hero__eyebrow {
	margin: 0 0 1rem;
	font-size: 0.75rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.82);
}

.home-hero h1 {
	margin: 0;
	font-family: inherit;
	font-size: clamp(2.4rem, 6vw, 4.6rem);
	line-height: 1.12;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.home-hero__lead {
	width: auto;
	max-width: 100%;
	margin: 1.25rem 0 0;
	font-size: 1.05rem;
	line-height: 1.7;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.9);
	overflow-wrap: anywhere;
	text-wrap: pretty;
}

.home-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 2rem;
}

.home-hero__actions--center {
	justify-content: center;
}

.home-hero__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.85rem;
	padding: 0.7rem 1.35rem;
	border-radius: 999px;
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
	transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.home-hero__cta:hover {
	transform: translateY(-1px);
}

.home-hero__cta--primary {
	background: #2d88ff;
	border: 1px solid #2d88ff;
	color: #fff;
}

.home-hero__cta--ghost {
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.7);
	color: #fff;
}

.home-hero__cta--dark {
	background: #fff;
	border: 1px solid #d6dee8;
	color: #1e3a5f;
}

.home-hero__pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 1.75rem 0 0;
	padding: 0;
	list-style: none;
}

.home-hero__pills li {
	padding: 0.35rem 0.75rem;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 999px;
	background: rgba(7, 24, 44, 0.35);
	font-size: 0.75rem;
	letter-spacing: 0.04em;
}

.home-hero__scene {
	margin: 1.6rem 0 0;
	font-size: 0.78rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.78);
}

.home-process {
	padding: 1.75rem 0;
	background: #07182c;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	color: #fff;
}

.home-process__list {
	display: grid;
	gap: 1rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

@media (min-width: 800px) {
	.home-process__list {
		grid-template-columns: repeat(4, 1fr);
		gap: 1.25rem;
	}
}

.home-process__list li {
	padding: 0.35rem 0.25rem;
	border-left: 2px solid rgba(45, 136, 255, 0.85);
	padding-left: 0.9rem;
}

.home-process__list b {
	display: block;
	font-size: 0.95rem;
	letter-spacing: 0.04em;
}

.home-process__list span {
	display: block;
	margin-top: 0.35rem;
	font-size: 0.82rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.72);
	font-weight: 400;
}

.home-product-mosaic {
	display: grid;
	gap: 1rem;
	margin-top: 2.25rem;
}

@media (min-width: 960px) {
	.home-product-mosaic {
		grid-template-columns: 1.35fr 1fr 1fr;
		grid-template-rows: auto auto;
	}

	.home-product-tile--feature {
		grid-row: 1 / span 2;
	}
}

.home-product-tile {
	position: relative;
	overflow: hidden;
	min-height: 16rem;
	height: 100%;
	border-radius: 0.9rem;
	border: 1px solid #e2e8f0;
	background: #0b1c2f;
	color: #fff;
}

.home-product-tile img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.02);
	transition: transform 0.55s ease;
}

.home-product-tile::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(7, 24, 44, 0.12) 20%, rgba(7, 24, 44, 0.82) 100%);
}

.home-product-tile:hover img {
	transform: scale(1.06);
}

.home-product-tile div {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	height: 100%;
	min-height: inherit;
	padding: 1.35rem 1.35rem 1.45rem;
}

.home-product-tile--feature {
	min-height: 28rem;
}

.home-product-tile span {
	font-size: 0.72rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.78);
}

.home-product-tile h3 {
	margin: 0.45rem 0 0;
	font-size: 1.35rem;
	font-weight: 700;
}

.home-product-tile p {
	margin: 0.55rem 0 0;
	max-width: 28rem;
	font-size: 0.9rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.86);
}

.home-product-tile a {
	display: inline-flex;
	margin-top: 1rem;
	color: #9ec5ff;
	font-size: 0.85rem;
	font-weight: 600;
	text-decoration: none;
}

.home-hero__dots {
	display: flex;
	gap: 0.45rem;
	margin-top: 1.1rem;
}

.home-hero__dots button {
	width: 2.1rem;
	height: 3px;
	padding: 0;
	border: 0;
	border-radius: 99px;
	background: rgba(255, 255, 255, 0.35);
	cursor: pointer;
}

.home-hero__dots button.is-active {
	background: #fff;
}

.home-hero__scroll {
	position: absolute;
	left: 50%;
	bottom: 1.5rem;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.35rem;
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.7rem;
	letter-spacing: 0.18em;
	text-decoration: none;
	transform: translateX(-50%);
}

.home-hero__scroll svg {
	width: 1rem;
	height: 1rem;
}

.home-section {
	padding: 5.5rem 0;
	background: #fff;
	border-top: 1px solid #e2e8f0;
}

.home-section--carbon {
	background: #f8fafc;
}

.home-section__inner {
	width: min(var(--page-shell-max), calc(100vw - 3rem));
	margin: 0 auto;
}

.home-section__intro {
	max-width: 38rem;
	text-align: center;
	margin: 0 auto;
}

.home-section__intro--row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1rem;
	max-width: none;
	text-align: left;
}

.home-section__intro p:first-child,
.home-kicker {
	margin: 0;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: #2d88ff;
}

.home-section__intro h2,
.home-title {
	margin: 0.65rem 0 0;
	font-size: clamp(1.7rem, 3vw, 2.35rem);
	font-weight: 700;
	color: #0f172a;
}

.home-section__intro p:last-child,
.home-copy {
	margin: 0.85rem 0 0;
	font-size: 1rem;
	line-height: 1.75;
	color: #475569;
	font-weight: 400;
}

.home-split {
	display: grid;
	gap: 2.5rem;
	align-items: center;
}

.home-split--reverse {
	margin-bottom: 2rem;
}

@media (min-width: 960px) {
	.home-split {
		grid-template-columns: 1.05fr 0.95fr;
		gap: 3.5rem;
	}

	.home-split--reverse {
		grid-template-columns: 0.95fr 1.05fr;
	}

	.home-split--reverse .home-split__media {
		order: 2;
	}
}

.home-split__media {
	margin: 0;
	overflow: hidden;
	border-radius: 0.85rem;
	border: 1px solid #e2e8f0;
	box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.home-split__media img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.home-capability-list {
	display: grid;
	gap: 0.65rem;
	margin: 1.5rem 0 0;
	padding: 0;
	list-style: none;
}

.home-capability-list a {
	display: block;
	padding: 0.85rem 1rem;
	border: 1px solid #e2e8f0;
	border-radius: 0.7rem;
	background: #fff;
	text-decoration: none;
	color: inherit;
}

.home-capability-list a:hover {
	border-color: rgba(45, 136, 255, 0.45);
}

.home-capability-list strong {
	display: block;
	color: #0f172a;
}

.home-capability-list span {
	display: block;
	margin-top: 0.2rem;
	font-size: 0.85rem;
	color: #64748b;
}

.home-text-link {
	display: inline-flex;
	margin-top: 1.25rem;
	color: #2d88ff;
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
}

.home-outline-btn {
	display: inline-flex;
	align-items: center;
	padding: 0.75rem 1.4rem;
	border: 1px solid #cbd5e1;
	border-radius: 999px;
	background: #fff;
	color: #334155;
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
}

.home-case-grid {
	display: grid;
	gap: 1.25rem;
	margin-top: 2.25rem;
}

@media (min-width: 900px) {
	.home-case-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.home-case-card {
	overflow: hidden;
	border: 1px solid #e2e8f0;
	border-radius: 0.85rem;
	background: #fff;
}

.home-case-card img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.home-case-card div {
	padding: 1.15rem 1.2rem 1.35rem;
}

.home-case-card span {
	font-size: 0.75rem;
	letter-spacing: 0.06em;
	color: #2d88ff;
}

.home-case-card h3 {
	margin: 0.4rem 0 0;
	font-size: 1.15rem;
	color: #0f172a;
}

.home-case-card p {
	margin: 0.55rem 0 0;
	font-size: 0.9rem;
	line-height: 1.65;
	color: #64748b;
}

.home-case-card a {
	display: inline-block;
	margin-top: 0.85rem;
	color: #2d88ff;
	font-size: 0.82rem;
	font-weight: 600;
	text-decoration: none;
}

.home-stat-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.home-stat-row div {
	padding: 0.85rem 0.7rem;
	border: 1px solid #e2e8f0;
	border-radius: 0.7rem;
	background: #fff;
}

.home-stat-row b {
	display: block;
	color: #0f172a;
}

.home-stat-row span {
	display: block;
	margin-top: 0.2rem;
	font-size: 0.78rem;
	color: #64748b;
}

.home-inline-links {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 1.25rem;
}

.home-inline-links a {
	color: #2d88ff;
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
}

.home-factory-thumbs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

.home-factory-thumbs figure {
	margin: 0;
}

.home-factory-thumbs img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 0.75rem;
	border: 1px solid #e2e8f0;
}

.home-factory-thumbs figcaption {
	margin-top: 0.55rem;
	font-size: 0.85rem;
	font-weight: 600;
	color: #334155;
}

.home-resource-grid {
	display: grid;
	gap: 0.85rem;
	margin-top: 2rem;
}

@media (min-width: 800px) {
	.home-resource-grid {
		grid-template-columns: repeat(5, 1fr);
	}
}

.home-resource-grid a {
	display: block;
	padding: 1.15rem 1rem;
	border: 1px solid #e2e8f0;
	border-radius: 0.75rem;
	background: #f8fafc;
	text-decoration: none;
	color: inherit;
}

.home-resource-grid a:hover {
	border-color: rgba(45, 136, 255, 0.4);
	background: #fff;
}

.home-resource-grid strong {
	display: block;
	color: #0f172a;
}

.home-resource-grid span {
	display: block;
	margin-top: 0.35rem;
	font-size: 0.82rem;
	color: #64748b;
}

.home-cta {
	padding: 5rem 1.5rem;
	background:
		linear-gradient(180deg, rgba(7, 24, 44, 0.78), rgba(7, 24, 44, 0.88)),
		url("../img/home/home-hero-ground-pv.png") center / cover no-repeat;
	color: #fff;
	text-align: center;
}

.home-cta__inner {
	max-width: 40rem;
	margin: 0 auto;
}

.home-cta h2 {
	margin: 0;
	font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.home-cta p {
	margin: 1rem auto 0;
	max-width: 32rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 720px) {
	.home-hero__inner {
		margin-left: auto;
		margin-right: auto;
		width: calc(100% - 2rem);
		padding-bottom: 5.5rem;
	}

	.home-stat-row,
	.home-factory-thumbs {
		grid-template-columns: 1fr;
	}

	.home-section__intro--row {
		flex-direction: column;
		align-items: flex-start;
	}
}
