/* =========================================================
   v2.9.8 · 数字员工独立立体区块 + 与「麻烦」Hero 分离
   ========================================================= */

/* —— 与下方「麻烦」Hero 同宽居中（max 1120 + auto 边距） —— */
.lx-de3d,
body.lx-cyber-home .lx-de3d {
	position: relative;
	z-index: 3;
	max-width: 1120px;
	width: 100%;
	margin: 10px auto 18px !important;
	padding: 0 16px 4px !important;
	box-sizing: border-box;
}
.lx-cx-hero--trouble {
	margin-top: 6px !important;
}
body.lx-cyber-home .lx-cx-hero__copy {
	padding-top: clamp(28px, 4.5vw, 52px) !important;
}

/* —— 数字员工舞台：左文案 + 右 3D，互不遮挡、融为一体 —— */
.lx-de3d__stage {
	position: relative;
	display: flex;
	align-items: center;
	min-height: clamp(380px, 50vh, 540px);
	border-radius: 22px;
	overflow: hidden;
	border: 1px solid rgba(244, 114, 182, 0.4);
	background:
		linear-gradient(145deg, rgba(244, 114, 182, 0.1) 0%, transparent 42%),
		linear-gradient(320deg, rgba(56, 189, 248, 0.1) 0%, transparent 50%),
		linear-gradient(180deg, rgba(12, 8, 24, 0.94), rgba(5, 6, 14, 0.96));
	box-shadow:
		0 0 0 1px rgba(0, 255, 240, 0.08) inset,
		0 28px 70px rgba(0, 0, 0, 0.55),
		0 0 48px rgba(244, 114, 182, 0.12);
	perspective: 1400px;
	transform-style: preserve-3d;
}
/* 左侧仅做极轻可读渐隐，不盖死动画 */
.lx-de3d__stage::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: min(52%, 520px);
	z-index: 4;
	pointer-events: none;
	background: linear-gradient(
		90deg,
		rgba(5, 6, 14, 0.42) 0%,
		rgba(5, 6, 14, 0.18) 55%,
		transparent 100%
	);
}
.lx-de3d__stage::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 2px;
	z-index: 5;
	background: linear-gradient(90deg, transparent, #f472b6, #38bdf8, #a78bfa, transparent);
	background-size: 200% 100%;
	animation: lx-de3d-line 4s linear infinite;
	pointer-events: none;
}
@keyframes lx-de3d-line {
	0% { background-position: 0% 0; }
	100% { background-position: 200% 0; }
}

/* —— 3D 场景层：偏右展示，不被文案挡住 —— */
.lx-de3d__scene {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
	perspective: 1200px;
}
/* 焦点移到右侧 55% 区域 */
.lx-de3d__scene .lx-de3d__world {
	left: 12%;
	width: 110%;
}
.lx-de3d__sky {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 70% 50% at 75% 25%, rgba(244, 114, 182, 0.28), transparent 55%),
		radial-gradient(ellipse 55% 40% at 20% 40%, rgba(56, 189, 248, 0.16), transparent 50%),
		linear-gradient(180deg, #0c0618 0%, #0a1020 50%, #05060d 100%);
}
.lx-de3d__neb {
	position: absolute;
	border-radius: 50%;
	filter: blur(28px);
	opacity: 0.55;
	animation: lx-de3d-neb 16s ease-in-out infinite;
}
.lx-de3d__neb.n1 {
	width: 220px;
	height: 160px;
	right: 8%;
	top: 12%;
	background: rgba(244, 114, 182, 0.35);
}
.lx-de3d__neb.n2 {
	width: 180px;
	height: 140px;
	left: 10%;
	bottom: 28%;
	background: rgba(56, 189, 248, 0.28);
	animation-delay: -6s;
}
@keyframes lx-de3d-neb {
	0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.45; }
	50% { transform: translate(-12px, 10px) scale(1.08); opacity: 0.7; }
}
.lx-de3d__starfield {
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(1.5px 1.5px at 10% 20%, rgba(255,255,255,.8), transparent),
		radial-gradient(1.5px 1.5px at 30% 60%, rgba(56,189,248,.9), transparent),
		radial-gradient(1px 1px at 55% 30%, rgba(255,255,255,.7), transparent),
		radial-gradient(1.5px 1.5px at 70% 75%, rgba(244,114,182,.85), transparent),
		radial-gradient(1px 1px at 85% 40%, rgba(255,255,255,.6), transparent),
		radial-gradient(1.5px 1.5px at 40% 15%, rgba(167,139,250,.8), transparent);
	animation: lx-de3d-twinkle 5s ease-in-out infinite;
}
@keyframes lx-de3d-twinkle {
	0%, 100% { opacity: 0.55; }
	50% { opacity: 1; }
}

/* 世界：透视容器（整体略偏右，主动画在文案右侧展开） */
.lx-de3d__world {
	position: absolute;
	inset: 0;
	transform-style: preserve-3d;
	transform: rotateX(52deg) translate3d(8%, 0, 0);
	transform-origin: 62% 68%;
}

/* 地面网格 + 环 */
.lx-de3d__floor {
	position: absolute;
	left: 50%;
	top: 42%;
	width: 140%;
	height: 140%;
	margin-left: -70%;
	transform-style: preserve-3d;
}
.lx-de3d__floor .grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(244, 114, 182, 0.22) 1px, transparent 1px),
		linear-gradient(90deg, rgba(56, 189, 248, 0.18) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: radial-gradient(ellipse 55% 45% at 50% 35%, #000 10%, transparent 70%);
	-webkit-mask-image: radial-gradient(ellipse 55% 45% at 50% 35%, #000 10%, transparent 70%);
	animation: lx-de3d-grid 3s linear infinite;
}
@keyframes lx-de3d-grid {
	0% { background-position: 0 0, 0 0; }
	100% { background-position: 0 48px, 0 0; }
}
.lx-de3d__floor .ring {
	position: absolute;
	left: 50%;
	top: 28%;
	border-radius: 50%;
	border: 1px solid rgba(244, 114, 182, 0.35);
	transform: translate(-50%, -50%) rotateX(0deg);
	box-shadow: 0 0 20px rgba(244, 114, 182, 0.2);
}
.lx-de3d__floor .ring-a {
	width: min(42vw, 280px);
	height: min(42vw, 280px);
	animation: lx-de3d-spin 18s linear infinite;
}
.lx-de3d__floor .ring-b {
	width: min(58vw, 400px);
	height: min(58vw, 400px);
	border-color: rgba(56, 189, 248, 0.28);
	border-style: dashed;
	animation: lx-de3d-spin 28s linear infinite reverse;
}
.lx-de3d__floor .beam {
	position: absolute;
	left: 50%;
	top: 0;
	width: 2px;
	height: 45%;
	margin-left: -1px;
	background: linear-gradient(180deg, rgba(244, 114, 182, 0.7), transparent);
	box-shadow: 0 0 18px rgba(244, 114, 182, 0.5);
	animation: lx-de3d-beam 2.4s ease-in-out infinite;
}
@keyframes lx-de3d-spin {
	to { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes lx-de3d-beam {
	0%, 100% { opacity: 0.35; height: 38%; }
	50% { opacity: 0.95; height: 52%; }
}

/* 中央全息工位（相对「地面」再立起来） */
.lx-de3d__pod {
	position: absolute;
	left: 50%;
	top: 18%;
	width: 120px;
	height: 160px;
	margin-left: -60px;
	transform: rotateX(-52deg) translateZ(40px);
	transform-style: preserve-3d;
	z-index: 3;
}
.lx-de3d__pod .pod-base {
	position: absolute;
	left: 50%;
	bottom: 8px;
	width: 90px;
	height: 18px;
	margin-left: -45px;
	border-radius: 50%;
	background: radial-gradient(ellipse, rgba(244, 114, 182, 0.45), transparent 70%);
	box-shadow: 0 0 30px rgba(244, 114, 182, 0.4);
	animation: lx-de3d-pulse 2.2s ease-in-out infinite;
}
.lx-de3d__pod .pod-column {
	position: absolute;
	left: 50%;
	bottom: 22px;
	width: 6px;
	height: 56px;
	margin-left: -3px;
	background: linear-gradient(180deg, #f472b6, #38bdf8);
	box-shadow: 0 0 14px rgba(56, 189, 248, 0.6);
	border-radius: 3px;
}
.lx-de3d__pod .pod-holo {
	position: absolute;
	left: 50%;
	bottom: 70px;
	width: 72px;
	height: 72px;
	margin-left: -36px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	background:
		linear-gradient(145deg, rgba(244, 114, 182, 0.35), rgba(56, 189, 248, 0.25));
	border: 1px solid rgba(255, 255, 255, 0.25);
	box-shadow:
		0 0 28px rgba(244, 114, 182, 0.4),
		0 12px 32px rgba(0, 0, 0, 0.4);
	overflow: hidden;
	animation: lx-de3d-float 4s ease-in-out infinite;
	transform-style: preserve-3d;
}
.lx-de3d__pod .holo-ic {
	font-size: 34px;
	filter: drop-shadow(0 0 10px rgba(244, 114, 182, 0.7));
	animation: lx-de3d-bob 3s ease-in-out infinite;
}
.lx-de3d__pod .holo-scan {
	position: absolute;
	left: 0;
	right: 0;
	height: 30%;
	background: linear-gradient(180deg, transparent, rgba(56, 189, 248, 0.35), transparent);
	animation: lx-de3d-scan 2.8s linear infinite;
}
.lx-de3d__pod .pod-ring {
	position: absolute;
	left: 50%;
	bottom: 78px;
	border-radius: 50%;
	border: 1px solid rgba(56, 189, 248, 0.4);
	transform: translateX(-50%);
	pointer-events: none;
}
.lx-de3d__pod .pod-ring.r1 {
	width: 88px;
	height: 88px;
	margin-left: 0;
	left: 50%;
	transform: translateX(-50%) rotateX(70deg);
	animation: lx-de3d-ring 6s linear infinite;
}
.lx-de3d__pod .pod-ring.r2 {
	width: 110px;
	height: 110px;
	bottom: 68px;
	border-color: rgba(244, 114, 182, 0.35);
	transform: translateX(-50%) rotateX(70deg);
	animation: lx-de3d-ring 9s linear infinite reverse;
}
.lx-de3d__pod .pod-ring.r3 {
	width: 132px;
	height: 132px;
	bottom: 58px;
	border-style: dashed;
	border-color: rgba(167, 139, 250, 0.3);
	transform: translateX(-50%) rotateX(70deg);
	animation: lx-de3d-ring 12s linear infinite;
}
@keyframes lx-de3d-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}
@keyframes lx-de3d-bob {
	0%, 100% { transform: translateY(0) scale(1); }
	50% { transform: translateY(-4px) scale(1.05); }
}
@keyframes lx-de3d-scan {
	0% { top: -30%; }
	100% { top: 100%; }
}
@keyframes lx-de3d-ring {
	to { transform: translateX(-50%) rotateX(70deg) rotateZ(360deg); }
}
@keyframes lx-de3d-pulse {
	0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
	50% { opacity: 1; transform: translateX(-50%) scale(1.12); }
}

/* 环绕职业节点（立体轨道） */
.lx-de3d__orbit {
	position: absolute;
	left: 50%;
	top: 22%;
	width: min(70vw, 420px);
	height: min(36vw, 220px);
	margin-left: calc(min(70vw, 420px) / -2);
	transform: rotateX(-52deg) translateZ(20px);
	transform-style: preserve-3d;
	animation: lx-de3d-orbit 24s linear infinite;
	z-index: 2;
}
.lx-de3d__orbit .node {
	position: absolute;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	background: rgba(8, 12, 28, 0.85);
	border: 1px solid rgba(56, 189, 248, 0.45);
	box-shadow: 0 0 16px rgba(56, 189, 248, 0.25), 0 8px 18px rgba(0, 0, 0, 0.35);
	transform-style: preserve-3d;
}
.lx-de3d__orbit .node::after {
	content: attr(data-lab);
	position: absolute;
	bottom: -16px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 9px;
	letter-spacing: 0.06em;
	color: rgba(200, 230, 255, 0.75);
	white-space: nowrap;
	font-family: "Noto Sans SC", system-ui, sans-serif;
}
.lx-de3d__orbit .n1 { left: 0%; top: 40%; }
.lx-de3d__orbit .n2 { left: 18%; top: 5%; border-color: rgba(244, 114, 182, 0.5); }
.lx-de3d__orbit .n3 { left: 42%; top: -8%; }
.lx-de3d__orbit .n4 { left: 68%; top: 5%; border-color: rgba(52, 211, 153, 0.5); }
.lx-de3d__orbit .n5 { left: 86%; top: 40%; }
.lx-de3d__orbit .n6 { left: 42%; top: 78%; border-color: rgba(251, 191, 36, 0.5); }
@keyframes lx-de3d-orbit {
	0% { transform: rotateX(-52deg) rotateZ(0deg) translateZ(20px); }
	100% { transform: rotateX(-52deg) rotateZ(360deg) translateZ(20px); }
}
/* 节点自身反向旋转，图标保持可读 */
.lx-de3d__orbit .node {
	animation: lx-de3d-node-counter 24s linear infinite;
}
@keyframes lx-de3d-node-counter {
	0% { transform: rotateZ(0deg) rotateX(52deg); }
	100% { transform: rotateZ(-360deg) rotateX(52deg); }
}

/* 浮动任务卡片 */
.lx-de3d__cards {
	position: absolute;
	inset: 0;
	transform: rotateX(-52deg);
	transform-style: preserve-3d;
	z-index: 4;
	pointer-events: none;
}
.lx-de3d__cards .card {
	position: absolute;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 600;
	color: #e8f7ff;
	background: rgba(8, 12, 28, 0.82);
	border: 1px solid rgba(56, 189, 248, 0.35);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), 0 0 14px rgba(56, 189, 248, 0.15);
	backdrop-filter: blur(6px);
	white-space: nowrap;
}
.lx-de3d__cards .card i {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #34d399;
	box-shadow: 0 0 8px #34d399;
}
.lx-de3d__cards .c1 {
	left: 8%;
	top: 28%;
	animation: lx-de3d-card 5.5s ease-in-out infinite;
}
.lx-de3d__cards .c2 {
	right: 10%;
	top: 36%;
	border-color: rgba(244, 114, 182, 0.4);
	animation: lx-de3d-card 6.5s ease-in-out infinite 0.8s;
}
.lx-de3d__cards .c2 i { background: #f472b6; box-shadow: 0 0 8px #f472b6; }
.lx-de3d__cards .c3 {
	left: 14%;
	top: 58%;
	border-color: rgba(167, 139, 250, 0.4);
	animation: lx-de3d-card 7s ease-in-out infinite 1.2s;
}
.lx-de3d__cards .c3 i { background: #a78bfa; box-shadow: 0 0 8px #a78bfa; }
@keyframes lx-de3d-card {
	0%, 100% { transform: translateY(0) translateZ(10px); opacity: 0.85; }
	50% { transform: translateY(-12px) translateZ(24px); opacity: 1; }
}

/* 数据粒子 */
.lx-de3d__bits {
	position: absolute;
	inset: 0;
	z-index: 1;
	transform: rotateX(-52deg);
}
.lx-de3d__bits span {
	position: absolute;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #38bdf8;
	box-shadow: 0 0 8px #38bdf8;
	animation: lx-de3d-bit 4s linear infinite;
	opacity: 0;
}
.lx-de3d__bits span:nth-child(1) { left: 20%; animation-delay: 0s; }
.lx-de3d__bits span:nth-child(2) { left: 35%; animation-delay: 0.5s; background: #f472b6; box-shadow: 0 0 8px #f472b6; }
.lx-de3d__bits span:nth-child(3) { left: 50%; animation-delay: 1s; }
.lx-de3d__bits span:nth-child(4) { left: 65%; animation-delay: 1.5s; background: #a78bfa; box-shadow: 0 0 8px #a78bfa; }
.lx-de3d__bits span:nth-child(5) { left: 28%; animation-delay: 2s; }
.lx-de3d__bits span:nth-child(6) { left: 72%; animation-delay: 2.4s; background: #f472b6; box-shadow: 0 0 8px #f472b6; }
.lx-de3d__bits span:nth-child(7) { left: 45%; animation-delay: 2.8s; }
.lx-de3d__bits span:nth-child(8) { left: 58%; animation-delay: 3.2s; background: #34d399; box-shadow: 0 0 8px #34d399; }
@keyframes lx-de3d-bit {
	0% { top: 70%; opacity: 0; transform: scale(0.5); }
	15% { opacity: 1; }
	100% { top: 5%; opacity: 0; transform: scale(1.2); }
}

/* HUD */
.lx-de3d__hud {
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 12px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 14px;
	z-index: 6;
	transform: none !important;
	font-family: Orbitron, monospace;
	font-size: 10px;
	letter-spacing: 0.12em;
	color: rgba(186, 230, 253, 0.8);
	pointer-events: none;
}
.lx-de3d__hud .live {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #f9a8d4;
}
.lx-de3d__hud .live i {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #f472b6;
	box-shadow: 0 0 8px #f472b6;
	animation: lx-cx-pulse-core 1.2s ease-in-out infinite;
}

/* —— 文案层：左侧全息玻璃，不盖住右侧动画 —— */
.lx-de3d__copy {
	position: relative;
	z-index: 8;
	flex: 0 1 auto;
	width: min(420px, 44%);
	max-width: 440px;
	margin: clamp(20px, 3vw, 36px) 0 clamp(20px, 3vw, 36px) clamp(16px, 2.5vw, 32px);
	padding: clamp(18px, 2.4vw, 28px) clamp(16px, 2vw, 24px);
	text-align: left;
	/* 半透明全息板：动画能透出来 */
	background:
		linear-gradient(145deg, rgba(244, 114, 182, 0.08) 0%, transparent 55%),
		linear-gradient(180deg, rgba(8, 12, 28, 0.38), rgba(8, 12, 28, 0.22));
	border: 1px solid rgba(244, 114, 182, 0.32);
	border-radius: 16px;
	box-shadow:
		0 0 0 1px rgba(56, 189, 248, 0.08) inset,
		0 12px 40px rgba(0, 0, 0, 0.25),
		0 0 28px rgba(244, 114, 182, 0.1);
	backdrop-filter: blur(7px) saturate(1.15);
	-webkit-backdrop-filter: blur(7px) saturate(1.15);
	/* 轻微扫描光，与 3D 同频感 */
	overflow: hidden;
}
.lx-de3d__copy::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		105deg,
		transparent 40%,
		rgba(255, 255, 255, 0.06) 48%,
		transparent 56%
	);
	background-size: 220% 100%;
	animation: lx-de3d-copy-shine 6s linear infinite;
	pointer-events: none;
	z-index: 0;
}
.lx-de3d__copy::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 2px;
	background: linear-gradient(180deg, transparent, #f472b6, #38bdf8, transparent);
	box-shadow: 0 0 12px rgba(244, 114, 182, 0.5);
	pointer-events: none;
}
@keyframes lx-de3d-copy-shine {
	0% { background-position: 120% 0; }
	100% { background-position: -120% 0; }
}
.lx-de3d__copy > * {
	position: relative;
	z-index: 1;
}
.lx-de3d__badge {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	margin: 0 0 12px;
	padding: 5px 12px;
	border-radius: 999px;
	font-family: Orbitron, monospace;
	font-size: 10px;
	letter-spacing: 0.16em;
	color: #f9a8d4;
	background: rgba(244, 114, 182, 0.12);
	border: 1px solid rgba(244, 114, 182, 0.35);
	box-shadow: 0 0 16px rgba(244, 114, 182, 0.12);
}
.lx-de3d__badge .dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #34d399;
	box-shadow: 0 0 10px #34d399;
	animation: lx-cx-pulse-core 1.4s ease-in-out infinite;
}
.lx-de3d__title {
	margin: 0 0 12px;
	font-family: Orbitron, "Noto Sans SC", sans-serif;
	font-size: clamp(1.35rem, 3.2vw, 1.95rem);
	font-weight: 800;
	letter-spacing: 0.04em;
	line-height: 1.25;
	color: #fff;
	text-shadow:
		0 0 22px rgba(244, 114, 182, 0.45),
		0 2px 18px rgba(0, 0, 0, 0.55);
}
.lx-de3d__title em {
	font-style: normal;
	background: linear-gradient(90deg, #f472b6, #38bdf8, #a78bfa);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.25));
}
.lx-de3d__desc {
	margin: 0 0 14px;
	font-size: 13.5px;
	line-height: 1.75;
	color: rgba(200, 220, 240, 0.9);
	max-width: 34em;
	text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}
.lx-de3d__chips {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 8px;
	margin: 0 0 16px;
}
.lx-de3d__chip {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 5px 11px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 600;
	color: #e0f2fe;
	/* 半透标签：背后动画若透出仍可见边缘光 */
	background: rgba(8, 14, 28, 0.35);
	border: 1px solid rgba(244, 114, 182, 0.3);
	box-shadow: 0 0 12px rgba(56, 189, 248, 0.08);
	backdrop-filter: blur(4px);
	transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.lx-de3d__chip:hover {
	transform: translateY(-2px);
	border-color: rgba(56, 189, 248, 0.55);
	box-shadow: 0 0 16px rgba(56, 189, 248, 0.25);
}
.lx-de3d__chip .ic { font-size: 13px; }
.lx-de3d__cta {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 10px;
	margin-bottom: 10px;
}
.lx-de3d__btn {
	box-shadow:
		0 0 28px rgba(244, 114, 182, 0.4),
		0 0 18px rgba(56, 189, 248, 0.25) !important;
}
.lx-de3d__note {
	margin: 0;
	font-size: 11.5px;
	color: rgba(180, 200, 220, 0.88);
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

/* 右侧留白：保证 3D 主视觉不被挤压 */
.lx-de3d__stage > .lx-de3d__copy {
	/* 右侧自然空出给 scene */
}

/* 麻烦区：略区分边框色（青），与粉色数字员工区对比 */
.lx-cx-hero--trouble .lx-cx-hero__stage {
	border-color: rgba(0, 255, 240, 0.32) !important;
}

/* 平板：仍左右分栏，文案略窄 */
@media (max-width: 900px) {
	.lx-de3d__copy {
		width: min(380px, 48%);
		max-width: 400px;
	}
	.lx-de3d__world {
		transform: rotateX(52deg) translate3d(4%, 0, 0);
	}
}
/* 移动端：文案在上（玻璃条），动画在下完整露出 */
@media (max-width: 780px) {
	.lx-de3d__stage {
		min-height: 520px;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-end;
	}
	.lx-de3d__stage::after {
		width: 100%;
		height: 48%;
		bottom: 0;
		top: auto;
		background: linear-gradient(
			0deg,
			rgba(5, 6, 14, 0.55) 0%,
			rgba(5, 6, 14, 0.2) 55%,
			transparent 100%
		);
	}
	.lx-de3d__world {
		transform: rotateX(52deg) translate3d(0, -6%, 0);
		transform-origin: 50% 55%;
	}
	.lx-de3d__orbit { animation-duration: 36s; opacity: 0.9; }
	.lx-de3d__orbit .node { animation-duration: 36s; width: 36px; height: 36px; font-size: 16px; }
	.lx-de3d__cards .c3 { display: none; }
	.lx-de3d__copy {
		width: auto;
		max-width: none;
		margin: auto 12px 14px;
		padding: 14px 14px 12px;
	}
	.lx-de3d__chips { justify-content: flex-start; }
}
@media (max-width: 640px) {
	.lx-de3d,
	body.lx-cyber-home .lx-de3d {
		margin-bottom: 12px !important;
		padding: 0 10px 2px !important;
	}
	.lx-de3d__orbit .node::after { display: none; }
	.lx-de3d__pod { transform: rotateX(-52deg) translateZ(20px) scale(0.85); }
	.lx-de3d__title { font-size: 1.25rem; }
}
@media (prefers-reduced-motion: reduce) {
	.lx-de3d__orbit,
	.lx-de3d__orbit .node,
	.lx-de3d__pod .pod-holo,
	.lx-de3d__pod .pod-ring,
	.lx-de3d__floor .ring,
	.lx-de3d__floor .grid,
	.lx-de3d__bits span,
	.lx-de3d__cards .card,
	.lx-de3d__neb,
	.lx-de3d__starfield {
		animation: none !important;
	}
}

/* 隐藏旧的嵌套卡片样式影响（若缓存残留） */
.lx-cx-hero .lx-cx-de-claim { display: none !important; }
