@charset "UTF-8";

:root {
	--primary-bg: #0b0f19; /* 深空黑 */
	--glass-bg: rgba(255, 255, 255, 0.05);
	--accent-blue: #3b82f6;
	--accent-purple: #8b5cf6;
	--text-main: #ffffff;
	--text-sub: #94a3b8;
	--nav-height: 80px;
	--card-border: rgba(148, 163, 184, 0.18);
	--panel-bg: rgba(255, 255, 255, 0.04);
	--section-dark: #0f1420;
	--section-darker: #0c111d;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	font-family: 'Helvetica Neue', Helvetica, 'PingFang SC', 'Microsoft YaHei', sans-serif;
	background-color: var(--primary-bg);
	color: var(--text-main);
	overflow-x: hidden;
}
img { max-width: 100%; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* --- 导航栏 (Navbar) --- */
.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	height: var(--nav-height);
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 5%;
	z-index: 1000;
	transition: background 0.4s ease;
}

/* 滚动后变黑 */
.navbar.scrolled {
	background: rgba(11, 15, 25, 0.95);
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.logo {
	display: flex;
	align-items: center;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 1px;
	background: linear-gradient(90deg, #fff, #a5b4fc);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.nav-menu {
	display: flex;
	gap: 30px;
	align-items: center;
}

.nav-menu a {
	font-size: 15px;
	font-weight: 500;
	color: var(--text-sub);
	position: relative;
}

.nav-menu a:hover, .nav-menu a.active {
	color: #fff;
}

/* 简单的下划线动画 */
.nav-menu a::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	background: var(--accent-blue);
	bottom: -5px;
	left: 0;
	transition: 0.3s;
}
.nav-menu a:hover::after { width: 100%; }

.dev-btn {
	padding: 8px 20px;
	border: 1px solid var(--accent-blue);
	color: var(--accent-blue);
	border-radius: 20px;
	font-size: 14px;
}
.dev-btn:hover {
	background: var(--accent-blue);
	color: #fff;
}

.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(148, 163, 184, 0.2);
	border-radius: 10px;
	background: rgba(15, 23, 42, 0.6);
	cursor: pointer;
}
.nav-toggle span {
	width: 18px;
	height: 2px;
	background: #e2e8f0;
	transition: 0.3s;
}

/* --- 视频首屏 (Hero Video) --- */
.hero-section {
	position: relative;
	height: 100vh;
	width: 100%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

/* 视频容器 */
.video-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
	filter: contrast(1.25);
	-webkit-filter: contrast(1.25); 
}

/* 遮罩层：确保文字清晰，且视频不会太抢眼 */
.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(11,15,25,0.3), rgba(11,15,25,0.9));
	z-index: 0;
}

/* 视频加载失败时的兜底背景 */
.hero-section {
	/*background: #0f172a url('https://images.unsplash.com/photo-1518770660439-4636190af475?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;*/
}

.hero-content {
	position: relative;
	z-index: 1;
	max-width: 800px;
	padding: 20px;
	isolation: isolate;
}

.hero-title {
	font-size: 4rem;
	font-weight: 800;
	margin-bottom: 20px;
	line-height: 1.3;
	letter-spacing: 12px;
	text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.hero-subtitle {
	font-size: 1.5rem;
	color: #fff;
	margin-bottom: 40px;
	font-weight: 300;
	letter-spacing: 4px;
	text-shadow: 0 0 1px #fff;
}

.hero-btn-group {
	display: flex;
	gap: 20px;
	justify-content: start;
	flex-wrap: wrap;
}
.hero-btn-group--center {
	margin-top: 32px;
	justify-content: center;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 15px 40px;
	border-radius: 30px;
	font-weight: 600;
	cursor: pointer;
	font-size: 16px;
	border: none;
	transition: transform 0.3s, box-shadow 0.3s, background 0.3s, color 0.3s;
}

.btn-primary {
	background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
	color: #fff;
	border: none;
	box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(59, 130, 246, 0.5); }

.btn-light {
	background: #fff;
	color: #0b0f19;
	border: none;
	box-shadow: 0 8px 18px rgba(15, 23, 42, 0.3);
}

.btn-light:hover { transform: translateY(-2px); }
.btn-home--first { 
	opacity: .9;
    left: calc(50% - 88px);
    position: relative;
 }

.hero-content--wide {
	max-width: 1180px;
}
.hero-signal-field {
	position: absolute;
	inset: 50% auto auto 50%;
	width: min(760px, 80vw);
	aspect-ratio: 1;
	transform: translate(-50%, -50%);
	z-index: -1;
	pointer-events: none;
	filter: drop-shadow(0 0 22px rgba(56, 189, 248, 0.28));
}
.signal-ring,
.signal-pulse {
	position: absolute;
	inset: 50% auto auto 50%;
	border-radius: 999px;
	transform: translate(-50%, -50%);
}
.signal-ring {
	border: 1px solid rgba(125, 211, 252, 0.18);
	box-shadow: inset 0 0 28px rgba(56, 189, 248, 0.08), 0 0 28px rgba(56, 189, 248, 0.06);
	animation: signalBreathe 6s ease-in-out infinite;
}
.signal-ring--1 { width: 42%; height: 42%; animation-delay: 0s; }
.signal-ring--2 { width: 62%; height: 62%; animation-delay: -1.8s; }
.signal-ring--3 { width: 82%; height: 82%; animation-delay: -3.2s; }
.signal-pulse {
	width: 7px;
	height: 7px;
	background: #7dd3fc;
	box-shadow: 0 0 14px rgba(125, 211, 252, 0.9), 0 0 34px rgba(59, 130, 246, 0.55);
	animation: signalOrbit 9s linear infinite;
}
.signal-pulse--1 { transform-origin: -180px 0; animation-duration: 8s; }
.signal-pulse--2 { transform-origin: 210px 0; animation-duration: 10s; animation-delay: -3s; }
.signal-pulse--3 { transform-origin: 0 235px; animation-duration: 12s; animation-delay: -6s; }
.hero-content--wide .hero-title {
	font-size: clamp(2.8rem, 6vw, 5.6rem);
	letter-spacing: 4px;
	max-width: 1120px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}
.hero-content--wide .hero-title::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: -18px;
	width: min(340px, 56vw);
	height: 2px;
	transform: translateX(-50%);
	background: linear-gradient(90deg, transparent, rgba(125, 211, 252, 0.85), rgba(139, 92, 246, 0.65), transparent);
	box-shadow: 0 0 18px rgba(56, 189, 248, 0.5);
	animation: titleScan 3.8s ease-in-out infinite;
}
.hero-content--wide .hero-subtitle {
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
	font-size: clamp(1.1rem, 1.8vw, 1.55rem);
	line-height: 1.8;
	letter-spacing: 1.5px;
	color: rgba(255, 255, 255, 0.9);
}
.hero-content--wide .hero-eyebrow {
	margin-bottom: 18px;
	color: rgba(191, 219, 254, 0.9);
}
.hero-badges--center {
	justify-content: center;
	margin: -14px 0 34px;
}

@keyframes signalBreathe {
	0%, 100% { opacity: 0.22; transform: translate(-50%, -50%) scale(0.96); }
	50% { opacity: 0.62; transform: translate(-50%, -50%) scale(1.04); }
}

@keyframes signalOrbit {
	0% { rotate: 0deg; opacity: 0; }
	8% { opacity: 1; }
	70% { opacity: 1; }
	100% { rotate: 360deg; opacity: 0; }
}

@keyframes titleScan {
	0%, 100% { opacity: 0.35; width: min(220px, 44vw); }
	50% { opacity: 1; width: min(420px, 62vw); }
}
/* --- 滚动提示动画 --- */
.scroll-indicator {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	animation: bounce 2s infinite;
	opacity: 0.7;
}
.scroll-indicator span {
	display: block;
	width: 20px;
	height: 20px;
	border-bottom: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);}
	40% {transform: translateX(-50%) translateY(-10px);}
	60% {transform: translateX(-50%) translateY(-5px);}
}

/* --- 通用 Section 样式 --- */
.section { padding: 100px 5%; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 15px; }
.section-header p { color: var(--text-sub); font-size: 1.1rem; }
section, .stats-section, .cta-banner { scroll-margin-top: 100px; }

/* --- 业务简介 (Overview) --- */
.overview-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
	text-align: center;
}
.overview-card {
	background: var(--glass-bg);
	padding: 40px 20px;
	border-radius: 16px;
	transition: 0.3s;
	border: 1px solid transparent;
}
.overview-card:hover {
	background: rgba(255,255,255,0.1);
	transform: translateY(-5px);
	border-color: rgba(148, 163, 184, 0.2);
}
.icon {
	font-size: 40px;
	margin-bottom: 20px;
	display: inline-block;
}
.svg-icon,
.product-icon--svg {
	color: #7dd3fc;
	background:
		radial-gradient(circle at 28% 18%, rgba(45, 212, 191, 0.3), transparent 52%),
		linear-gradient(145deg, rgba(15, 23, 42, 0.92), rgba(12, 28, 54, 0.82));
	border: 1px solid rgba(125, 211, 252, 0.28);
	box-shadow: inset 0 0 18px rgba(56, 189, 248, 0.08), 0 12px 30px rgba(2, 6, 23, 0.24);
}
.svg-icon {
	width: 58px;
	height: 58px;
	border-radius: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.svg-icon svg,
.product-icon--svg svg {
	width: 28px;
	height: 28px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.4;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.positioning-section {
	background:
		radial-gradient(circle at 20% 10%, rgba(34, 211, 238, 0.08), transparent 36%),
		linear-gradient(180deg, #0b0f19, #0d1424);
}
.positioning-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
	max-width: 1180px;
	margin: 0 auto;
}
.positioning-card {
	text-align: left;
	background:
		linear-gradient(145deg, rgba(15, 23, 42, 0.82), rgba(8, 14, 32, 0.88)),
		radial-gradient(circle at 20% 10%, rgba(59, 130, 246, 0.16), transparent 46%);
	border-color: rgba(148, 163, 184, 0.16);
	min-height: 282px;
}
.positioning-card h3 {
	font-size: 1.35rem;
	margin-bottom: 12px;
}
.positioning-card p {
	color: var(--text-sub);
	line-height: 1.75;
}

.co-create-section {
	position: relative;
	background:
		linear-gradient(rgba(14, 22, 39, 0.92), rgba(8, 13, 25, 0.96)),
		linear-gradient(90deg, rgba(56, 189, 248, 0.08) 1px, transparent 1px),
		linear-gradient(rgba(56, 189, 248, 0.08) 1px, transparent 1px);
	background-size: auto, 72px 72px, 72px 72px;
	overflow: hidden;
}
.co-create-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 48%, rgba(34, 211, 238, 0.18), transparent 42%);
	pointer-events: none;
}
.co-create-network,
.business-loop {
	position: relative;
	z-index: 1;
	max-width: 1180px;
	margin: 0 auto;
}
.co-create-network {
	min-height: 520px;
	border: 1px solid rgba(56, 189, 248, 0.18);
	border-radius: 28px;
	background: rgba(2, 6, 23, 0.38);
	box-shadow: inset 0 0 80px rgba(14, 165, 233, 0.08);
}
.co-create-network::before,
.co-create-network::after {
	content: '';
	position: absolute;
	inset: 16%;
	border: 1px dashed rgba(125, 211, 252, 0.34);
	border-radius: 50%;
	animation: networkSpin 28s linear infinite;
}
.co-create-network::after {
	inset: 26%;
	border-style: solid;
	opacity: 0.35;
	animation-direction: reverse;
}
.network-core,
.network-node {
	position: absolute;
	border: 1px solid rgba(56, 189, 248, 0.36);
	background: rgba(9, 16, 31, 0.88);
	box-shadow: 0 0 26px rgba(14, 165, 233, 0.16);
}
.network-core {
	left: 50%;
	top: 50%;
	width: 260px;
	height: 138px;
	transform: translate(-50%, -50%);
	border-radius: 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	z-index: 3;
}
.network-core span {
	color: #67e8f9;
	letter-spacing: 4px;
	font-size: 0.86rem;
	margin-bottom: 10px;
}
.network-core strong {
	font-size: 1.35rem;
	line-height: 1.35;
}
.network-node {
	width: 220px;
	min-height: 112px;
	border-radius: 18px;
	padding: 22px;
	z-index: 2;
}
.network-node span {
	display: block;
	font-size: 1.18rem;
	font-weight: 700;
	margin-bottom: 8px;
	color: #fff;
}
.network-node p {
	color: var(--text-sub);
	line-height: 1.5;
	font-size: 0.95rem;
}
.node-ip { left: 8%; top: 12%; }
.node-channel { right: 8%; top: 12%; }
.node-brand { left: 8%; bottom: 12%; }
.node-solution { right: 8%; bottom: 12%; }
.business-loop {
	display: grid;
	grid-template-columns: repeat(5, minmax(150px, 1fr));
	gap: 14px;
	margin-top: 28px;
}
.loop-step {
	position: relative;
	padding: 20px;
	min-height: 116px;
	border: 1px solid rgba(148, 163, 184, 0.2);
	border-radius: 18px;
	background: rgba(15, 23, 42, 0.68);
}
.loop-step:not(:last-child)::after {
	content: '→';
	position: absolute;
	right: -13px;
	top: 50%;
	transform: translateY(-50%);
	color: #67e8f9;
	z-index: 2;
}
.loop-step strong {
	display: block;
	color: #38bdf8;
	letter-spacing: 2px;
	margin-bottom: 12px;
}
.loop-step span {
	color: #e2e8f0;
	line-height: 1.55;
}

@keyframes networkSpin {
	to { transform: rotate(360deg); }
}

/* --- 首页场景视频卡片 --- */
.scenario-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 360px));
	gap: 24px;
	justify-content: center;
}
.home-scenario-card {
	position: relative;
	width: 100%;
	max-width: 480px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.home-scenario-media {
	position: relative;
	height: 320px;
	overflow: hidden;
	border: 1px solid rgba(148, 163, 184, 0.18);
	background: #0b1224;
	cursor: pointer;
	transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.home-scenario-media::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(rgba(10, 12, 20, 0.45), rgba(10, 12, 20, 0.75));
	z-index: 1;
}
.home-scenario-media::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 20% 20%, rgba(34, 211, 238, 0.18), transparent 55%);
	opacity: 0;
	transition: opacity 0.3s;
	z-index: 2;
}
.home-scenario-media:hover {
	transform: translateY(-6px);
	border-color: rgba(125, 211, 252, 0.5);
	box-shadow: 0 18px 30px rgba(5, 8, 20, 0.45);
}
.home-scenario-media:hover::after { opacity: 1; }
.home-scenario-media:focus-visible {
	outline: 2px solid rgba(125, 211, 252, 0.8);
	outline-offset: 4px;
}
.home-scenario-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(1.1);
	z-index: 0;
	pointer-events: none;
}
.home-scenario-content {
	padding: 0 4px;
	color: #fff;
}
.home-scenario-icon {
	font-size: 30px;
	margin-bottom: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 14px;
	background: rgba(15, 23, 42, 0.6);
	border: 1px solid rgba(148, 163, 184, 0.35);
}
.home-scenario-title {
	display: block;
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 6px;
}
.home-scenario-desc {
	display: block;
	color: rgba(226, 232, 240, 0.9);
	font-size: 1rem;
	line-height: 1.6;
}
.home-scenario-play {
	position: absolute;
	right: 24px;
	bottom: 24px;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: rgba(15, 23, 42, 0.85);
	border: 1px solid rgba(34, 211, 238, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	box-shadow: 0 10px 20px rgba(2, 6, 23, 0.4);
	z-index: 3;
}
.home-scenario-tip {
	position: absolute;
	right: 24px;
	top: 24px;
	font-size: 12px;
	color: rgba(226, 232, 240, 0.8);
	letter-spacing: 1px;
	z-index: 3;
}

/* --- 视频弹窗 --- */
.video-modal {
	position: fixed;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	background: rgba(2, 6, 23, 0.7);
	backdrop-filter: blur(8px);
	z-index: 2000;
	padding: 24px;
}
.video-modal.is-open { display: flex; }
.video-modal__dialog {
	position: relative;
	width: min(960px, 92vw);
	background: #0b1224;
	border-radius: 18px;
	border: 1px solid rgba(148, 163, 184, 0.2);
	box-shadow: 0 30px 70px rgba(2, 6, 23, 0.6);
	padding: 18px;
	z-index: 1;
}
.video-modal__header {
	color: #e2e8f0;
	font-size: 1rem;
	margin-bottom: 10px;
	letter-spacing: 1px;
}
.video-modal__close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid rgba(148, 163, 184, 0.3);
	background: rgba(15, 23, 42, 0.85);
	color: #e2e8f0;
	font-size: 20px;
	cursor: pointer;
}
.video-modal__dialog video {
	width: 100%;
	height: auto;
	border-radius: 12px;
	background: #020617;
}
.video-modal__backdrop {
	position: absolute;
	inset: 0;
	z-index: 0;
}
body.modal-open { overflow: hidden; }

/* --- 产品矩阵 --- */
.product-section {
	background: var(--section-darker);
}
.product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 24px;
}
.product-card {
	background: var(--panel-bg);
	border-radius: 16px;
	padding: 28px;
	border: 1px solid var(--card-border);
	transition: 0.3s;
	text-align: left;
}
.product-card:hover {
	transform: translateY(-6px);
	border-color: rgba(148, 163, 184, 0.4);
	box-shadow: 0 18px 30px rgba(5, 8, 20, 0.4);
}
.product-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(59, 130, 246, 0.15);
	color: #93c5fd;
	font-size: 22px;
	margin-bottom: 18px;
}
.product-icon.product-icon--svg {
	width: 50px;
	height: 50px;
	border-radius: 16px;
	background:
		radial-gradient(circle at 28% 18%, rgba(45, 212, 191, 0.3), transparent 52%),
		linear-gradient(145deg, rgba(15, 23, 42, 0.92), rgba(12, 28, 54, 0.82));
	border: 1px solid rgba(125, 211, 252, 0.28);
	color: #7dd3fc;
	box-shadow: inset 0 0 18px rgba(56, 189, 248, 0.08), 0 12px 30px rgba(2, 6, 23, 0.24);
}
.product-card h3 {
	font-size: 1.2rem;
	margin-bottom: 10px;
}
.product-card p {
	color: var(--text-sub);
	line-height: 1.6;
}
.capability-home-grid {
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	max-width: 1180px;
	margin: 0 auto;
}
.feature-list {
	margin-top: 16px;
}
.feature-list li {
	position: relative;
	padding-left: 18px;
	margin-bottom: 8px;
	color: var(--text-sub);
	font-size: 0.95rem;
}
.feature-list li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: var(--accent-blue);
}

/* --- 核心能力 (Tech Stack) --- */
.tech-section {
	background: var(--section-dark);
	position: relative;
	overflow: hidden;
}
.tech-section::before {
	content: '';
	position: absolute;
	width: 250px;
	height: 250px;
	top: -50px;
	left: -50px;
	border-radius: 50%;
	background-color: rgba(100, 100, 100, 0.2);
	box-shadow:
		200px 50px 0 100px rgba(80, 80, 80, 0.1),
		-100px 300px 0 150px rgba(80, 80, 80, 0.1),
		80vw 400px 0 80px rgba(80, 80, 80, 0.1),
		-250px 600px 0 120px rgba(80, 80, 80, 0.1),
		93vw 200px 0 120px rgba(80, 80, 80, 0.1),
		350px -100px 0 90px rgba(80, 80, 80, 0.05);
}
.chip-cloud-container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 50px;
	flex-wrap: wrap;
}
.tech-box {
	width: 300px;
	height: 100px;
	background: #1e293b;
	text-align: center;
	padding-top: 25px;
	line-height: 22px;
	border-radius: 10px;
	font-weight: bold;
	color: var(--text-sub);
	font-size: 1.2rem;
	box-shadow: 0 0 10px 0 #385687;
	border: 1px solid rgba(148, 163, 184, 0.2);
}
.tech-box:hover {
	background: #43568b;
	color: #fff;
}
.tech-box--desc {
	font-size:0.8rem;
	color:#64748b;
	transition: all 0.6s;
}
.tech-box:hover .tech-box--desc {
	color:#fff;
}
.connector {
	height: 2px;
	width: 100px;
	background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
	position: relative;
}
.connector::after {
	content: 'AI Engine';
	position: absolute;
	top: -25px;
	font-size: 12px;
	color: var(--accent-blue);
}

/* --- 接入流程 --- */
.steps-section {
	background: var(--section-darker);
}
.steps-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 24px;
}
.step-card {
	background: var(--panel-bg);
	border: 1px solid var(--card-border);
	border-radius: 16px;
	padding: 26px;
	position: relative;
	transition: 0.3s;
}
.step-card:hover {
	transform: translateY(-6px);
	border-color: rgba(148, 163, 184, 0.4);
}
.step-index {
	display: inline-block;
	font-size: 13px;
	letter-spacing: 2px;
	color: var(--accent-blue);
	margin-bottom: 14px;
}
.step-card h3 {
	font-size: 1.2rem;
	margin-bottom: 10px;
}
.step-card p {
	color: var(--text-sub);
	line-height: 1.6;
}
.steps-callout {
	margin-top: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	flex-wrap: wrap;
}
.code-block {
	background: rgba(2, 6, 23, 0.8);
	border: 1px solid rgba(148, 163, 184, 0.2);
	margin-top: 25px;
	border-radius: 12px;
	padding: 25px 22px;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
	font-size: 0.9rem;
	color: #e2e8f0;
	min-width: 260px;
}
.code-block code {
	white-space: pre-line;
}
.callout-text {
	max-width: 320px;
	color: var(--text-sub);
	line-height: 1.6;
}

.platform-roadmap-section {
	background:
		radial-gradient(circle at 80% 10%, rgba(139, 92, 246, 0.13), transparent 36%),
		linear-gradient(180deg, #0f1420, #0b1020);
}
.platform-roadmap {
	display: grid;
	grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.2fr);
	gap: 34px;
	align-items: stretch;
	max-width: 1180px;
	margin: 0 auto;
}
.platform-copy,
.platform-modules {
	border: 1px solid rgba(148, 163, 184, 0.2);
	border-radius: 24px;
	background: rgba(15, 23, 42, 0.72);
	box-shadow: 0 24px 50px rgba(2, 6, 23, 0.32);
}
.platform-copy {
	padding: 34px;
}
.platform-copy h3 {
	font-size: 1.45rem;
	margin-bottom: 16px;
}
.platform-copy p {
	color: var(--text-sub);
	line-height: 1.85;
	margin-bottom: 24px;
}
.platform-modules {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	padding: 28px;
	overflow: hidden;
}
.platform-modules::before {
	content: '';
	position: absolute;
	inset: -30%;
	background: linear-gradient(120deg, transparent 35%, rgba(56, 189, 248, 0.12), transparent 65%);
	animation: sweep 8s ease-in-out infinite;
}
.platform-modules span {
	position: relative;
	z-index: 1;
	min-height: 74px;
	display: flex;
	align-items: center;
	padding: 16px;
	border-radius: 16px;
	color: #dbeafe;
	background: rgba(2, 6, 23, 0.46);
	border: 1px solid rgba(56, 189, 248, 0.18);
}

/* --- 可信与生态 --- */
.trust-section {
	background: var(--section-dark);
}
.trust-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 24px;
	margin-bottom: 40px;
}
.trust-card {
	background: var(--panel-bg);
	border: 1px solid var(--card-border);
	border-radius: 16px;
	padding: 28px;
}
.trust-card h3 {
	font-size: 1.2rem;
	margin-bottom: 10px;
}
.check-list {
	margin-top: 12px;
}
.check-list li {
	position: relative;
	padding-left: 22px;
	margin-bottom: 10px;
	color: var(--text-sub);
	line-height: 1.5;
}
.check-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--accent-blue);
}
.trust-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 14px;
}
.trust-badges span {
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(59, 130, 246, 0.12);
	color: #bfdbfe;
	border: 1px solid rgba(59, 130, 246, 0.3);
	font-size: 12px;
}
.logo-wall {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 16px;
}
.logo-item {
	padding: 18px;
	text-align: center;
	border-radius: 12px;
	border: 1px dashed rgba(148, 163, 184, 0.25);
	color: var(--text-sub);
	background: rgba(255, 255, 255, 0.02);
	font-size: 14px;
}
.partner-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 24px;
}
.partner-card {
	background:
		linear-gradient(145deg, rgba(15, 23, 42, 0.95), rgba(8, 14, 32, 0.92)),
		radial-gradient(circle at 20% 20%, rgba(34, 211, 238, 0.12), transparent 55%);
	border: 1px solid rgba(148, 163, 184, 0.24);
	border-radius: 16px;
	padding: 24px;
	transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.partner-card:hover {
	transform: translateY(-6px);
	border-color: rgba(56, 189, 248, 0.45);
	box-shadow: 0 18px 34px rgba(3, 8, 24, 0.45);
}
.partner-card h3 {
	font-size: 1.16rem;
	margin-bottom: 10px;
}
.partner-card p {
	color: var(--text-sub);
	line-height: 1.6;
}
.partner-logo-wall {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 20px;
}
.partner-logo-card {
	background: linear-gradient(145deg, rgba(15, 23, 42, 0.92), rgba(8, 14, 32, 0.88));
	border: 1px solid rgba(148, 163, 184, 0.24);
	border-radius: 16px;
	padding: 20px;
	text-align: center;
	transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.partner-logo-card:hover {
	transform: translateY(-6px);
	border-color: rgba(56, 189, 248, 0.45);
	box-shadow: 0 18px 34px rgba(3, 8, 24, 0.42);
}
.partner-logo-mark {
	width: 62px;
	height: 62px;
	margin: 0 auto 12px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.6px;
	color: #e0f2fe;
	border: 1px solid rgba(125, 211, 252, 0.4);
	background:
		radial-gradient(circle at 25% 20%, rgba(56, 189, 248, 0.45), transparent 58%),
		linear-gradient(135deg, rgba(30, 64, 175, 0.7), rgba(15, 23, 42, 0.95));
	box-shadow: inset 0 0 12px rgba(56, 189, 248, 0.25);
}
.partner-logo-card h3 {
	font-size: 1.08rem;
	margin-bottom: 6px;
}
.partner-logo-card p {
	color: var(--text-sub);
	font-size: 0.9rem;
}

/* --- 3D Hero Canvas --- */
.hero-3d-canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

/* 有 3D 场景时隐藏 SVG 装饰（3D 已替代其视觉角色） */
.page-hero:has(.hero-3d-canvas) .hero-visual {
	display: none;
}

/* 有极光光幕时也隐藏 SVG 装饰 */
.page-hero:has(.aurora-container) .hero-visual {
	display: none;
}

/* 背景扫光效果 */
.page-hero:has(.hero-3d-canvas)::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background: linear-gradient(
		105deg,
		transparent 35%,
		rgba(56, 189, 248, 0.04) 45%,
		rgba(139, 92, 246, 0.06) 50%,
		rgba(56, 189, 248, 0.04) 55%,
		transparent 65%
	);
	background-size: 250% 100%;
	background-position: 100% 0;
	animation: heroSweep 8s ease-in-out infinite;
}

@keyframes heroSweep {
	0%, 100% {
		background-position: 100% 0;
		opacity: 0;
	}
	10% {
		opacity: 1;
	}
	50% {
		background-position: 0% 0;
		opacity: 1;
	}
	60% {
		opacity: 0;
	}
}

/* --- 极光光幕 (Aurora) --- */
.aurora-container {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}
.aurora-layer {
	position: absolute;
	top: -30%;
	left: -20%;
	width: 140%;
	height: 160%;
	border-radius: 50%;
	filter: blur(60px);
	opacity: 0;
	animation: auroraDrift 12s ease-in-out infinite;
}
.aurora-layer:nth-child(1) {
	background: radial-gradient(ellipse at 30% 40%, rgba(16,185,129,0.35), transparent 60%);
	animation-duration: 14s;
	animation-delay: 0s;
}
.aurora-layer:nth-child(2) {
	background: radial-gradient(ellipse at 70% 35%, rgba(34,211,238,0.30), transparent 55%);
	animation-duration: 18s;
	animation-delay: -3s;
}
.aurora-layer:nth-child(3) {
	background: radial-gradient(ellipse at 50% 50%, rgba(59,130,246,0.25), transparent 50%);
	animation-duration: 16s;
	animation-delay: -6s;
}
.aurora-layer:nth-child(4) {
	background: radial-gradient(ellipse at 25% 60%, rgba(139,92,246,0.20), transparent 55%);
	animation-duration: 20s;
	animation-delay: -9s;
}

@keyframes auroraDrift {
	0%, 100% {
		opacity: 0;
		transform: translate(-5%, -5%) rotate(-2deg) scale(1);
	}
	15% {
		opacity: 1;
	}
	50% {
		opacity: 0.8;
		transform: translate(5%, 5%) rotate(2deg) scale(1.05);
	}
	65% {
		opacity: 1;
	}
}

/* --- 内页通用布局 --- */
.page-hero {
	position: relative;
	min-height: 100vh;
	padding: calc(var(--nav-height) + 50px) 5% 90px;
	display: flex;
	align-items: center;
	overflow: hidden;
}
.page-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at top, rgba(59, 130, 246, 0.15), transparent 55%),
		linear-gradient(120deg, rgba(15, 23, 42, 0.95), rgba(8, 14, 32, 0.9));
	z-index: 0;
}
.page-hero--solutions::before {
	background: radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.25), transparent 55%),
		linear-gradient(120deg, #0b1020, #09142b);
}
.page-hero--scenarios::before {
	background: radial-gradient(circle at 20% 20%, rgba(16, 185, 129, 0.2), transparent 55%),
		linear-gradient(120deg, #0a1418, #0b1c28);
}
.page-hero--cases::before {
	background: radial-gradient(circle at 20% 20%, rgba(72, 213, 236, 0.25), transparent 55%),
		linear-gradient(120deg, #050614, #0e181c);
}
.page-hero--resources::before {
	background: radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.25), transparent 55%),
		linear-gradient(120deg, #0a0f1f, #121b32);
}
.page-hero--about::before {
	background: radial-gradient(circle at 20% 20%, rgba(14, 165, 233, 0.2), transparent 55%),
		linear-gradient(120deg, #0b1422, #121c2d);
}
.page-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 40px;
	align-items: center;
	width: 100%;
}
.page-hero__inner--center {
	grid-template-columns: minmax(320px, 960px);
	justify-content: center;
}
.page-hero__content h1 {
	font-size: 3.4rem;
	line-height: 1.2;
	margin-bottom: 18px;
	letter-spacing: 4px;
}
.page-hero__content--center {
	text-align: center;
	max-width: 980px;
	margin: 0 auto;
}
.page-hero__content--center > p:not(.hero-eyebrow) {
	max-width: 920px;
	margin: 0 auto;
}
.page-hero__content--center .hero-badges {
	justify-content: center;
	margin: 18px 0 0;
}
.page-hero__content--center .hero-btn-group {
	justify-content: center;
	margin-top: 25px;
}
.page-hero__content p {
	font-size: 1.1rem;
	color: var(--text-main);
	line-height: 1.7;
}
.page-hero__aside {
	display: grid;
	gap: 22px;
	align-items: start;
}
.hero-eyebrow {
	text-transform: uppercase;
	letter-spacing: 4px;
	font-size: 0.75rem;
	color: rgba(148, 163, 184, 0.8);
	margin-bottom: 16px;
}
.hero-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 20px 0 30px;
}
.hero-badge {
	padding: 6px 14px;
	border-radius: 999px;
	background: rgba(59, 130, 246, 0.15);
	color: #bfdbfe;
	font-size: 12px;
	border: 1px solid rgba(59, 130, 246, 0.3);
}
.hero-metrics {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}
.hero-metrics--compact {
	margin-top: 21px;
	width: min(100%, 980px);
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}
.metric-card {
	background: var(--panel-bg);
	border: 1px solid var(--card-border);
	border-radius: 18px;
	padding: 28px 24px;
}
.metric-card strong {
	display: block;
	font-size: 2.2rem;
	color: #fff;
	margin-bottom: 8px;
}
.metric-card span {
	color: var(--text-sub);
	font-size: 1.05rem;
}
.hero-visual {
	position: relative;
	border-radius: 18px;
	padding: 18px;
	--hero-accent: rgba(34, 116, 238, 0.25);
	--hero-accent-strong: rgba(34, 102, 238, 0.45);
	--hero-grid: rgba(125, 211, 252, 0.12);
	--hero-border: rgba(34, 126, 238, 0.25);
	background:
		radial-gradient(circle at 25% 20%, var(--hero-accent), transparent 55%),
		rgba(8, 14, 26, 0.7);
	border: 1px solid var(--hero-border);
	box-shadow: 0 24px 60px rgba(5, 8, 20, 0.45);
	overflow: hidden;
	animation: floaty 10s ease-in-out infinite;
	isolation: isolate;
}
.hero-visual::before {
	content: '';
	position: absolute;
	inset: -40%;
	background: linear-gradient(120deg, transparent 35%, var(--hero-accent-strong) 50%, transparent 65%);
	opacity: 0.85;
	animation: sweep 8s ease-in-out infinite;
	z-index: 0;
}
.hero-visual::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(var(--hero-grid) 1px, transparent 1px),
		linear-gradient(90deg, var(--hero-grid) 1px, transparent 1px);
	background-size: 70px 70px;
	background-position: 0 0;
	opacity: 0.35;
	animation: gridShift 16s linear infinite;
	z-index: 0;
}
.hero-visual img {
	position: relative;
	z-index: 1;
	width: 100%;
	height: auto;
	opacity: 0.9;
}

@keyframes floaty {
	0% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
	100% { transform: translateY(0); }
}

@keyframes sweep {
	0% { transform: translate(-20%, -20%); opacity: 0.2; }
	50% { transform: translate(20%, 20%); opacity: 0.9; }
	100% { transform: translate(-20%, -20%); opacity: 0.2; }
}

@keyframes gridShift {
	0% { background-position: 0 0; }
	100% { background-position: 70px 70px; }
}

.hero-visual--green {
	--hero-accent: rgba(34, 197, 94, 0.25);
	--hero-accent-strong: rgba(34, 197, 94, 0.45);
	--hero-grid: rgba(34, 197, 94, 0.18);
	--hero-border: rgba(34, 197, 94, 0.35);
}

.hero-visual--blue {
	--hero-accent: rgba(34, 160, 238, 0.25);
	--hero-accent-strong: rgba(34, 183, 238, 0.45);
	--hero-grid: rgba(56, 189, 248, 0.18);
	--hero-border: rgba(34, 126, 238, 0.35);
}
.hero-visual--violet {
	--hero-accent: rgba(129, 140, 248, 0.3);
	--hero-accent-strong: rgba(129, 140, 248, 0.5);
	--hero-grid: rgba(129, 140, 248, 0.18);
	--hero-border: rgba(129, 140, 248, 0.35);
}

.card {
	background: var(--panel-bg);
	border: 1px solid var(--card-border);
	border-radius: 16px;
	padding: 26px;
	transition: 0.3s;
}
.card:hover {
	transform: translateY(-6px);
	border-color: rgba(148, 163, 184, 0.4);
	box-shadow: 0 18px 30px rgba(5, 8, 20, 0.4);
}
.tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 14px;
}
.tag {
	padding: 4px 10px;
	border-radius: 999px;
	background: rgba(148, 163, 184, 0.12);
	color: var(--text-sub);
	font-size: 12px;
	border: 1px solid rgba(148, 163, 184, 0.2);
}
.split-layout {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 36px;
	align-items: center;
}
.split-layout--offset { margin-top: 64px; }
.split-list li {
	position: relative;
	padding-left: 20px;
	margin-bottom: 12px;
	color: var(--text-sub);
	line-height: 1.6;
}
.split-list li::before {
	content: '→';
	position: absolute;
	left: 0;
	color: var(--accent-blue);
}

/* --- 解决方案/平台能力 --- */
.capability-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(240px, 1fr));
	gap: 24px;
}
.capability-card h3 {
	font-size: 1.2rem;
	margin-bottom: 10px;
}
.capability-card p {
	color: var(--text-sub);
	line-height: 1.6;
}
.capability-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 12px;
}
.capability-badges span {
	padding: 4px 10px;
	border-radius: 999px;
	background: rgba(59, 130, 246, 0.12);
	color: #bfdbfe;
	border: 1px solid rgba(59, 130, 246, 0.3);
	font-size: 12px;
}
.architecture-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 24px;
}
.architecture-card h3 {
	font-size: 1.1rem;
	margin-bottom: 10px;
}
.architecture-card ul li {
	color: var(--text-sub);
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: 8px;
}

/* --- 场景与案例 --- */

.scenario-grid--home {
	display: flex;
	justify-content: center;
	gap: 24px;
	flex-wrap: wrap;
}
.case-grid,
.resource-grid,
.culture-grid,
.quote-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 24px;
}
.scenario-card h3,
.case-card h3,
.resource-card h3 {
	font-size: 1.15rem;
	margin-bottom: 10px;
}
.scenario-card p,
.case-card p,
.resource-card p {
	color: var(--text-sub);
	line-height: 1.6;
}
.case-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 14px;
}
.case-meta span {
	padding: 4px 10px;
	border-radius: 999px;
	background: rgba(249, 115, 22, 0.12);
	color: #fed7aa;
	border: 1px solid rgba(249, 115, 22, 0.3);
	font-size: 12px;
}
.case-metrics {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 12px;
	margin-top: 14px;
}
.case-metric strong {
	display: block;
	font-size: 1.2rem;
	color: #fff;
}
.case-metric span {
	font-size: 0.85rem;
	color: var(--text-sub);
}
.quote-card p {
	color: var(--text-sub);
	line-height: 1.6;
}
.quote-author {
	margin-top: 12px;
	color: #e2e8f0;
	font-size: 0.95rem;
}

/* --- 资源/文档 --- */
.resource-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 14px;
	color: var(--text-sub);
	font-size: 0.85rem;
}

/* --- 里程碑/关于我们 --- */
.timeline {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 24px;
}
.timeline-item {
	border-left: 2px solid rgba(59, 130, 246, 0.4);
	padding-left: 18px;
}
.timeline-item h4 {
	font-size: 1.1rem;
	margin-bottom: 8px;
}
.timeline-item p {
	color: var(--text-sub);
	line-height: 1.6;
}
.contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 24px;
}
.contact-card h3 {
	font-size: 1.1rem;
	margin-bottom: 10px;
}
.contact-card p {
	color: var(--text-sub);
	line-height: 1.6;
}
.split-list {
    margin-top: 15px;
}

/* --- 新增：数据展示 (Stats) --- */
.stats-section {
	background: linear-gradient(45deg, #17112a, #021c22);
	padding: 80px 5%;
	border-top: 1px solid rgba(255,255,255,0.05);
}
.proof-section {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 20% 25%, rgba(56, 189, 248, 0.14), transparent 32%),
		radial-gradient(circle at 80% 15%, rgba(139, 92, 246, 0.16), transparent 34%),
		linear-gradient(135deg, #08111f 0%, #0b1527 48%, #071d22 100%);
	border-top: 1px solid rgba(125, 211, 252, 0.1);
	border-bottom: 1px solid rgba(125, 211, 252, 0.08);
}
.proof-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(125, 211, 252, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(125, 211, 252, 0.08) 1px, transparent 1px);
	background-size: 82px 82px;
	opacity: 0.2;
	animation: proofGridDrift 18s linear infinite;
	pointer-events: none;
}
.proof-section::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(105deg, transparent 34%, rgba(125, 211, 252, 0.11) 48%, transparent 62%);
	transform: translateX(-100%);
	animation: proofScan 7s ease-in-out infinite;
	pointer-events: none;
}
.proof-section .section-header,
.proof-grid {
	position: relative;
	z-index: 1;
}
.stats-grid {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto;
}
.stat-item {
	text-align: center;
	flex: 1 1 200px;
}
.proof-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(160px, 1fr));
	gap: 18px;
}
.proof-item {
	position: relative;
	flex: none;
	min-height: 168px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 26px 18px;
	border-radius: 22px;
	background:
		linear-gradient(145deg, rgba(15, 23, 42, 0.72), rgba(8, 18, 33, 0.82)),
		radial-gradient(circle at 50% 0%, rgba(56, 189, 248, 0.16), transparent 58%);
	border: 1px solid rgba(125, 211, 252, 0.16);
	box-shadow: inset 0 0 28px rgba(56, 189, 248, 0.05), 0 20px 44px rgba(2, 6, 23, 0.24);
	overflow: hidden;
}
.proof-item::before {
	content: '';
	position: absolute;
	left: 22px;
	right: 22px;
	top: 18px;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(125, 211, 252, 0.7), transparent);
	opacity: 0.7;
}
.proof-item::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, transparent 25%, rgba(255,255,255,0.08), transparent 45%);
	transform: translateX(-130%);
	animation: proofCardGlint 5s ease-in-out infinite;
}
.stat-number {
	font-size: 3.5rem;
	font-weight: 800;
	background: linear-gradient(to right, #60a5fa, #a78bfa);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 10px;
	font-family: 'Arial', sans-serif;
}
.proof-item .stat-number {
	position: relative;
	z-index: 1;
	font-size: clamp(2.8rem, 5vw, 4.3rem);
	letter-spacing: -1px;
	background: linear-gradient(120deg, #e0f2fe 0%, #67e8f9 45%, #a78bfa 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-shadow: 0 0 24px rgba(56, 189, 248, 0.18);
	animation: proofNumberGlow 3.6s ease-in-out infinite;
}
.stat-label {
	font-size: 1.1rem;
	color: var(--text-sub);
}
.proof-item .stat-label {
	position: relative;
	z-index: 1;
	color: rgba(226, 232, 240, 0.78);
	font-size: 1rem;
	letter-spacing: 0.5px;
}

@keyframes proofGridDrift {
	to { background-position: 82px 82px; }
}

@keyframes proofScan {
	0%, 100% { transform: translateX(-120%); opacity: 0; }
	18% { opacity: 1; }
	52% { transform: translateX(120%); opacity: 1; }
	70% { opacity: 0; }
}

@keyframes proofCardGlint {
	0%, 62%, 100% { transform: translateX(-130%); opacity: 0; }
	72% { opacity: 1; }
	88% { transform: translateX(130%); opacity: 0; }
}

@keyframes proofNumberGlow {
	0%, 100% { filter: drop-shadow(0 0 0 rgba(125, 211, 252, 0)); }
	50% { filter: drop-shadow(0 0 12px rgba(125, 211, 252, 0.35)); }
}

/* --- 新增：底部 CTA Banner --- */
.cta-banner {
	background: linear-gradient(120deg, #541964 0%, #103985 100%);
	padding: 60px 5%;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.cta-banner::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255,255,255,0.1) 10%, transparent 10%);
	background-size: 30px 30px;
	transform: rotate(30deg);
	pointer-events: none;
}
.cta-content {
	position: relative;
	z-index: 1;
}
.cta-banner h2 {
	font-size: 2.2rem;
	color: #fff;
	margin-bottom: 15px;
}
.cta-banner p {
	color: rgba(255,255,255,0.9);
	font-size: 1.1rem;
	margin-bottom: 30px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* --- 页脚 (Footer) --- */
footer {
	background: #020617;
	padding: 60px 5% 20px;
	border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}
.footer-col h4 { color: #fff; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--text-sub); font-size: 14px; }
.footer-col ul li a:hover { color: var(--accent-blue); }
.footer-contact-list {
	color: var(--text-sub);
	font-size: 14px;
}
.footer-contact-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	line-height: 1.55;
}
.footer-contact-icon {
	position: relative;
	flex: 0 0 auto;
	width: 22px;
	height: 22px;
	margin-top: 1px;
	border-radius: 8px;
	border: 1px solid rgba(96, 165, 250, 0.28);
	background:
		radial-gradient(circle at 30% 24%, rgba(56, 189, 248, 0.22), transparent 58%),
		rgba(15, 23, 42, 0.72);
	box-shadow: inset 0 0 12px rgba(56, 189, 248, 0.06);
}
.footer-contact-icon::before,
.footer-contact-icon::after {
	content: '';
	position: absolute;
	border-color: rgba(191, 219, 254, 0.82);
}
.footer-contact-icon--mail::before,
.footer-contact-icon--support::before {
	left: 5px;
	right: 5px;
	top: 7px;
	height: 8px;
	border: 1.5px solid rgba(191, 219, 254, 0.82);
	border-radius: 2px;
}
.footer-contact-icon--mail::after,
.footer-contact-icon--support::after {
	left: 6px;
	top: 8px;
	width: 10px;
	height: 7px;
	border-width: 0 0 1.5px 1.5px;
	transform: rotate(-45deg);
}
.footer-contact-icon--support::before {
	border-radius: 50%;
}
.footer-contact-icon--support::after {
	left: 10px;
	top: 12px;
	width: 6px;
	height: 4px;
	border-width: 0 0 1.5px 1.5px;
	transform: rotate(-18deg);
}
.footer-contact-icon--pin::before {
	left: 7px;
	top: 4px;
	width: 8px;
	height: 8px;
	border: 1.5px solid rgba(191, 219, 254, 0.82);
	border-radius: 50% 50% 50% 0;
	transform: rotate(-45deg);
}
.footer-contact-icon--pin::after {
	left: 10px;
	top: 7px;
	width: 2px;
	height: 2px;
	border-radius: 50%;
	background: rgba(191, 219, 254, 0.82);
}
.footer-contact-icon--wechat::before {
	left: 5px;
	top: 6px;
	width: 11px;
	height: 8px;
	border: 1.5px solid rgba(191, 219, 254, 0.82);
	border-radius: 7px;
}
.footer-contact-icon--wechat::after {
	left: 12px;
	top: 13px;
	width: 5px;
	height: 4px;
	border-width: 0 1.5px 1.5px 0;
	transform: rotate(20deg);
}
.wechat-float {
	position: fixed;
	right: clamp(18px, 2vw, 32px);
	bottom: 118px;
	z-index: 95;
	display: flex;
	align-items: flex-end;
}
.wechat-float__trigger {
	position: relative;
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	border-radius: 18px;
	border: 1px solid rgba(74, 222, 128, 0.34);
	background:
		radial-gradient(circle at 30% 22%, rgba(74, 222, 128, 0.32), transparent 54%),
		linear-gradient(145deg, rgba(6, 78, 59, 0.92), rgba(15, 23, 42, 0.95));
	box-shadow: 0 18px 38px rgba(2, 6, 23, 0.34), 0 0 28px rgba(34, 197, 94, 0.14);
	cursor: default;
}
.wechat-float__icon {
	position: relative;
	width: 25px;
	height: 18px;
	border: 2px solid rgba(220, 252, 231, 0.92);
	border-radius: 14px;
}
.wechat-float__icon::before,
.wechat-float__icon::after {
	content: '';
	position: absolute;
}
.wechat-float__icon::before {
	left: 5px;
	top: 6px;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: rgba(220, 252, 231, 0.92);
	box-shadow: 10px 0 0 rgba(220, 252, 231, 0.92);
}
.wechat-float__icon::after {
	right: 1px;
	bottom: -5px;
	width: 7px;
	height: 7px;
	border-right: 2px solid rgba(220, 252, 231, 0.92);
	border-bottom: 2px solid rgba(220, 252, 231, 0.92);
	transform: rotate(32deg);
}
.wechat-float__panel {
	position: absolute;
	right: 68px;
	bottom: 0;
	width: 168px;
	padding: 12px;
	border-radius: 20px;
	border: 1px solid rgba(125, 211, 252, 0.22);
	background: rgba(6, 10, 22, 0.92);
	box-shadow: 0 24px 54px rgba(2, 6, 23, 0.42), 0 0 30px rgba(34, 211, 238, 0.12);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translate(10px, 8px);
	transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}
.wechat-float__panel::after {
	content: '';
	position: absolute;
	right: -7px;
	bottom: 19px;
	width: 12px;
	height: 12px;
	border-top: 1px solid rgba(125, 211, 252, 0.22);
	border-right: 1px solid rgba(125, 211, 252, 0.22);
	background: rgba(6, 10, 22, 0.92);
	transform: rotate(45deg);
}
.wechat-float__panel img {
	display: block;
	width: 144px;
	height: 144px;
	object-fit: cover;
	border-radius: 16px;
	border: 1px solid rgba(148, 163, 184, 0.24);
}
.wechat-float__panel strong,
.wechat-float__panel span {
	display: block;
	margin-top: 9px;
	color: #e5f7ff;
	font-size: 13px;
	line-height: 1.45;
}
.wechat-float__panel span {
	margin-top: 3px;
	color: var(--text-sub);
	font-size: 12px;
}
.wechat-float:hover .wechat-float__panel,
.wechat-float:focus .wechat-float__panel,
.wechat-float:focus-within .wechat-float__panel {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate(0, 0);
}
.wechat-float:focus {
	outline: none;
}
.wechat-float:focus .wechat-float__trigger {
	border-color: rgba(125, 211, 252, 0.72);
	box-shadow: 0 18px 38px rgba(2, 6, 23, 0.34), 0 0 0 4px rgba(56, 189, 248, 0.12);
}
.copyright {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid rgba(255,255,255,0.05);
	color: #64748b;
	font-size: 14px;
}

/* --- Reveal 动画 --- */
[data-reveal] {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].is-visible {
	opacity: 1;
	transform: translateY(0);
}

.scenario-card {
	background: #101728;
    text-align: center;
    padding-bottom: 35px;
}

/* 响应式微调 */
@media (max-width: 900px) {
	.nav-menu { gap: 18px; }
	.hero-title { font-size: 3.2rem; }
	.page-hero__content h1 { font-size: 2.8rem; }
	.positioning-grid {
		grid-template-columns: 1fr;
	}
	.proof-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.business-loop {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.loop-step:not(:last-child)::after {
		display: none;
	}
	.platform-roadmap {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.hero-title { font-size: 2.4rem; letter-spacing: 6px; }
	.hero-subtitle { font-size: 1.1rem; letter-spacing: 2px; }
	.hero-content--wide .hero-title { letter-spacing: 1px; }
	.hero-content--wide .hero-subtitle { letter-spacing: 0.5px; }
	.hero-signal-field { width: 110vw; }
	.page-hero { padding: calc(var(--nav-height) + 30px) 5% 70px; }
	.page-hero__content h1 { font-size: 2.3rem; letter-spacing: 2px; }
	.nav-toggle { display: flex; }
	.nav-menu {
		position: fixed;
		top: var(--nav-height);
		left: 5%;
		right: 5%;
		background: rgba(15, 23, 42, 0.95);
		border: 1px solid rgba(148, 163, 184, 0.2);
		border-radius: 16px;
		padding: 20px;
		flex-direction: column;
		gap: 16px;
		transform: translateY(-20px);
		opacity: 0;
		pointer-events: none;
		transition: all 0.3s ease;
	}
	.nav-menu.open {
		transform: translateY(0);
		opacity: 1;
		pointer-events: auto;
	}
	.nav-menu a::after { display: none; }
	.nav-menu-cta { width: 100%; }
	.nav-menu-cta .dev-btn { width: 100%; text-align: center; }
	.connector { display: none; }
	.chip-cloud-container { gap: 20px; }
	.hero-metrics--compact {
		margin-top: 28px;
		grid-template-columns: repeat(2, minmax(140px, 1fr));
	}
	.split-layout--offset { margin-top: 42px; }
	.co-create-network {
		min-height: auto;
		display: grid;
		grid-template-columns: 1fr;
		gap: 14px;
		padding: 18px;
	}
	.co-create-network::before,
	.co-create-network::after {
		display: none;
	}
	.network-core,
	.network-node {
		position: relative;
		inset: auto;
		left: auto;
		right: auto;
		top: auto;
		bottom: auto;
		width: 100%;
		transform: none;
	}
	.network-core {
		height: auto;
		padding: 24px;
	}
	.business-loop {
		grid-template-columns: 1fr;
	}
	.platform-modules {
		grid-template-columns: 1fr;
	}
	.proof-grid {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	* { scroll-behavior: auto !important; }
	[data-reveal] { opacity: 1 !important; transform: none !important; }
	.scroll-indicator { animation: none; }
	.hero-visual { animation: none; }
	.hero-visual::before,
	.hero-visual::after {
		animation: none;
	}
	.signal-ring,
	.signal-pulse,
	.hero-content--wide .hero-title::after,
	.proof-section::before,
	.proof-section::after,
	.proof-item::after,
	.proof-item .stat-number {
		animation: none;
	}
	.home-scenario-video { animation: none; }
}


/* --- 解决方案页深度优化 --- */
.solution-hero .page-hero__inner {
	align-items: center;
}
.solution-console {
	position: relative;
	padding: 34px;
	min-height: 500px;
	border: 1px solid rgba(56, 189, 248, 0.26);
	border-radius: 28px;
	background:
		linear-gradient(135deg, rgba(15, 23, 42, 0.86), rgba(8, 22, 42, 0.76)),
		repeating-linear-gradient(90deg, rgba(56, 189, 248, 0.08) 0 1px, transparent 1px 74px),
		repeating-linear-gradient(0deg, rgba(56, 189, 248, 0.06) 0 1px, transparent 1px 74px);
	box-shadow: 0 32px 90px rgba(2, 8, 23, 0.5), inset 0 0 42px rgba(14, 165, 233, 0.08);
	overflow: hidden;
}
.solution-console::before,
.solution-console::after {
	content: '';
	position: absolute;
	inset: auto;
	pointer-events: none;
}
.solution-console::before {
	width: 180px;
	height: 180px;
	right: 36px;
	top: 76px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(34, 211, 238, 0.34), rgba(37, 99, 235, 0.06) 58%, transparent 70%);
	filter: blur(2px);
	animation: consoleGlow 5s ease-in-out infinite;
}
.solution-console::after {
	left: -20%;
	right: -20%;
	top: 44%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(125, 211, 252, 0.8), transparent);
	animation: consoleScan 4.8s linear infinite;
}
.console-topline {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	font-size: 12px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: rgba(186, 230, 253, 0.78);
}
.console-topline i {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: #67e8f9;
	box-shadow: 0 0 18px rgba(103, 232, 249, 0.9);
}
.console-core {
	position: relative;
	display: grid;
	place-items: center;
	height: 260px;
	margin: 26px 0 30px;
}
.console-ring {
	position: absolute;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	border: 1px solid rgba(125, 211, 252, 0.32);
	box-shadow: inset 0 0 24px rgba(14, 165, 233, 0.16), 0 0 30px rgba(14, 165, 233, 0.1);
	animation: consoleRotate 12s linear infinite;
}
.console-ring::before,
.console-ring::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	border: 1px dashed rgba(34, 211, 238, 0.35);
}
.console-ring::before { inset: 22px; }
.console-ring::after { inset: -30px; transform: rotate(28deg); }
.console-label {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: 26px 34px;
	border-radius: 22px;
	background: rgba(2, 8, 23, 0.62);
	border: 1px solid rgba(56, 189, 248, 0.24);
}
.console-label strong {
	display: block;
	color: #fff;
	font-size: 22px;
	margin-bottom: 10px;
}
.console-label span {
	color: #93c5fd;
	font-size: 14px;
}
.console-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}
.console-grid div {
	padding: 20px 22px;
	min-height: 98px;
	border-radius: 20px;
	background: rgba(15, 23, 42, 0.72);
	border: 1px solid rgba(148, 163, 184, 0.14);
}
.console-grid strong {
	display: block;
	font-size: 32px;
	line-height: 1;
	color: #e0f2fe;
	margin-bottom: 12px;
	text-shadow: 0 0 16px rgba(56, 189, 248, 0.36);
}
.console-grid span {
	color: #94a3b8;
	font-size: 14px;
}
.solution-blueprint-section {
	background:
		radial-gradient(circle at 50% 0%, rgba(14, 165, 233, 0.12), transparent 36%),
		linear-gradient(180deg, #07111f 0%, #070d19 100%);
}
.solution-blueprint {
	position: relative;
	max-width: 1180px;
	min-height: 620px;
	margin: 0 auto;
	border: 1px solid rgba(56, 189, 248, 0.2);
	border-radius: 32px;
	background:
		radial-gradient(circle at 50% 50%, rgba(14, 165, 233, 0.16), transparent 28%),
		repeating-linear-gradient(90deg, rgba(56, 189, 248, 0.07) 0 1px, transparent 1px 86px),
		repeating-linear-gradient(0deg, rgba(56, 189, 248, 0.05) 0 1px, transparent 1px 86px),
		rgba(2, 8, 23, 0.58);
	overflow: hidden;
	box-shadow: inset 0 0 60px rgba(14, 165, 233, 0.08);
}
.solution-blueprint::before,
.solution-blueprint::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 64%;
	height: 44%;
	border: 2px dashed rgba(125, 211, 252, 0.38);
	border-radius: 50%;
	transform: translate(-50%, -50%) rotate(-8deg);
	animation: blueprintOrbit 16s linear infinite;
}
.solution-blueprint::after {
	width: 74%;
	height: 34%;
	border-style: solid;
	opacity: 0.28;
	transform: translate(-50%, -50%) rotate(22deg);
	animation-duration: 22s;
	animation-direction: reverse;
}
.blueprint-node,
.blueprint-center {
	position: absolute;
	z-index: 2;
	border: 1px solid rgba(56, 189, 248, 0.28);
	background: rgba(8, 16, 31, 0.86);
	box-shadow: 0 20px 50px rgba(2, 8, 23, 0.4), 0 0 28px rgba(14, 165, 233, 0.1);
	backdrop-filter: blur(12px);
}
.blueprint-node {
	width: 232px;
	min-height: 136px;
	padding: 18px;
	border-radius: 22px;
}
.blueprint-node span,
.blueprint-center small {
	display: inline-block;
	color: #22d3ee;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.blueprint-node strong,
.blueprint-center strong {
	display: block;
	color: #fff;
	font-size: 22px;
	margin-bottom: 10px;
}
.blueprint-node p,
.blueprint-center p {
	color: #a8b5c8;
	font-size: 14px;
	line-height: 1.7;
}
.blueprint-node--device { left: 8%; top: 38%; }
.blueprint-node--ai { left: 40%; top: 9%; }
.blueprint-node--comm { right: 8%; top: 32%; }
.blueprint-node--client { right: 18%; bottom: 9%; }
.blueprint-node--ops { left: 20%; bottom: 10%; }
.blueprint-center {
	left: 50%;
	top: 50%;
	width: 300px;
	padding: 28px;
	border-radius: 26px;
	text-align: center;
	transform: translate(-50%, -50%);
	background: linear-gradient(145deg, rgba(8, 47, 73, 0.84), rgba(15, 23, 42, 0.92));
}
.solution-module-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	max-width: 1180px;
	margin: 0 auto;
}
.solution-module-card {
	position: relative;
	min-height: 268px;
	padding: 30px;
	border-radius: 26px;
	background: linear-gradient(145deg, rgba(15, 23, 42, 0.92), rgba(7, 18, 34, 0.92));
	border: 1px solid rgba(148, 163, 184, 0.16);
	overflow: hidden;
	transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.solution-module-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 18% 18%, rgba(34, 211, 238, 0.16), transparent 34%);
	opacity: 0.8;
}
.solution-module-card:hover {
	transform: translateY(-6px);
	border-color: rgba(56, 189, 248, 0.42);
	box-shadow: 0 24px 60px rgba(2, 132, 199, 0.12);
}
.solution-module-card > * { position: relative; z-index: 1; }
.solution-module-card > span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 14px;
	background: rgba(14, 165, 233, 0.14);
	border: 1px solid rgba(56, 189, 248, 0.28);
	color: #67e8f9;
	font-weight: 900;
	margin-bottom: 28px;
}
.solution-module-card h3 {
	color: #fff;
	font-size: 22px;
	margin-bottom: 14px;
}
.solution-module-card p {
	color: #a8b5c8;
	line-height: 1.8;
	margin-bottom: 22px;
}
.capability-badges em {
	display: inline-flex;
	font-style: normal;
	font-size: 12px;
	color: #bfdbfe;
	background: rgba(30, 64, 175, 0.28);
	border: 1px solid rgba(96, 165, 250, 0.22);
	border-radius: 999px;
	padding: 6px 10px;
	margin: 0 6px 6px 0;
}
.solution-stack {
	max-width: 1120px;
	margin: 0 auto;
	padding: 22px;
	border-radius: 30px;
	border: 1px solid rgba(56, 189, 248, 0.18);
	background:
		linear-gradient(90deg, rgba(12, 74, 110, 0.2), transparent 40%),
		rgba(2, 8, 23, 0.42);
}
.stack-layer {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 32px;
	align-items: center;
	padding: 24px 28px;
	border-radius: 22px;
	border: 1px solid rgba(148, 163, 184, 0.14);
	background: rgba(15, 23, 42, 0.72);
	margin-bottom: 14px;
}
.stack-layer:last-child { margin-bottom: 0; }
.stack-layer div span {
	display: block;
	color: #38bdf8;
	font-size: 12px;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 8px;
}
.stack-layer div strong {
	color: #fff;
	font-size: 24px;
}
.stack-layer p {
	color: #b6c3d4;
	line-height: 1.8;
}
.solution-paths {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	max-width: 1180px;
	margin: 0 auto;
}
.solution-path-card {
	padding: 32px;
	border-radius: 28px;
	background: rgba(15, 23, 42, 0.76);
	border: 1px solid rgba(148, 163, 184, 0.16);
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.solution-path-card b {
	color: #38bdf8;
	letter-spacing: 2px;
	font-size: 13px;
}
.solution-path-card h3 {
	color: #fff;
	font-size: 26px;
	margin: 16px 0 14px;
}
.solution-path-card p {
	color: #a8b5c8;
	line-height: 1.8;
	margin-bottom: 22px;
}
.solution-path-card ul li {
	position: relative;
	color: #dbeafe;
	padding-left: 18px;
	margin-bottom: 12px;
}
.solution-path-card ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 10px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #22d3ee;
	box-shadow: 0 0 12px rgba(34, 211, 238, 0.8);
}
.solution-ecosystem-section {
	background: radial-gradient(circle at 85% 15%, rgba(59, 130, 246, 0.14), transparent 32%), #070d19;
}
.solution-ecosystem {
	max-width: 1180px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.1fr repeat(2, minmax(0, 1fr));
	gap: 18px;
}
.ecosystem-panel {
	padding: 26px;
	min-height: 172px;
	border-radius: 24px;
	border: 1px solid rgba(96, 165, 250, 0.18);
	background: rgba(15, 23, 42, 0.72);
}
.ecosystem-panel--main {
	grid-row: span 2;
	background:
		radial-gradient(circle at 30% 20%, rgba(34, 211, 238, 0.18), transparent 35%),
		linear-gradient(145deg, rgba(8, 47, 73, 0.9), rgba(15, 23, 42, 0.86));
}
.ecosystem-panel span {
	display: inline-block;
	color: #38bdf8;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 18px;
}
.ecosystem-panel strong {
	display: block;
	color: #fff;
	font-size: 23px;
	margin-bottom: 12px;
}
.ecosystem-panel p {
	color: #a8b5c8;
	line-height: 1.8;
}
.solution-assurance {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	max-width: 1180px;
	margin: 0 auto;
}
.assurance-card {
	padding: 30px;
	border-radius: 26px;
	background: rgba(15, 23, 42, 0.8);
	border: 1px solid rgba(148, 163, 184, 0.16);
}
.assurance-card h3 {
	color: #fff;
	font-size: 24px;
	margin-bottom: 14px;
}
.assurance-card p {
	color: #a8b5c8;
	line-height: 1.8;
	margin-bottom: 22px;
}
.assurance-card div span {
	display: inline-flex;
	padding: 7px 11px;
	border-radius: 999px;
	background: rgba(14, 165, 233, 0.12);
	border: 1px solid rgba(56, 189, 248, 0.18);
	color: #bae6fd;
	font-size: 12px;
	margin: 0 6px 6px 0;
}
.solution-cta p { max-width: 760px; }
@keyframes consoleGlow {
	0%, 100% { transform: scale(0.92); opacity: 0.55; }
	50% { transform: scale(1.08); opacity: 0.9; }
}
@keyframes consoleScan {
	0% { transform: translateY(-140px); opacity: 0; }
	20% { opacity: 1; }
	70% { opacity: 1; }
	100% { transform: translateY(170px); opacity: 0; }
}
@keyframes consoleRotate {
	to { transform: rotate(360deg); }
}
@keyframes blueprintOrbit {
	to { transform: translate(-50%, -50%) rotate(352deg); }
}
@media (max-width: 1080px) {
	.solution-module-grid,
	.solution-paths,
	.solution-assurance {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.solution-ecosystem {
		grid-template-columns: 1fr 1fr;
	}
	.ecosystem-panel--main {
		grid-column: 1 / -1;
		grid-row: auto;
	}
	.solution-blueprint {
		min-height: auto;
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
		padding: 22px;
	}
	.solution-blueprint::before,
	.solution-blueprint::after { display: none; }
	.blueprint-node,
	.blueprint-center {
		position: relative;
		inset: auto;
		left: auto;
		right: auto;
		top: auto;
		bottom: auto;
		width: auto;
		transform: none;
	}
	.blueprint-center { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
	.solution-console { min-height: auto; padding: 20px; }
	.console-core { height: 180px; }
	.console-grid,
	.solution-module-grid,
	.solution-paths,
	.solution-ecosystem,
	.solution-assurance,
	.solution-blueprint {
		grid-template-columns: 1fr;
	}
	.blueprint-center { grid-column: auto; }
	.stack-layer {
		grid-template-columns: 1fr;
		gap: 14px;
		padding: 22px;
	}
	.console-grid strong { font-size: 24px; }
}
@media (prefers-reduced-motion: reduce) {
	.solution-console::before,
	.solution-console::after,
	.console-ring,
	.solution-blueprint::before,
	.solution-blueprint::after {
		animation: none;
	}
}


/* --- 场景页深度优化 --- */
.scenario-hero .page-hero__inner {
	align-items: center;
}
.page-hero--scenarios:has(.hero-3d-canvas)::after {
	background:
		radial-gradient(circle at 36% 52%, rgba(16, 185, 129, 0.08), transparent 38%),
		linear-gradient(105deg, transparent 38%, rgba(45, 212, 191, 0.035) 50%, transparent 64%);
	background-size: 220% 100%;
}
.scenario-hero-panel {
	position: relative;
	padding: 32px;
	min-height: 500px;
	border-radius: 30px;
	border: 1px solid rgba(52, 211, 153, 0.28);
	background:
		linear-gradient(145deg, rgba(5, 24, 34, 0.88), rgba(8, 18, 34, 0.82)),
		repeating-linear-gradient(90deg, rgba(52, 211, 153, 0.07) 0 1px, transparent 1px 76px),
		repeating-linear-gradient(0deg, rgba(52, 211, 153, 0.05) 0 1px, transparent 1px 76px);
	box-shadow: 0 30px 90px rgba(2, 8, 23, 0.48), inset 0 0 48px rgba(16, 185, 129, 0.08);
	overflow: hidden;
}
.scenario-hero-panel::before,
.scenario-hero-panel::after {
	content: '';
	position: absolute;
	pointer-events: none;
}
.scenario-hero-panel::before {
	width: 260px;
	height: 260px;
	right: -70px;
	top: 80px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.32), rgba(14, 165, 233, 0.08) 56%, transparent 70%);
	filter: blur(2px);
	animation: scenarioPanelGlow 5s ease-in-out infinite;
}
.scenario-hero-panel::after {
	left: -22%;
	right: -22%;
	top: 50%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(110, 231, 183, 0.84), transparent);
	animation: scenarioPanelScan 4.8s linear infinite;
}
.scenario-panel-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	font-size: 12px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: rgba(187, 247, 208, 0.78);
}
.scenario-panel-head i {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: #34d399;
	box-shadow: 0 0 18px rgba(52, 211, 153, 0.9);
}
.scenario-orbit {
	position: relative;
	display: grid;
	place-items: center;
	height: 270px;
	margin: 24px 0 28px;
}
.scenario-orbit::before,
.scenario-orbit::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	border-radius: 50%;
	border: 1px dashed rgba(110, 231, 183, 0.32);
	transform: translate(-50%, -50%);
}
.scenario-orbit::before {
	width: 250px;
	height: 250px;
	animation: scenarioOrbitSpin 18s linear infinite;
}
.scenario-orbit::after {
	width: 330px;
	height: 170px;
	transform: translate(-50%, -50%) rotate(-18deg);
	animation: scenarioOrbitSpin 24s linear infinite reverse;
}
.scenario-orbit-core {
	position: relative;
	z-index: 2;
	width: 245px;
	padding: 24px 26px;
	text-align: center;
	border-radius: 24px;
	background: rgba(2, 8, 23, 0.66);
	border: 1px solid rgba(52, 211, 153, 0.24);
	box-shadow: 0 0 28px rgba(16, 185, 129, 0.14);
}
.scenario-orbit-core strong {
	display: block;
	color: #fff;
	font-size: 21px;
	margin-bottom: 10px;
}
.scenario-orbit-core span {
	color: #a7f3d0;
	font-size: 13px;
}
.scenario-orbit-node {
	position: absolute;
	z-index: 3;
	padding: 8px 13px;
	border-radius: 999px;
	background: rgba(6, 78, 59, 0.72);
	border: 1px solid rgba(52, 211, 153, 0.32);
	color: #d1fae5;
	font-size: 13px;
	box-shadow: 0 0 18px rgba(16, 185, 129, 0.16);
}
.scenario-orbit-node.node-a { left: 12%; top: 42%; }
.scenario-orbit-node.node-b { right: 12%; top: 28%; }
.scenario-orbit-node.node-c { right: 18%; bottom: 20%; }
.scenario-orbit-node.node-d { left: 18%; bottom: 22%; }
.scenario-panel-metrics {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}
.scenario-panel-metrics div {
	min-height: 96px;
	padding: 19px 20px;
	border-radius: 20px;
	background:
		radial-gradient(circle at 18% 16%, rgba(52, 211, 153, 0.12), transparent 42%),
		linear-gradient(145deg, rgba(5, 46, 39, 0.62), rgba(3, 18, 25, 0.78));
	border: 1px solid rgba(52, 211, 153, 0.18);
	box-shadow: inset 0 0 28px rgba(16, 185, 129, 0.06);
}
.scenario-panel-metrics strong {
	display: block;
	font-size: 30px;
	line-height: 1;
	color: #dcfce7;
	margin-bottom: 12px;
	text-shadow: 0 0 16px rgba(52, 211, 153, 0.28);
}
.scenario-panel-metrics span {
	color: #a8b5c8;
	font-size: 14px;
}
.scenario-map-section {
	background:
		radial-gradient(circle at 48% 10%, rgba(16, 185, 129, 0.14), transparent 34%),
		linear-gradient(180deg, #07111f 0%, #070d19 100%);
}
.scenario-network {
	position: relative;
	max-width: 1180px;
	min-height: 660px;
	margin: 0 auto;
	border-radius: 34px;
	border: 1px solid rgba(52, 211, 153, 0.22);
	background:
		radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.14), transparent 28%),
		repeating-linear-gradient(90deg, rgba(52, 211, 153, 0.06) 0 1px, transparent 1px 86px),
		repeating-linear-gradient(0deg, rgba(52, 211, 153, 0.045) 0 1px, transparent 1px 86px),
		rgba(2, 8, 23, 0.6);
	overflow: hidden;
	box-shadow: inset 0 0 70px rgba(16, 185, 129, 0.08);
}
.scenario-network::before,
.scenario-network::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 68%;
	height: 42%;
	border: 2px dashed rgba(110, 231, 183, 0.36);
	border-radius: 50%;
	transform: translate(-50%, -50%) rotate(-12deg);
	animation: scenarioOrbitSpin 22s linear infinite;
}
.scenario-network::after {
	width: 76%;
	height: 30%;
	border-style: solid;
	opacity: 0.24;
	animation-duration: 28s;
	animation-direction: reverse;
}
.scenario-network-core,
.scenario-map-node {
	position: absolute;
	z-index: 2;
	border: 1px solid rgba(52, 211, 153, 0.28);
	background: rgba(8, 18, 34, 0.88);
	box-shadow: 0 20px 52px rgba(2, 8, 23, 0.42), 0 0 26px rgba(16, 185, 129, 0.1);
	backdrop-filter: blur(12px);
}
.scenario-network-core {
	left: 50%;
	top: 50%;
	width: 310px;
	padding: 30px;
	border-radius: 28px;
	text-align: center;
	transform: translate(-50%, -50%);
	background: linear-gradient(145deg, rgba(6, 78, 59, 0.86), rgba(15, 23, 42, 0.92));
}
.scenario-network-core small,
.scenario-map-node span {
	display: inline-block;
	color: #34d399;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.scenario-network-core strong,
.scenario-map-node strong {
	display: block;
	color: #fff;
	font-size: 22px;
	margin-bottom: 10px;
}
.scenario-network-core p,
.scenario-map-node p {
	color: #a8b5c8;
	font-size: 14px;
	line-height: 1.75;
}
.scenario-map-node {
	width: 252px;
	min-height: 136px;
	padding: 18px;
	border-radius: 22px;
}
.node-companion { left: 8%; top: 38%; }
.node-communication { left: 38%; top: 9%; }
.node-content { right: 8%; top: 34%; }
.node-control { right: 19%; bottom: 10%; }
.node-oversea { left: 20%; bottom: 10%; }
.scenario-focus-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	max-width: 1180px;
	margin: 0 auto;
}
.scenario-focus-card {
	position: relative;
	padding: 30px;
	border-radius: 28px;
	background: linear-gradient(145deg, rgba(15, 23, 42, 0.92), rgba(6, 22, 34, 0.92));
	border: 1px solid rgba(148, 163, 184, 0.16);
	overflow: hidden;
	transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.scenario-focus-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 20% 16%, rgba(52, 211, 153, 0.16), transparent 36%);
}
.scenario-focus-card:hover {
	transform: translateY(-6px);
	border-color: rgba(52, 211, 153, 0.42);
	box-shadow: 0 24px 60px rgba(5, 150, 105, 0.12);
}
.scenario-focus-card > * { position: relative; z-index: 1; }
.scenario-focus-card.is-large {
	min-height: 330px;
}
.scenario-focus-card.is-compact {
	min-height: 170px;
}
.scenario-focus-card > span {
	display: inline-block;
	color: #34d399;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 28px;
}
.scenario-focus-card h3 {
	color: #fff;
	font-size: 25px;
	margin-bottom: 14px;
}
.scenario-focus-card p {
	color: #a8b5c8;
	line-height: 1.85;
	margin-bottom: 24px;
}
.scenario-value-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.scenario-value-row b,
.scenario-value-row em {
	font-style: normal;
	font-size: 12px;
	border-radius: 999px;
	padding: 7px 11px;
}
.scenario-value-row b {
	color: #dcfce7;
	background: rgba(6, 78, 59, 0.62);
}
.scenario-value-row em {
	color: #bfdbfe;
	background: rgba(30, 64, 175, 0.24);
	border: 1px solid rgba(96, 165, 250, 0.2);
}
.scenario-loop-section {
	background: radial-gradient(circle at 16% 20%, rgba(16, 185, 129, 0.12), transparent 30%), #070d19;
}
.scenario-value-loop {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	max-width: 1180px;
	margin: 0 auto;
}
.scenario-value-loop::before {
	content: '';
	position: absolute;
	left: 7%;
	right: 7%;
	top: 50%;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(52, 211, 153, 0.62), rgba(56, 189, 248, 0.46), transparent);
	transform: translateY(-50%);
}
.value-loop-item {
	position: relative;
	z-index: 1;
	min-height: 260px;
	padding: 28px;
	border-radius: 26px;
	background: rgba(15, 23, 42, 0.84);
	border: 1px solid rgba(148, 163, 184, 0.16);
}
.value-loop-item span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(16, 185, 129, 0.14);
	border: 1px solid rgba(52, 211, 153, 0.28);
	color: #86efac;
	font-weight: 900;
	margin-bottom: 38px;
	box-shadow: 0 0 22px rgba(16, 185, 129, 0.18);
}
.value-loop-item h3 {
	color: #fff;
	font-size: 25px;
	margin-bottom: 14px;
}
.value-loop-item p {
	color: #a8b5c8;
	line-height: 1.8;
}
.scenario-delivery-grid,
.scenario-device-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	max-width: 1180px;
	margin: 0 auto;
}
.scenario-delivery-card,
.scenario-device-card {
	padding: 30px;
	border-radius: 26px;
	background: rgba(15, 23, 42, 0.78);
	border: 1px solid rgba(148, 163, 184, 0.16);
}
.scenario-delivery-card span {
	display: inline-block;
	color: #34d399;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 2px;
	margin-bottom: 18px;
}
.scenario-delivery-card h3,
.scenario-device-card strong {
	display: block;
	color: #fff;
	font-size: 24px;
	margin-bottom: 12px;
}
.scenario-delivery-card p,
.scenario-device-card span {
	color: #a8b5c8;
	line-height: 1.8;
}
.scenario-device-section {
	background: linear-gradient(180deg, #080f1d 0%, #07111f 100%);
}
.scenario-device-card {
	min-height: 150px;
	background:
		radial-gradient(circle at 14% 20%, rgba(52, 211, 153, 0.12), transparent 34%),
		rgba(15, 23, 42, 0.78);
}
.scenario-cta p { max-width: 780px; }
@keyframes scenarioPanelGlow {
	0%, 100% { transform: scale(0.92); opacity: 0.55; }
	50% { transform: scale(1.08); opacity: 0.9; }
}
@keyframes scenarioPanelScan {
	0% { transform: translateY(-150px); opacity: 0; }
	20% { opacity: 1; }
	70% { opacity: 1; }
	100% { transform: translateY(180px); opacity: 0; }
}
@keyframes scenarioOrbitSpin {
	to { transform: translate(-50%, -50%) rotate(348deg); }
}
@media (max-width: 1080px) {
	.scenario-network {
		min-height: auto;
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
		padding: 22px;
	}
	.scenario-network::before,
	.scenario-network::after { display: none; }
	.scenario-network-core,
	.scenario-map-node {
		position: relative;
		inset: auto;
		left: auto;
		right: auto;
		top: auto;
		bottom: auto;
		width: auto;
		transform: none;
	}
	.scenario-network-core { grid-column: 1 / -1; }
	.scenario-focus-grid,
	.scenario-value-loop,
	.scenario-delivery-grid,
	.scenario-device-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.scenario-value-loop::before { display: none; }
}
@media (max-width: 768px) {
	.scenario-hero-panel { min-height: auto; padding: 20px; }
	.scenario-orbit { height: 230px; }
	.scenario-orbit::before { width: 210px; height: 210px; }
	.scenario-orbit::after { width: 260px; height: 140px; }
	.scenario-panel-metrics,
	.scenario-network,
	.scenario-focus-grid,
	.scenario-value-loop,
	.scenario-delivery-grid,
	.scenario-device-grid {
		grid-template-columns: 1fr;
	}
	.scenario-network-core { grid-column: auto; }
	.scenario-orbit-node { font-size: 12px; }
	.scenario-orbit-node.node-a { left: 0; }
	.scenario-orbit-node.node-b { right: 0; }
	.scenario-orbit-node.node-c { right: 4%; }
	.scenario-orbit-node.node-d { left: 4%; }
}
@media (prefers-reduced-motion: reduce) {
	.scenario-hero-panel::before,
	.scenario-hero-panel::after,
	.scenario-orbit::before,
	.scenario-orbit::after,
	.scenario-network::before,
	.scenario-network::after {
		animation: none;
	}
}

/* --- Shared secondary buttons --- */
.btn-secondary {
	background: rgba(15, 23, 42, 0.58);
	color: #dbeafe;
	border: 1px solid rgba(96, 165, 250, 0.34);
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.btn-secondary:hover {
	transform: translateY(-2px);
	background: rgba(30, 64, 175, 0.38);
	box-shadow: 0 14px 28px rgba(2, 8, 23, 0.28);
}
.page-hero--cases::before {
	background:
		radial-gradient(circle at 16% 18%, rgba(56, 189, 248, 0.16), transparent 42%),
		radial-gradient(circle at 78% 28%, rgba(14, 165, 233, 0.12), transparent 38%),
		linear-gradient(120deg, #06101e 0%, #081524 52%, #050914 100%);
}
.collab-hero .page-hero__inner {
	grid-template-columns: minmax(320px, 0.92fr) minmax(420px, 1fr);
	gap: clamp(40px, 6vw, 92px);
	max-width: 1480px;
	margin: 0 auto;
}
.collab-hero .page-hero__content {
	max-width: 720px;
}
.collab-hero .page-hero__content h1 {
	max-width: 760px;
}
.collab-network-panel {
	position: relative;
	min-height: 560px;
	padding: 30px;
	border-radius: 32px;
	background:
		radial-gradient(circle at 76% 18%, rgba(56, 189, 248, 0.16), transparent 34%),
		radial-gradient(circle at 24% 80%, rgba(37, 99, 235, 0.14), transparent 38%),
		linear-gradient(145deg, rgba(2, 8, 23, 0.72), rgba(8, 18, 34, 0.84));
	border: 1px solid rgba(56, 189, 248, 0.22);
	box-shadow: 0 30px 90px rgba(2, 8, 23, 0.48), inset 0 0 52px rgba(14, 165, 233, 0.07);
	overflow: hidden;
	backdrop-filter: blur(14px);
}
.collab-network-panel::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(56, 189, 248, 0.055) 1px, transparent 1px),
		linear-gradient(90deg, rgba(56, 189, 248, 0.045) 1px, transparent 1px);
	background-size: 76px 76px;
	opacity: 0.34;
	animation: collabGridDrift 20s linear infinite;
	pointer-events: none;
}
.collab-network-panel::after {
	content: '';
	position: absolute;
	left: -24%;
	right: -24%;
	top: 47%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(125, 211, 252, 0.76), transparent);
	animation: collabScan 5.8s ease-in-out infinite;
	pointer-events: none;
}
.collab-panel-head {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	font-size: 12px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: rgba(186, 230, 253, 0.82);
}
.collab-panel-head i {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: #38bdf8;
	box-shadow: 0 0 18px rgba(56, 189, 248, 0.86);
}
.collab-orbit-map {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	height: 340px;
	margin: 32px 0 26px;
}
.collab-orbit-map::before,
.collab-orbit-map::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	border-radius: 50%;
	pointer-events: none;
}
.collab-orbit-map::before {
	width: 74%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(125, 211, 252, 0.48), transparent);
	transform: translate(-50%, -50%);
}
.collab-orbit-map::after {
	width: 54%;
	height: 54%;
	border: 1px dashed rgba(125, 211, 252, 0.22);
	transform: translate(-50%, -50%) rotate(20deg) scaleY(0.72);
	animation: collabRingSpin 18s linear infinite;
}
.collab-ring {
	position: absolute;
	left: 50%;
	top: 50%;
	border-radius: 50%;
	border: 1px solid rgba(56, 189, 248, 0.18);
	pointer-events: none;
}
.collab-ring.ring-a {
	width: 72%;
	height: 46%;
	transform: translate(-50%, -50%) rotate(-18deg);
	animation: collabRingBreathe 6s ease-in-out infinite;
}
.collab-ring.ring-b {
	width: 58%;
	height: 76%;
	border-style: dashed;
	transform: translate(-50%, -50%) rotate(24deg);
	animation: collabRingBreathe 7.5s ease-in-out infinite reverse;
}
.collab-center {
	position: relative;
	z-index: 4;
	width: min(300px, 62%);
	padding: 26px 28px;
	border-radius: 26px;
	text-align: center;
	background: linear-gradient(145deg, rgba(8, 47, 73, 0.9), rgba(15, 23, 42, 0.94));
	border: 1px solid rgba(56, 189, 248, 0.3);
	box-shadow: 0 0 34px rgba(14, 165, 233, 0.18), inset 0 1px 0 rgba(255,255,255,0.05);
}
.collab-center strong {
	display: block;
	font-size: 22px;
	color: #fff;
	margin-bottom: 10px;
}
.collab-center span {
	color: #bae6fd;
	font-size: 13px;
	line-height: 1.7;
}
.collab-node {
	position: absolute;
	z-index: 5;
	padding: 9px 14px;
	border-radius: 999px;
	background: rgba(8, 47, 73, 0.74);
	border: 1px solid rgba(56, 189, 248, 0.32);
	color: #e0f2fe;
	font-size: 13px;
	box-shadow: 0 0 22px rgba(14, 165, 233, 0.16);
	white-space: nowrap;
}
.node-ip { left: 3%; top: 43%; }
.node-channel { right: 2%; top: 26%; }
.node-hardware { right: 7%; bottom: 21%; }
.node-platform { left: 9%; bottom: 18%; }
.collab-pulse {
	position: absolute;
	z-index: 6;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #7dd3fc;
	box-shadow: 0 0 18px rgba(125, 211, 252, 0.95);
	pointer-events: none;
}
.pulse-a { animation: collabPulseA 4.8s ease-in-out infinite; }
.pulse-b { animation: collabPulseB 5.4s ease-in-out infinite 0.9s; }
.pulse-c { animation: collabPulseC 5.9s ease-in-out infinite 1.8s; }
.collab-proof-row {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}
.collab-proof-row div {
	padding: 18px 16px;
	border-radius: 18px;
	background: linear-gradient(145deg, rgba(8, 47, 73, 0.62), rgba(3, 18, 32, 0.82));
	border: 1px solid rgba(56, 189, 248, 0.17);
}
.collab-proof-row strong {
	display: block;
	font-size: 28px;
	line-height: 1;
	color: #e0f2fe;
	margin-bottom: 10px;
	text-shadow: 0 0 14px rgba(56, 189, 248, 0.26);
}
.collab-proof-row span {
	font-size: 13px;
	color: #a8b5c8;
}
.collab-model-section,
.collab-boundary-section {
	background: linear-gradient(180deg, #080f1d 0%, #0a1220 100%);
}
.collab-network-section {
	background:
		radial-gradient(circle at 18% 18%, rgba(56, 189, 248, 0.12), transparent 32%),
		linear-gradient(180deg, #07111f 0%, #080d18 100%);
}
.collab-workflow-section,
.collab-assurance-section {
	background: #080d18;
}
.collab-mode-grid,
.collab-assurance-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	max-width: 1180px;
	margin: 0 auto;
}
.collab-mode-card,
.collab-role-card,
.collab-boundary-card,
.collab-assurance-card {
	position: relative;
	border-radius: 28px;
	background: rgba(15, 23, 42, 0.78);
	border: 1px solid rgba(148, 163, 184, 0.16);
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
	overflow: hidden;
}
.collab-mode-card {
	min-height: 410px;
	padding: 34px;
}
.collab-mode-card::before,
.collab-role-card::before,
.collab-boundary-card::before,
.collab-assurance-card::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 20% 18%, rgba(56, 189, 248, 0.13), transparent 36%);
	pointer-events: none;
}
.collab-mode-card > *,
.collab-role-card > *,
.collab-boundary-card > *,
.collab-assurance-card > * {
	position: relative;
	z-index: 1;
}
.collab-mode-card > span,
.collab-role-card b,
.collab-assurance-card span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	border-radius: 14px;
	background: rgba(14, 165, 233, 0.14);
	border: 1px solid rgba(56, 189, 248, 0.28);
	color: #67e8f9;
	font-weight: 900;
	letter-spacing: 1px;
	margin-bottom: 34px;
}
.collab-mode-card h3,
.collab-role-card h3,
.collab-boundary-card h3,
.collab-assurance-card h3 {
	color: #fff;
	font-size: 26px;
	margin-bottom: 16px;
}
.collab-mode-card p,
.collab-role-card p,
.collab-boundary-card li,
.collab-assurance-card p {
	color: #a8b5c8;
	line-height: 1.85;
}
.collab-mode-card dl {
	display: grid;
	gap: 14px;
	margin-top: 28px;
}
.collab-mode-card dl div {
	padding: 16px;
	border-radius: 18px;
	background: rgba(2, 8, 23, 0.32);
	border: 1px solid rgba(125, 211, 252, 0.1);
}
.collab-mode-card dt {
	color: #7dd3fc;
	font-weight: 800;
	font-size: 13px;
	letter-spacing: 2px;
	margin-bottom: 8px;
}
.collab-mode-card dd {
	color: #dbeafe;
	line-height: 1.7;
}
.collab-role-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
	max-width: 1180px;
	margin: 0 auto;
}
.collab-role-card {
	min-height: 300px;
	padding: 30px;
}
.collab-role-card.is-primary {
	background: linear-gradient(145deg, rgba(8, 47, 73, 0.88), rgba(15, 23, 42, 0.88));
	border-color: rgba(56, 189, 248, 0.34);
	box-shadow: 0 24px 64px rgba(14, 165, 233, 0.1);
}
.collab-workflow {
	position: relative;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 18px;
	max-width: 1220px;
	margin: 0 auto;
}
.collab-workflow::before {
	content: '';
	position: absolute;
	left: 6%;
	right: 6%;
	top: 34px;
	height: 2px;
	background: linear-gradient(90deg, rgba(56, 189, 248, 0), rgba(56, 189, 248, 0.72), rgba(129, 140, 248, 0.5), rgba(56, 189, 248, 0));
	box-shadow: 0 0 18px rgba(56, 189, 248, 0.25);
}
.workflow-step {
	position: relative;
	z-index: 1;
	min-height: 240px;
	padding: 70px 22px 24px;
	border-radius: 24px;
	background: rgba(15, 23, 42, 0.76);
	border: 1px solid rgba(148, 163, 184, 0.16);
}
.workflow-step span {
	position: absolute;
	left: 22px;
	top: 17px;
	display: inline-grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: rgba(14, 165, 233, 0.16);
	border: 1px solid rgba(56, 189, 248, 0.36);
	color: #7dd3fc;
	font-weight: 900;
	box-shadow: 0 0 18px rgba(14, 165, 233, 0.2);
}
.workflow-step strong {
	display: block;
	color: #fff;
	font-size: 21px;
	margin-bottom: 12px;
}
.workflow-step p {
	color: #a8b5c8;
	line-height: 1.75;
}
.collab-boundary-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	max-width: 1080px;
	margin: 0 auto;
}
.collab-boundary-card {
	padding: 34px;
}
.collab-boundary-card ul {
	display: grid;
	gap: 14px;
	margin-top: 22px;
}
.collab-boundary-card li {
	position: relative;
	padding-left: 22px;
}
.collab-boundary-card li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.72em;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #38bdf8;
	box-shadow: 0 0 12px rgba(56, 189, 248, 0.72);
}
.collab-assurance-card {
	min-height: 260px;
	padding: 32px;
}
.collab-assurance-card span {
	width: auto;
	font-size: 12px;
	text-transform: uppercase;
}
.collab-cta {
	background:
		radial-gradient(circle at 20% 20%, rgba(56, 189, 248, 0.22), transparent 38%),
		linear-gradient(120deg, #082f49 0%, #172554 55%, #3b1d7a 100%);
}
.collab-cta .hero-btn-group {
	justify-content: center;
	margin-top: 28px;
}
@keyframes collabGridDrift {
	to { background-position: 76px 76px; }
}
@keyframes collabScan {
	0%, 100% { transform: translateY(-130px); opacity: 0; }
	18%, 72% { opacity: 1; }
	88% { transform: translateY(150px); opacity: 0; }
}
@keyframes collabRingSpin {
	to { transform: translate(-50%, -50%) rotate(380deg) scaleY(0.72); }
}
@keyframes collabRingBreathe {
	0%, 100% { opacity: 0.38; filter: drop-shadow(0 0 0 rgba(56, 189, 248, 0)); }
	50% { opacity: 0.86; filter: drop-shadow(0 0 12px rgba(56, 189, 248, 0.22)); }
}
@keyframes collabPulseA {
	0% { left: 20%; top: 50%; opacity: 0; transform: scale(0.7); }
	16% { opacity: 1; }
	52% { left: 50%; top: 28%; opacity: 1; }
	86% { left: 78%; top: 43%; opacity: 0; transform: scale(1.2); }
	100% { opacity: 0; }
}
@keyframes collabPulseB {
	0% { right: 16%; top: 35%; opacity: 0; transform: scale(0.7); }
	18% { opacity: 1; }
	54% { right: 44%; top: 54%; opacity: 1; }
	88% { right: 72%; top: 69%; opacity: 0; transform: scale(1.2); }
	100% { opacity: 0; }
}
@keyframes collabPulseC {
	0% { left: 29%; bottom: 22%; opacity: 0; transform: scale(0.7); }
	20% { opacity: 1; }
	56% { left: 52%; bottom: 42%; opacity: 1; }
	90% { left: 82%; bottom: 30%; opacity: 0; transform: scale(1.2); }
	100% { opacity: 0; }
}
@media (max-width: 1180px) {
	.collab-hero .page-hero__inner,
	.collab-role-grid,
	.collab-workflow {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.collab-workflow::before { display: none; }
	.collab-mode-grid,
	.collab-assurance-grid {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 768px) {
	.collab-hero .page-hero__inner,
	.collab-role-grid,
	.collab-workflow,
	.collab-boundary-grid,
	.collab-proof-row {
		grid-template-columns: 1fr;
	}
	.collab-network-panel {
		min-height: auto;
		padding: 22px;
	}
	.collab-orbit-map {
		height: auto;
		display: grid;
		grid-template-columns: 1fr;
		gap: 12px;
		margin: 24px 0;
	}
	.collab-orbit-map::before,
	.collab-orbit-map::after,
	.collab-ring,
	.collab-pulse {
		display: none;
	}
	.collab-center,
	.collab-node {
		position: relative;
		inset: auto;
		left: auto;
		right: auto;
		top: auto;
		bottom: auto;
		width: 100%;
		white-space: normal;
	}
	.collab-mode-card,
	.collab-role-card,
	.collab-boundary-card,
	.collab-assurance-card {
		min-height: auto;
		padding: 24px;
	}
	.workflow-step {
		min-height: auto;
	}
}
@media (prefers-reduced-motion: reduce) {
	.collab-network-panel::before,
	.collab-network-panel::after,
	.collab-orbit-map::after,
	.collab-ring,
	.collab-pulse {
		animation: none;
	}
}

/* --- Cases hero assembly desk override --- */
.collab-hero:has(.collab-assembly-panel) .page-hero__inner {
	grid-template-columns: minmax(320px, 0.86fr) minmax(520px, 1.04fr);
	gap: clamp(44px, 6vw, 96px);
}
.collab-assembly-panel {
	position: relative;
	min-height: 590px;
	padding: 30px;
	border-radius: 34px;
	background:
		radial-gradient(circle at 50% 44%, rgba(56, 189, 248, 0.15), transparent 34%),
		radial-gradient(circle at 86% 18%, rgba(96, 165, 250, 0.14), transparent 28%),
		linear-gradient(145deg, rgba(3, 12, 28, 0.78), rgba(8, 20, 36, 0.9));
	border: 1px solid rgba(56, 189, 248, 0.24);
	box-shadow: 0 34px 96px rgba(2, 8, 23, 0.54), inset 0 0 58px rgba(14, 165, 233, 0.08);
	overflow: hidden;
	backdrop-filter: blur(14px);
}
.collab-assembly-panel::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(125, 211, 252, 0.055) 1px, transparent 1px),
		linear-gradient(90deg, rgba(125, 211, 252, 0.045) 1px, transparent 1px),
		radial-gradient(circle at 12% 16%, rgba(125, 211, 252, 0.16) 0 1px, transparent 2px),
		radial-gradient(circle at 88% 80%, rgba(96, 165, 250, 0.14) 0 1px, transparent 2px);
	background-size: 74px 74px, 74px 74px, 120px 120px, 140px 140px;
	opacity: 0.42;
	pointer-events: none;
}
.collab-assembly-panel::after {
	content: '';
	position: absolute;
	inset: 18px;
	border-radius: 26px;
	border: 1px solid rgba(125, 211, 252, 0.1);
	box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.45);
	pointer-events: none;
}
.assembly-head {
	position: relative;
	z-index: 4;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	font-size: 12px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: rgba(186, 230, 253, 0.86);
}
.assembly-head i {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: #38bdf8;
	box-shadow: 0 0 18px rgba(56, 189, 248, 0.9);
}
.assembly-stage {
	position: relative;
	z-index: 2;
	height: 382px;
	margin: 28px 0 20px;
	border-radius: 28px;
	background:
		radial-gradient(circle at 50% 48%, rgba(14, 165, 233, 0.11), transparent 31%),
		linear-gradient(180deg, rgba(2, 8, 23, 0.16), rgba(2, 8, 23, 0.28));
	overflow: hidden;
}
.assembly-gridline {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, transparent 0 49.8%, rgba(125, 211, 252, 0.2) 50%, transparent 50.2% 100%),
		linear-gradient(0deg, transparent 0 49.8%, rgba(125, 211, 252, 0.16) 50%, transparent 50.2% 100%);
	opacity: 0.9;
}
.assembly-core,
.assembly-input,
.assembly-output {
	position: absolute;
	z-index: 4;
	border: 1px solid rgba(56, 189, 248, 0.26);
	background: rgba(5, 22, 40, 0.82);
	box-shadow: 0 20px 54px rgba(2, 8, 23, 0.45), inset 0 1px 0 rgba(255,255,255,0.04);
	backdrop-filter: blur(12px);
}
.assembly-core {
	left: 50%;
	top: 49%;
	width: 292px;
	padding: 25px 28px;
	border-radius: 26px;
	text-align: center;
	transform: translate(-50%, -50%);
	background: linear-gradient(145deg, rgba(8, 47, 73, 0.9), rgba(15, 23, 42, 0.94));
	border-color: rgba(125, 211, 252, 0.36);
	box-shadow: 0 0 40px rgba(14, 165, 233, 0.17), inset 0 1px 0 rgba(255,255,255,0.06);
	animation: assemblyCoreGlow 5.6s ease-in-out infinite;
}
.assembly-core small {
	display: block;
	color: #38bdf8;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 2px;
	margin-bottom: 12px;
}
.assembly-core strong {
	display: block;
	color: #fff;
	font-size: 24px;
	margin-bottom: 10px;
}
.assembly-core span {
	color: #bae6fd;
	font-size: 13px;
	line-height: 1.7;
}
.assembly-input {
	width: 194px;
	padding: 14px 16px;
	border-radius: 18px;
}
.assembly-input b {
	display: block;
	color: #e0f2fe;
	font-size: 14px;
	margin-bottom: 7px;
}
.assembly-input span {
	color: #93c5fd;
	font-size: 12px;
	line-height: 1.5;
}
.input-product { left: 5%; top: 17%; }
.input-channel { right: 5%; top: 17%; }
.input-platform { left: 5%; bottom: 18%; }
.input-hardware { right: 5%; bottom: 18%; }
.assembly-output {
	left: 50%;
	bottom: 8px;
	display: flex;
	gap: 10px;
	padding: 10px;
	border-radius: 999px;
	transform: translateX(-50%);
	background: rgba(3, 15, 28, 0.82);
}
.assembly-output span {
	padding: 7px 11px;
	border-radius: 999px;
	background: rgba(14, 165, 233, 0.13);
	color: #dbeafe;
	font-size: 12px;
	border: 1px solid rgba(56, 189, 248, 0.18);
	white-space: nowrap;
}
.assembly-flow {
	position: absolute;
	z-index: 3;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(125, 211, 252, 0.68), transparent);
	transform-origin: left center;
	pointer-events: none;
}
.assembly-flow::after {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #bae6fd;
	box-shadow: 0 0 18px rgba(125, 211, 252, 0.9);
	transform: translate(-50%, -50%);
	animation: assemblyFlowTravel 3.6s ease-in-out infinite;
}
.flow-product { left: 25%; top: 31%; width: 25%; transform: rotate(13deg); }
.flow-channel { left: 51%; top: 43%; width: 25%; transform: rotate(-15deg); }
.flow-platform { left: 24%; top: 69%; width: 27%; transform: rotate(-17deg); }
.flow-hardware { left: 51%; top: 61%; width: 27%; transform: rotate(18deg); }
.flow-output { left: 50%; top: 64%; width: 23%; transform: rotate(90deg); }
.flow-channel::after { animation-delay: 0.55s; }
.flow-platform::after { animation-delay: 1.1s; }
.flow-hardware::after { animation-delay: 1.65s; }
.flow-output::after { animation-delay: 2.1s; }
.assembly-status-row {
	position: relative;
	z-index: 3;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}
.assembly-status-row div {
	padding: 16px;
	border-radius: 18px;
	background: linear-gradient(145deg, rgba(8, 47, 73, 0.52), rgba(3, 18, 32, 0.82));
	border: 1px solid rgba(56, 189, 248, 0.16);
}
.assembly-status-row strong {
	display: block;
	font-size: 27px;
	line-height: 1;
	color: #e0f2fe;
	margin-bottom: 10px;
	text-shadow: 0 0 14px rgba(56, 189, 248, 0.24);
}
.assembly-status-row span {
	font-size: 13px;
	color: #a8b5c8;
}
@keyframes assemblyCoreGlow {
	0%, 100% { box-shadow: 0 0 30px rgba(14, 165, 233, 0.12), inset 0 1px 0 rgba(255,255,255,0.06); }
	50% { box-shadow: 0 0 48px rgba(14, 165, 233, 0.24), inset 0 1px 0 rgba(255,255,255,0.08); }
}
@keyframes assemblyFlowTravel {
	0% { left: 0%; opacity: 0; transform: translate(-50%, -50%) scale(0.7); }
	18% { opacity: 1; }
	72% { opacity: 1; }
	100% { left: 100%; opacity: 0; transform: translate(-50%, -50%) scale(1.15); }
}
@media (max-width: 1180px) {
	.collab-hero:has(.collab-assembly-panel) .page-hero__inner {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 768px) {
	.collab-assembly-panel {
		min-height: auto;
		padding: 22px;
	}
	.assembly-stage {
		height: auto;
		display: grid;
		gap: 12px;
		padding: 18px 0 0;
		overflow: visible;
	}
	.assembly-gridline,
	.assembly-flow {
		display: none;
	}
	.assembly-core,
	.assembly-input,
	.assembly-output {
		position: relative;
		left: auto;
		right: auto;
		top: auto;
		bottom: auto;
		width: 100%;
		transform: none;
	}
	.assembly-output {
		flex-wrap: wrap;
		justify-content: center;
		border-radius: 20px;
	}
	.assembly-status-row {
		grid-template-columns: 1fr;
	}
}
@media (prefers-reduced-motion: reduce) {
	.assembly-core,
	.assembly-flow::after {
		animation: none;
	}
}

/* --- Cases hero visible blueprint background --- */
.collab-hero:has(.collab-assembly-panel)::before {
	background:
		radial-gradient(circle at 18% 28%, rgba(56, 189, 248, 0.22), transparent 38%),
		radial-gradient(circle at 64% 42%, rgba(14, 165, 233, 0.16), transparent 34%),
		radial-gradient(circle at 88% 18%, rgba(96, 165, 250, 0.13), transparent 28%),
		linear-gradient(118deg, #061324 0%, #081a2d 44%, #050914 100%);
}
.collab-hero:has(.collab-assembly-panel)::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(125, 211, 252, 0.09) 1px, transparent 1px),
		linear-gradient(90deg, rgba(125, 211, 252, 0.075) 1px, transparent 1px),
		linear-gradient(115deg, transparent 0 46%, rgba(56, 189, 248, 0.16) 48%, transparent 51% 100%),
		linear-gradient(68deg, transparent 0 55%, rgba(14, 165, 233, 0.12) 57%, transparent 60% 100%),
		radial-gradient(circle at 20% 62%, rgba(56, 189, 248, 0.34) 0 2px, transparent 4px),
		radial-gradient(circle at 54% 36%, rgba(125, 211, 252, 0.24) 0 1px, transparent 3px),
		radial-gradient(circle at 82% 68%, rgba(96, 165, 250, 0.26) 0 2px, transparent 4px);
	background-size: 118px 118px, 118px 118px, 780px 620px, 680px 540px, 360px 300px, 420px 380px, 520px 440px;
	background-position: 0 0, 0 0, -120px 120px, 220px -40px, 0 0, 80px 40px, 140px 80px;
	opacity: 0.46;
	mask-image: linear-gradient(180deg, rgba(0,0,0,0.78), rgba(0,0,0,0.9) 42%, rgba(0,0,0,0.42) 100%);
	animation: collabBlueprintDrift 22s linear infinite;
}
@keyframes collabBlueprintDrift {
	to {
		background-position: 118px 118px, 118px 118px, 20px 120px, 70px -40px, 120px 60px, 0 120px, 260px 160px;
	}
}
@media (max-width: 768px) {
	.collab-hero:has(.collab-assembly-panel)::after {
		opacity: 0.28;
		background-size: 92px 92px, 92px 92px, 620px 520px, 560px 460px, 300px 260px, 340px 320px, 420px 360px;
	}
}
@media (prefers-reduced-motion: reduce) {
	.collab-hero:has(.collab-assembly-panel)::after {
		animation: none;
	}
}



/* --- Resources page: access console upgrade --- */
.page-hero--resources::before {
	background:
		radial-gradient(circle at 18% 22%, rgba(79, 70, 229, 0.26), transparent 38%),
		radial-gradient(circle at 70% 28%, rgba(14, 165, 233, 0.18), transparent 34%),
		linear-gradient(118deg, #080b18 0%, #11162a 48%, #07101e 100%);
}
.page-hero.resource-hero::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(129, 140, 248, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(56, 189, 248, 0.055) 1px, transparent 1px),
		radial-gradient(circle at 20% 64%, rgba(129, 140, 248, 0.24) 0 2px, transparent 4px),
		radial-gradient(circle at 72% 30%, rgba(56, 189, 248, 0.22) 0 2px, transparent 4px),
		linear-gradient(112deg, transparent 0 52%, rgba(129, 140, 248, 0.12) 54%, transparent 58% 100%);
	background-size: 112px 112px, 112px 112px, 420px 360px, 520px 420px, 760px 620px;
	background-position: 0 0, 0 0, 0 0, 120px 60px, -180px 0;
	opacity: 0.58;
	mask-image: linear-gradient(180deg, rgba(0,0,0,0.72), rgba(0,0,0,0.86) 46%, rgba(0,0,0,0.45));
	animation: resourceBackdropDrift 24s linear infinite;
}
.resource-hero .hero-3d-canvas {
	opacity: 0.34;
	mix-blend-mode: screen;
}
.resource-hero__inner {
	grid-template-columns: minmax(340px, 0.9fr) minmax(460px, 1.1fr);
	gap: clamp(42px, 6vw, 88px);
	max-width: 1480px;
	margin: 0 auto;
}
.resource-hero-lead {
	max-width: 680px;
	color: rgba(226, 232, 240, 0.92) !important;
}
.resource-hero-proof {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 28px;
}
.resource-hero-proof span {
	padding: 8px 13px;
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.48);
	border: 1px solid rgba(167, 139, 250, 0.22);
	color: rgba(199, 210, 254, 0.9);
	font-size: 12px;
	letter-spacing: 0.5px;
}
.resource-console-panel {
	position: relative;
	min-height: 650px;
	padding: clamp(24px, 3vw, 34px);
	border-radius: 34px;
	border: 1px solid rgba(129, 140, 248, 0.32);
	background:
		linear-gradient(155deg, rgba(17, 24, 39, 0.88), rgba(8, 13, 28, 0.92)),
		radial-gradient(circle at 72% 18%, rgba(129, 140, 248, 0.2), transparent 32%);
	box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38), inset 0 0 70px rgba(99, 102, 241, 0.08);
	overflow: hidden;
	backdrop-filter: blur(12px);
}
.resource-console-panel::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(rgba(129, 140, 248, 0.09) 1px, transparent 1px),
		linear-gradient(90deg, rgba(129, 140, 248, 0.07) 1px, transparent 1px);
	background-size: 86px 86px;
	opacity: 0.38;
	pointer-events: none;
}
.resource-console-panel::after {
	content: '';
	position: absolute;
	left: -30%;
	top: 28%;
	width: 160%;
	height: 90px;
	background: linear-gradient(90deg, transparent, rgba(167, 139, 250, 0.18), rgba(56, 189, 248, 0.12), transparent);
	filter: blur(12px);
	transform: rotate(-8deg);
	animation: resourcePanelSweep 7.5s ease-in-out infinite;
	pointer-events: none;
}
.resource-console-topline,
.resource-doc-stack,
.resource-console-grid {
	position: relative;
	z-index: 1;
}
.resource-console-topline {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 28px;
	color: rgba(199, 210, 254, 0.86);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 4px;
}
.resource-console-topline i {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #8b5cf6;
	box-shadow: 0 0 18px rgba(139, 92, 246, 0.85), 0 0 36px rgba(56, 189, 248, 0.3);
}
.resource-doc-stack {
	height: 350px;
	margin: 4px 0 26px;
}
.resource-sheet {
	position: absolute;
	border-radius: 26px;
	border: 1px solid rgba(167, 139, 250, 0.26);
	background: linear-gradient(145deg, rgba(11, 18, 36, 0.96), rgba(15, 23, 42, 0.84));
	box-shadow: 0 24px 60px rgba(2, 6, 23, 0.42), inset 0 0 38px rgba(129, 140, 248, 0.05);
	overflow: hidden;
}
.resource-sheet--back {
	inset: 72px 22px 18px 92px;
	opacity: 0.58;
}
.resource-sheet--mid {
	inset: 38px 52px 48px 54px;
	opacity: 0.74;
}
.resource-sheet--front {
	inset: 0 96px 86px 0;
	padding: 24px;
	opacity: 0.98;
}
.resource-sheet--back span,
.resource-sheet--mid span {
	position: absolute;
	left: 24px;
	top: 22px;
	font-size: 11px;
	letter-spacing: 3px;
	color: rgba(199, 210, 254, 0.42);
}
.resource-sheet-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 24px;
}
.resource-sheet-head span {
	color: #a5b4fc;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 3px;
}
.resource-sheet-head b {
	padding: 5px 10px;
	border-radius: 999px;
	background: rgba(34, 211, 238, 0.12);
	border: 1px solid rgba(34, 211, 238, 0.24);
	color: #a7f3d0;
	font-size: 12px;
}
.resource-code-lines {
	display: grid;
	gap: 14px;
}
.resource-code-lines code {
	display: block;
	padding-left: 18px;
	border-left: 2px solid rgba(129, 140, 248, 0.42);
	color: rgba(226, 232, 240, 0.9);
	font: 600 13px/1.45 Consolas, 'SFMono-Regular', Menlo, monospace;
	text-shadow: 0 0 12px rgba(167, 139, 250, 0.18);
}
.resource-code-lines code:nth-child(2),
.resource-code-lines code:nth-child(4) {
	color: rgba(196, 181, 253, 0.92);
}
.resource-scanline {
	position: absolute;
	left: 20px;
	right: 20px;
	top: 70px;
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(167, 139, 250, 0.85), rgba(34, 211, 238, 0.7), transparent);
	box-shadow: 0 0 18px rgba(167, 139, 250, 0.55);
	animation: resourceScanline 4.8s ease-in-out infinite;
}
.resource-console-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}
.resource-console-grid div {
	padding: 18px;
	border-radius: 18px;
	border: 1px solid rgba(129, 140, 248, 0.18);
	background: rgba(7, 13, 27, 0.64);
}
.resource-console-grid strong,
.resource-console-grid span {
	display: block;
}
.resource-console-grid strong {
	margin-bottom: 8px;
	color: #fff;
	font-size: 15px;
}
.resource-console-grid span {
	color: rgba(191, 219, 254, 0.72);
	font-size: 13px;
}
.resource-grid--matrix {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}
.resource-card--module {
	position: relative;
	min-height: 330px;
	padding: 28px;
	background:
		linear-gradient(145deg, rgba(15, 23, 42, 0.94), rgba(10, 15, 30, 0.94)),
		radial-gradient(circle at 20% 18%, rgba(129, 140, 248, 0.16), transparent 34%);
	overflow: hidden;
}
.resource-card--module::after {
	content: '';
	position: absolute;
	right: -48px;
	top: -48px;
	width: 120px;
	height: 120px;
	border-radius: 36px;
	border: 1px solid rgba(129, 140, 248, 0.16);
	transform: rotate(18deg);
}
.resource-card-head {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 18px;
}
.resource-card-head span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 14px;
	background: rgba(79, 70, 229, 0.22);
	border: 1px solid rgba(129, 140, 248, 0.28);
	color: #93c5fd;
	font-weight: 900;
	letter-spacing: 1px;
}
.resource-card-head h3 {
	margin: 0;
}
.resource-card-list {
	display: grid;
	gap: 10px;
	margin: 20px 0 0;
	padding: 0;
	list-style: none;
}
.resource-card-list li,
.resource-flow-step p {
	color: rgba(203, 213, 225, 0.76);
	line-height: 1.65;
}
.resource-card-list li {
	position: relative;
	padding-left: 18px;
	font-size: 14px;
}
.resource-card-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.72em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #818cf8;
	box-shadow: 0 0 12px rgba(129, 140, 248, 0.75);
}
.resource-path-section {
	position: relative;
	overflow: hidden;
}
.resource-path-section::before {
	content: '';
	position: absolute;
	inset: auto 8% 8% 8%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(129, 140, 248, 0.35), transparent);
}
.resource-flow {
	position: relative;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 14px;
	max-width: 1220px;
	margin: 0 auto;
}
.resource-flow::before {
	content: '';
	position: absolute;
	left: 7%;
	right: 7%;
	top: 34px;
	height: 1px;
	background: linear-gradient(90deg, rgba(129, 140, 248, 0.1), rgba(56, 189, 248, 0.36), rgba(129, 140, 248, 0.1));
}
.resource-flow-step {
	position: relative;
	z-index: 1;
	min-height: 190px;
	padding: 24px;
	border-radius: 22px;
	border: 1px solid rgba(148, 163, 184, 0.16);
	background: rgba(15, 23, 42, 0.72);
	box-shadow: inset 0 0 35px rgba(129, 140, 248, 0.04);
}
.resource-flow-step span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	margin-bottom: 24px;
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.9), rgba(139, 92, 246, 0.9));
	box-shadow: 0 0 22px rgba(59, 130, 246, 0.32);
	color: #fff;
	font-size: 12px;
	font-weight: 900;
}
.resource-flow-step strong {
	display: block;
	margin-bottom: 10px;
	color: #fff;
	font-size: 19px;
}
.resource-grid--updates .resource-card {
	min-height: 220px;
	background: linear-gradient(145deg, rgba(15, 23, 42, 0.9), rgba(11, 18, 36, 0.9));
}
.resource-support-card {
	min-height: 300px;
	background:
		linear-gradient(145deg, rgba(15, 23, 42, 0.9), rgba(7, 15, 28, 0.92)),
		radial-gradient(circle at 12% 14%, rgba(56, 189, 248, 0.12), transparent 30%);
}
.resource-support-card h3 {
	font-size: 1.3rem;
	margin-bottom: 12px;
}
.resource-support-card p {
	color: var(--text-sub);
	line-height: 1.7;
}
@keyframes resourceBackdropDrift {
	to { background-position: 112px 112px, 112px 112px, 130px 80px, 0 160px, 80px 0; }
}
@keyframes resourcePanelSweep {
	0%, 100% { transform: translateX(-16%) rotate(-8deg); opacity: 0.35; }
	50% { transform: translateX(16%) rotate(-8deg); opacity: 0.88; }
}
@keyframes resourceScanline {
	0%, 100% { transform: translateY(0); opacity: 0.18; }
	42%, 58% { opacity: 0.95; }
	50% { transform: translateY(132px); opacity: 0.9; }
}
@media (max-width: 1100px) {
	.resource-hero__inner,
	.resource-grid--matrix,
	.resource-flow {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.resource-flow::before { display: none; }
}
@media (max-width: 768px) {
	.page-hero.resource-hero::after { opacity: 0.34; animation: none; }
	.resource-hero .hero-3d-canvas { opacity: 0.22; }
	.resource-hero__inner,
	.resource-grid--matrix,
	.resource-flow,
	.resource-console-grid {
		grid-template-columns: 1fr;
	}
	.resource-console-panel {
		min-height: auto;
		padding: 22px;
		border-radius: 26px;
	}
	.resource-doc-stack { height: 300px; }
	.resource-sheet--front { inset: 0 22px 78px 0; }
	.resource-sheet--mid { inset: 38px 30px 48px 28px; }
	.resource-sheet--back { inset: 72px 10px 18px 48px; }
	.resource-code-lines code { font-size: 11px; }
	.resource-flow-step { min-height: auto; }
}
@media (prefers-reduced-motion: reduce) {
	.page-hero.resource-hero::after,
	.resource-console-panel::after,
	.resource-scanline {
		animation: none;
	}
}

/* --- About page: company profile upgrade --- */
.about-hero::before {
	background:
		radial-gradient(circle at 22% 20%, rgba(14, 165, 233, 0.22), transparent 38%),
		radial-gradient(circle at 76% 34%, rgba(59, 130, 246, 0.16), transparent 34%),
		linear-gradient(118deg, #07111f 0%, #0d1729 48%, #07101d 100%);
}
.about-hero::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(56, 189, 248, 0.07) 1px, transparent 1px),
		linear-gradient(90deg, rgba(56, 189, 248, 0.055) 1px, transparent 1px),
		radial-gradient(circle at 34% 68%, rgba(34, 211, 238, 0.2) 0 2px, transparent 4px),
		radial-gradient(circle at 82% 26%, rgba(96, 165, 250, 0.22) 0 2px, transparent 4px);
	background-size: 110px 110px, 110px 110px, 420px 360px, 520px 430px;
	opacity: 0.48;
	mask-image: linear-gradient(180deg, rgba(0,0,0,0.72), rgba(0,0,0,0.88) 48%, rgba(0,0,0,0.42));
}
.about-hero .hero-3d-canvas {
	opacity: 0.46;
	mix-blend-mode: screen;
}
.about-hero__inner {
	max-width: 1460px;
	margin: 0 auto;
	grid-template-columns: minmax(340px, 0.9fr) minmax(460px, 1.1fr);
	gap: clamp(44px, 6vw, 86px);
}
.about-hero-metrics {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}
.about-metric-card {
	position: relative;
	padding: 24px;
	border-radius: 24px;
	border: 1px solid rgba(56, 189, 248, 0.18);
	background: linear-gradient(145deg, rgba(8, 19, 36, 0.78), rgba(15, 23, 42, 0.68));
	box-shadow: inset 0 0 38px rgba(56, 189, 248, 0.05);
	overflow: hidden;
}
.about-metric-card::before {
	content: '';
	position: absolute;
	right: -28px;
	top: -28px;
	width: 78px;
	height: 78px;
	border-radius: 24px;
	border: 1px solid rgba(56, 189, 248, 0.18);
	transform: rotate(18deg);
}
.about-metric-card strong,
.about-metric-card span {
	position: relative;
	display: block;
}
.about-metric-card strong {
	margin-bottom: 8px;
	color: #e0f2fe;
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1;
	text-shadow: 0 0 20px rgba(56, 189, 248, 0.22);
}
.about-metric-card span {
	color: rgba(203, 213, 225, 0.78);
}
.company-profile-section {
	position: relative;
	overflow: hidden;
}
.company-profile-section::before {
	content: '';
	position: absolute;
	left: 8%;
	top: 16%;
	width: 360px;
	height: 360px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(14, 165, 233, 0.12), transparent 68%);
	pointer-events: none;
}
.company-profile-wrap {
	position: relative;
	display: grid;
	grid-template-columns: minmax(340px, 1fr) minmax(360px, 0.82fr);
	gap: clamp(28px, 5vw, 72px);
	align-items: stretch;
	max-width: 1240px;
	margin: 0 auto;
}
.section-kicker {
	margin-bottom: 16px;
	color: #38bdf8;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 4px;
}
.company-profile-copy h2 {
	margin-bottom: 22px;
	color: #fff;
	font-size: clamp(2rem, 4vw, 3.4rem);
	line-height: 1.18;
	letter-spacing: 1px;
}
.company-profile-copy p {
	max-width: 760px;
	margin-bottom: 18px;
	color: rgba(203, 213, 225, 0.82);
	font-size: 1.04rem;
	line-height: 1.9;
}
.company-profile-panel {
	position: relative;
	padding: 28px;
	border-radius: 30px;
	border: 1px solid rgba(56, 189, 248, 0.22);
	background:
		linear-gradient(145deg, rgba(9, 17, 32, 0.94), rgba(7, 14, 28, 0.92)),
		radial-gradient(circle at 70% 16%, rgba(14, 165, 233, 0.18), transparent 34%);
	box-shadow: 0 28px 70px rgba(2, 6, 23, 0.38), inset 0 0 50px rgba(14, 165, 233, 0.06);
	overflow: hidden;
}
.company-profile-panel::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		linear-gradient(rgba(56, 189, 248, 0.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(56, 189, 248, 0.05) 1px, transparent 1px);
	background-size: 72px 72px;
	opacity: 0.55;
	pointer-events: none;
}
.company-panel-topline,
.company-core-card,
.company-capability-list {
	position: relative;
	z-index: 1;
}
.company-panel-topline {
	margin-bottom: 22px;
	color: rgba(125, 211, 252, 0.76);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 3px;
}
.company-core-card {
	padding: 28px;
	border-radius: 24px;
	background: rgba(8, 13, 28, 0.72);
	border: 1px solid rgba(56, 189, 248, 0.18);
}
.company-core-card span {
	display: inline-block;
	margin-bottom: 12px;
	color: #38bdf8;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 2px;
}
.company-core-card strong {
	display: block;
	margin-bottom: 12px;
	color: #fff;
	font-size: 1.5rem;
	line-height: 1.35;
}
.company-core-card p {
	color: rgba(203, 213, 225, 0.76);
	line-height: 1.75;
}
.company-capability-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin-top: 16px;
}
.company-capability-list div {
	padding: 16px;
	border-radius: 18px;
	border: 1px solid rgba(148, 163, 184, 0.14);
	background: rgba(15, 23, 42, 0.62);
}
.company-capability-list b,
.company-capability-list span {
	display: block;
}
.company-capability-list b {
	margin-bottom: 7px;
	color: #fff;
}
.company-capability-list span {
	color: rgba(191, 219, 254, 0.72);
	font-size: 13px;
}
.about-value-card {
	background:
		linear-gradient(145deg, rgba(15, 23, 42, 0.92), rgba(8, 16, 31, 0.92)),
		radial-gradient(circle at 16% 14%, rgba(56, 189, 248, 0.12), transparent 30%);
}
.about-value-card p {
	color: var(--text-sub);
	line-height: 1.75;
}
.about-timeline .timeline-item {
	position: relative;
	border-left-color: rgba(56, 189, 248, 0.48);
	background: linear-gradient(145deg, rgba(15, 23, 42, 0.9), rgba(9, 17, 32, 0.92));
}
.about-timeline .timeline-item::before {
	content: '';
	position: absolute;
	left: -7px;
	top: 28px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #38bdf8;
	box-shadow: 0 0 18px rgba(56, 189, 248, 0.75);
}
.about-culture-grid .about-value-card {
	min-height: 230px;
}
@media (max-width: 1100px) {
	.about-hero__inner,
	.company-profile-wrap {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 768px) {
	.about-hero .hero-3d-canvas { opacity: 0.28; }
	.about-hero-metrics,
	.company-capability-list {
		grid-template-columns: 1fr;
	}
	.company-profile-panel {
		padding: 22px;
		border-radius: 24px;
	}
}

/* --- Resources/About lower-page visual refinement --- */
.site-page--resources,
.site-page--about {
	background:
		radial-gradient(circle at 14% 26%, rgba(14, 165, 233, 0.08), transparent 28%),
		radial-gradient(circle at 88% 54%, rgba(99, 102, 241, 0.08), transparent 30%),
		#080d18;
}
.resource-surface-section,
.about-principle-section,
.about-roadmap-section,
.about-culture-section,
.about-contact-section {
	position: relative;
	overflow: hidden;
}
.resource-surface-section > *,
.about-principle-section > *,
.about-roadmap-section > *,
.about-culture-section > *,
.about-contact-section > * {
	position: relative;
	z-index: 1;
}
.resource-docs-section {
	background:
		linear-gradient(180deg, rgba(9, 13, 26, 0.98), rgba(10, 15, 30, 0.96)),
		radial-gradient(circle at 18% 18%, rgba(129, 140, 248, 0.14), transparent 34%);
}
.resource-docs-section::before,
.resource-support-section::before,
.about-culture-section::before,
.about-contact-section::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(148, 163, 184, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(148, 163, 184, 0.03) 1px, transparent 1px);
	background-size: 96px 96px;
	mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}
.resource-docs-section::after {
	content: '';
	position: absolute;
	right: 6%;
	top: 16%;
	width: 360px;
	height: 480px;
	border-radius: 36px;
	border: 1px solid rgba(129, 140, 248, 0.12);
	background:
		linear-gradient(rgba(167, 139, 250, 0.14) 2px, transparent 2px) 42px 90px / 220px 48px no-repeat,
		linear-gradient(rgba(56, 189, 248, 0.08), rgba(99, 102, 241, 0.04));
	transform: rotate(9deg);
	opacity: 0.34;
	pointer-events: none;
}
.resource-card--module {
	display: flex;
	flex-direction: column;
	border-color: rgba(129, 140, 248, 0.22);
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 24px 70px rgba(2, 6, 23, 0.26);
}
.resource-card--module::before,
.resource-version-card::before,
.resource-support-card::before,
.about-value-card::before,
.contact-card::before {
	content: '';
	position: absolute;
	left: 24px;
	right: 24px;
	top: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(125, 211, 252, 0.58), transparent);
	opacity: 0.65;
}
.resource-card--module .resource-meta {
	margin-top: auto;
	padding-top: 18px;
}
.resource-card-icon {
	position: relative;
	width: 42px;
	height: 42px;
	margin-left: auto;
	border-radius: 15px;
	border: 1px solid rgba(167, 139, 250, 0.28);
	background:
		radial-gradient(circle at 30% 24%, rgba(56, 189, 248, 0.24), transparent 52%),
		rgba(15, 23, 42, 0.78);
	box-shadow: inset 0 0 24px rgba(129, 140, 248, 0.08);
}
.resource-card-icon::before,
.resource-card-icon::after {
	content: '';
	position: absolute;
	inset: 12px;
	border: 2px solid rgba(191, 219, 254, 0.76);
	border-radius: 4px;
}
.resource-card-icon--link::before {
	inset: 13px 10px 17px;
	border-width: 0 0 2px;
	transform: rotate(-18deg);
}
.resource-card-icon--link::after {
	inset: 17px 10px 13px;
	border-width: 2px 0 0;
	transform: rotate(-18deg);
}
.resource-card-icon--check::before {
	inset: 11px 15px 16px 10px;
	border-width: 0 0 3px 3px;
	transform: rotate(-45deg);
	border-radius: 0;
}
.resource-card-icon--check::after {
	inset: 10px;
	border-color: rgba(125, 211, 252, 0.22);
	border-radius: 50%;
}
.resource-card-icon--ops::before {
	inset: 12px;
	border-radius: 50%;
}
.resource-card-icon--ops::after {
	inset: 19px 8px;
	border-width: 2px 0 0;
}
.resource-path-section {
	background:
		radial-gradient(circle at 50% 0%, rgba(56, 189, 248, 0.11), transparent 42%),
		linear-gradient(180deg, #0c1323, #080d18);
}
.resource-version-section {
	background:
		radial-gradient(circle at 18% 48%, rgba(99, 102, 241, 0.18), transparent 34%),
		radial-gradient(circle at 76% 20%, rgba(56, 189, 248, 0.1), transparent 34%),
		linear-gradient(180deg, #080d18, #0b1020);
}
.resource-version-layout {
	display: grid;
	grid-template-columns: minmax(340px, 0.82fr) minmax(520px, 1.18fr);
	gap: clamp(28px, 5vw, 70px);
	align-items: center;
	max-width: 1260px;
	margin: 0 auto;
}
.resource-version-visual {
	position: relative;
	min-height: 420px;
	border-radius: 34px;
	border: 1px solid rgba(129, 140, 248, 0.22);
	background:
		linear-gradient(rgba(129, 140, 248, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(56, 189, 248, 0.05) 1px, transparent 1px),
		radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.18), transparent 58%),
		rgba(8, 13, 28, 0.74);
	background-size: 72px 72px, 72px 72px, auto, auto;
	overflow: hidden;
	box-shadow: inset 0 0 60px rgba(99, 102, 241, 0.08);
}
.version-orbit,
.version-core,
.version-node {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.version-orbit {
	border: 1px dashed rgba(125, 211, 252, 0.28);
	border-radius: 50%;
	animation: resourceOrbitSpin 24s linear infinite;
}
.version-orbit--outer { width: 300px; height: 300px; }
.version-orbit--mid {
	width: 210px;
	height: 210px;
	animation-duration: 18s;
	animation-direction: reverse;
}
.version-core {
	width: 164px;
	height: 96px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 24px;
	border: 1px solid rgba(56, 189, 248, 0.32);
	background: rgba(6, 12, 25, 0.82);
	color: rgba(226, 232, 240, 0.9);
	font-weight: 800;
	letter-spacing: 1px;
	box-shadow: 0 0 34px rgba(56, 189, 248, 0.12);
}
.version-node {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	border-radius: 18px;
	border: 1px solid rgba(167, 139, 250, 0.32);
	background: rgba(30, 41, 59, 0.82);
	color: #c4b5fd;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 1px;
	box-shadow: 0 0 24px rgba(129, 140, 248, 0.18);
	animation: resourceNodePulse 4s ease-in-out infinite;
}
.version-node--a { transform: translate(-50%, -50%) translate(-150px, -96px); }
.version-node--b { transform: translate(-50%, -50%) translate(146px, -12px); animation-delay: 0.8s; }
.version-node--c { transform: translate(-50%, -50%) translate(-74px, 136px); animation-delay: 1.6s; }
.resource-version-list {
	display: grid;
	gap: 16px;
}
.resource-version-card {
	position: relative;
	display: grid;
	grid-template-columns: 58px 1fr;
	column-gap: 18px;
	align-items: start;
	min-height: 150px;
	padding: 24px;
	background:
		linear-gradient(145deg, rgba(15, 23, 42, 0.9), rgba(8, 14, 30, 0.92)),
		radial-gradient(circle at 12% 20%, rgba(99, 102, 241, 0.16), transparent 36%);
	overflow: hidden;
}
.resource-version-card > span {
	grid-row: span 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 16px;
	background: rgba(79, 70, 229, 0.22);
	border: 1px solid rgba(129, 140, 248, 0.34);
	color: #a5b4fc;
	font-weight: 900;
}
.resource-support-section {
	background:
		radial-gradient(circle at 82% 20%, rgba(14, 165, 233, 0.12), transparent 32%),
		linear-gradient(180deg, #0b1020, #080d18);
}
.resource-support-grid {
	max-width: 1280px;
	margin: 0 auto;
	align-items: stretch;
}
.resource-support-card {
	position: relative;
	border-color: rgba(56, 189, 248, 0.18);
}
.site-page--resources .cta-banner,
.site-page--about .cta-banner {
	background:
		linear-gradient(115deg, rgba(37, 99, 235, 0.92), rgba(124, 58, 237, 0.88)),
		radial-gradient(circle at 20% 20%, rgba(255,255,255,0.18), transparent 34%);
}
.about-principle-section {
	background:
		radial-gradient(circle at 18% 12%, rgba(14, 165, 233, 0.14), transparent 32%),
		linear-gradient(180deg, #080d18, #0b1322);
}
.about-mission-grid {
	max-width: 1120px;
	margin: 0 auto;
}
.about-value-card {
	position: relative;
	min-height: 310px;
	border-color: rgba(56, 189, 248, 0.2);
	overflow: hidden;
}
.about-value-card::after {
	content: '';
	position: absolute;
	right: -40px;
	bottom: -40px;
	width: 150px;
	height: 150px;
	border-radius: 44px;
	border: 1px solid rgba(56, 189, 248, 0.12);
	transform: rotate(20deg);
	pointer-events: none;
}
.about-roadmap-section {
	background:
		radial-gradient(circle at 50% 8%, rgba(56, 189, 248, 0.1), transparent 38%),
		linear-gradient(180deg, #0c1424, #080d18);
}
.about-timeline {
	position: relative;
	max-width: 1220px;
	margin: 0 auto;
}
.about-timeline::before {
	content: '';
	position: absolute;
	left: 5%;
	right: 5%;
	top: 50%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.42), transparent);
}
.about-timeline .timeline-item {
	min-height: 190px;
	box-shadow: inset 0 0 34px rgba(56, 189, 248, 0.04);
}
.about-culture-section {
	background:
		linear-gradient(135deg, rgba(9, 13, 26, 0.98), rgba(9, 17, 32, 0.96)),
		radial-gradient(circle at 84% 24%, rgba(14, 165, 233, 0.14), transparent 34%);
}
.about-culture-grid {
	max-width: 1280px;
	margin: 0 auto;
	gap: 28px;
}
.about-culture-grid .about-value-card {
	min-height: 280px;
}
.culture-label {
	display: inline-flex;
	margin-bottom: 28px;
	color: #38bdf8;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 2.8px;
}
.about-contact-section {
	background:
		radial-gradient(circle at 20% 42%, rgba(59, 130, 246, 0.12), transparent 36%),
		linear-gradient(180deg, #080d18, #0b1020);
}
.about-contact-section .contact-grid {
	max-width: 1280px;
	margin: 0 auto;
}
.contact-card {
	position: relative;
	min-height: 230px;
	padding: 34px;
	border-color: rgba(125, 211, 252, 0.18);
	background:
		linear-gradient(145deg, rgba(15, 23, 42, 0.9), rgba(8, 14, 28, 0.94)),
		radial-gradient(circle at 18% 18%, rgba(56, 189, 248, 0.14), transparent 34%);
	overflow: hidden;
}
.contact-card::after {
	content: '';
	position: absolute;
	right: 26px;
	top: 30px;
	width: 42px;
	height: 42px;
	border-radius: 14px;
	border: 1px solid rgba(56, 189, 248, 0.2);
	background:
		linear-gradient(90deg, transparent 46%, rgba(125, 211, 252, 0.38) 46% 54%, transparent 54%),
		linear-gradient(transparent 46%, rgba(125, 211, 252, 0.38) 46% 54%, transparent 54%);
	opacity: 0.7;
}
@keyframes resourceOrbitSpin {
	to { rotate: 360deg; }
}
@keyframes resourceNodePulse {
	0%, 100% { opacity: 0.72; filter: saturate(1); }
	50% { opacity: 1; filter: saturate(1.35); box-shadow: 0 0 34px rgba(129, 140, 248, 0.32); }
}
@media (max-width: 1100px) {
	.resource-version-layout {
		grid-template-columns: 1fr;
	}
	.resource-version-visual {
		min-height: 360px;
	}
}
@media (max-width: 768px) {
	.resource-docs-section::after,
	.about-timeline::before {
		display: none;
	}
	.resource-version-card {
		grid-template-columns: 1fr;
	}
	.resource-version-card > span {
		margin-bottom: 16px;
	}
	.about-value-card,
	.contact-card {
		min-height: auto;
	}
	.wechat-float {
		right: 16px;
		bottom: 86px;
	}
	.wechat-float__panel {
		right: 0;
		bottom: 66px;
	}
	.wechat-float__panel::after {
		right: 21px;
		bottom: -7px;
		border-top: 0;
		border-left: 0;
		border-right: 1px solid rgba(125, 211, 252, 0.22);
		border-bottom: 1px solid rgba(125, 211, 252, 0.22);
	}
}
@media (prefers-reduced-motion: reduce) {
	.version-orbit,
	.version-node {
		animation: none;
	}
}
