/* ========================================
   Hero Banner 横向滚动重设计 - iOS风格
   左右自由滚动的现代化设计
   ======================================== */

/* === 重置Hero容器为横向滚动布局 === */
.hero {
  min-height: 680px !important;
  height: 680px !important;
  padding: 0 !important;
  margin: 0 !important;
  background: linear-gradient(180deg, #000000 0%, #0a0a0f 50%, #000000 100%) !important;
  position: relative;
  overflow: hidden !important;
  display: flex;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

/* === 横向滚动容器 === */
.hero-scroll-container {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  position: relative;
  z-index: 10;
  /* 优化滚动性能 */
  will-change: scroll-position;
  transform: translateZ(0);
}

.hero-scroll-container::-webkit-scrollbar {
  display: none;
}

/* === 滚动面板 === */
.hero-panel {
  min-width: 100vw;
  width: 100vw;
  height: 100%;
  flex-shrink: 0;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 80px;
  box-sizing: border-box;
  /* 优化渲染性能 */
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* === 面板内容动画 === */
.hero-panel-content {
  max-width: 1200px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 5;
  /* 初始状态 */
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 面板激活时的动画 */
.hero-panel.active .hero-panel-content {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.1s;
}

/* 面板切换时的淡出效果 */
.hero-panel:not(.active) .hero-panel-content {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition-duration: 0.4s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-panel-content h2 {
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: #ffffff;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
  /* 标题延迟动画 */
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-panel.active .hero-panel-content h2 {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.2s;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.hero-panel-content h2 em {
  font-style: normal;
  background: linear-gradient(135deg, #0a84ff 0%, #5e5ce6 50%, #af52de 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  /* 渐变文字动画 */
  animation: shimmer 3s ease-in-out infinite;
  background-size: 200% auto;
}

@keyframes shimmer {
  0%, 100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

.hero-panel-content p {
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.5;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  /* 段落延迟动画 */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-panel.active .hero-panel-content p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.hero-panel-content .btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  /* 按钮组延迟动画 */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-panel.active .hero-panel-content .btn-group {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.hero-panel-content .btn {
  padding: 14px 32px;
  font-size: 17px;
  font-weight: 500;
  border-radius: 980px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  /* 按钮3D效果 */
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

/* 按钮悬停光晕效果 */
.hero-panel-content .btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: 0;
}

.hero-panel-content .btn:hover::before {
  width: 300px;
  height: 300px;
}

.hero-panel-content .btn > * {
  position: relative;
  z-index: 1;
}

.hero-panel-content .btn-primary {
  background: #0a84ff;
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 20px rgba(10,132,255,0.4);
}

.hero-panel-content .btn-primary:hover {
  background: #0077ed;
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 8px 30px rgba(10,132,255,0.6);
}

.hero-panel-content .btn-primary:active {
  transform: scale(0.98) translateY(0);
}

.hero-panel-content .btn-secondary {
  background: rgba(255,255,255,0.1);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(20px);
}

.hero-panel-content .btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,255,255,0.1);
}

.hero-panel-content .btn-secondary:active {
  transform: translateY(0);
}

/* === 面板特定样式 === */
/* 第一个面板 - 主推广（深蓝紫渐变主题，更有质感） */
.hero-panel.panel-main {
  background:
    radial-gradient(ellipse 70% 50% at 30% 40%, rgba(59,130,246,0.28) 0%, rgba(59,130,246,0.12) 40%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 70% 60%, rgba(139,92,246,0.22) 0%, rgba(139,92,246,0.08) 40%, transparent 70%),
    linear-gradient(135deg, rgba(30,58,138,0.15) 0%, rgba(88,28,135,0.12) 100%);
}

.hero-panel.panel-main .hero-panel-content h2 {
  font-size: clamp(48px, 6vw, 72px);
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(96,165,250,0.3));
}

.hero-panel.panel-main .hero-panel-content p {
  color: rgba(255,255,255,0.85);
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-panel.panel-main .btn-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  box-shadow: 0 4px 20px rgba(59,130,246,0.5), 0 8px 40px rgba(139,92,246,0.3);
  border: 1px solid rgba(147,197,253,0.2);
}

.hero-panel.panel-main .btn-primary:hover {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
  box-shadow: 0 6px 30px rgba(59,130,246,0.6), 0 12px 60px rgba(139,92,246,0.4);
  transform: scale(1.05) translateY(-2px);
}

.hero-panel.panel-main .btn-secondary {
  background: rgba(255,255,255,0.08);
  border-color: rgba(147,197,253,0.25);
  backdrop-filter: blur(20px);
}

.hero-panel.panel-main .btn-secondary:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(147,197,253,0.4);
  box-shadow: 0 4px 20px rgba(147,197,253,0.2);
}

.hero-panel.panel-main .stat-card {
  background: linear-gradient(135deg, rgba(59,130,246,0.18), rgba(139,92,246,0.12));
  border-color: rgba(96,165,250,0.3);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.1);
}

.hero-panel.panel-main .stat-card:hover {
  background: linear-gradient(135deg, rgba(59,130,246,0.28), rgba(139,92,246,0.18));
  border-color: rgba(96,165,250,0.5);
  box-shadow: 0 12px 40px rgba(59,130,246,0.35), 0 0 60px rgba(139,92,246,0.2);
  transform: translateY(-4px) scale(1.03);
}

.hero-panel.panel-main .stat-card .stat-num {
  background: linear-gradient(135deg, #60a5fa 0%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(96,165,250,0.4));
}

/* 第二个面板 - GPU服务器（橙红渐变主题，更强烈的视觉冲击） */
.hero-panel.panel-gpu {
  background:
    radial-gradient(circle at 20% 30%, rgba(249,115,22,0.25) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(239,68,68,0.22) 0%, transparent 50%),
    linear-gradient(135deg, rgba(124,45,18,0.12) 0%, rgba(127,29,29,0.12) 100%);
}

.hero-panel.panel-gpu .hero-panel-content {
  text-align: left;
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-panel.panel-gpu .hero-panel-text {
  order: 1;
}

.hero-panel.panel-gpu .hero-panel-content h2 {
  font-size: clamp(44px, 5.5vw, 68px);
  text-align: left;
  background: linear-gradient(135deg, #fb923c 0%, #f97316 40%, #ef4444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1.05;
  filter: drop-shadow(0 0 30px rgba(249,115,22,0.4));
}

.hero-panel.panel-gpu .hero-panel-content p {
  text-align: left;
  font-size: 19px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-panel.panel-gpu .btn-group {
  justify-content: flex-start;
}

.hero-panel.panel-gpu .btn-primary {
  background: linear-gradient(135deg, #f97316 0%, #ef4444 100%);
  box-shadow: 0 4px 20px rgba(249,115,22,0.6), 0 8px 40px rgba(239,68,68,0.3);
  border: 1px solid rgba(251,146,60,0.3);
}

.hero-panel.panel-gpu .btn-primary:hover {
  background: linear-gradient(135deg, #fb923c 0%, #f87171 100%);
  box-shadow: 0 6px 30px rgba(249,115,22,0.7), 0 12px 60px rgba(239,68,68,0.4);
  transform: scale(1.05) translateY(-2px);
}

.hero-panel.panel-gpu .btn-secondary {
  background: rgba(255,255,255,0.08);
  border-color: rgba(251,146,60,0.25);
}

.hero-panel.panel-gpu .btn-secondary:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(251,146,60,0.4);
}

.hero-panel.panel-gpu .stats-grid {
  order: 2;
  margin: 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.hero-panel.panel-gpu .stat-card {
  background: linear-gradient(135deg, rgba(249,115,22,0.2), rgba(239,68,68,0.12));
  border-color: rgba(251,146,60,0.4);
  padding: 32px 20px;
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.1);
}

.hero-panel.panel-gpu .stat-card:hover {
  background: linear-gradient(135deg, rgba(249,115,22,0.32), rgba(239,68,68,0.2));
  border-color: rgba(251,146,60,0.6);
  box-shadow: 0 12px 40px rgba(249,115,22,0.5), 0 0 60px rgba(239,68,68,0.3);
  transform: translateY(-6px) scale(1.02);
}

.hero-panel.panel-gpu .stat-card .stat-num {
  font-size: 36px;
  background: linear-gradient(135deg, #fb923c 0%, #fca5a5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(249,115,22,0.4));
}

/* 第三个面板 - 全球节点（青蓝绿渐变主题，清新科技感） */
.hero-panel.panel-global {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(6,182,212,0.22) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(16,185,129,0.18) 0%, transparent 60%),
    linear-gradient(135deg, rgba(8,145,178,0.08) 0%, rgba(6,95,70,0.08) 100%);
}

.hero-panel.panel-global .hero-panel-content h2 {
  font-size: clamp(46px, 5.8vw, 70px);
  background: linear-gradient(135deg, #22d3ee 0%, #14b8a6 50%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(34,211,238,0.3));
}

.hero-panel.panel-global .hero-panel-content p {
  font-size: 20px;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-panel.panel-global .btn-primary {
  background: linear-gradient(135deg, #06b6d4 0%, #10b981 100%);
  box-shadow: 0 4px 20px rgba(6,182,212,0.5), 0 8px 40px rgba(16,185,129,0.3);
  border: 1px solid rgba(34,211,238,0.3);
}

.hero-panel.panel-global .btn-primary:hover {
  background: linear-gradient(135deg, #22d3ee 0%, #34d399 100%);
  box-shadow: 0 6px 30px rgba(6,182,212,0.6), 0 12px 60px rgba(16,185,129,0.4);
  transform: scale(1.05) translateY(-2px);
}

.hero-panel.panel-global .btn-secondary {
  background: rgba(255,255,255,0.08);
  border-color: rgba(34,211,238,0.25);
}

.hero-panel.panel-global .btn-secondary:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(34,211,238,0.4);
}

.hero-panel.panel-global .stats-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 900px;
}

.hero-panel.panel-global .stat-card {
  background: linear-gradient(135deg, rgba(6,182,212,0.18), rgba(16,185,129,0.12));
  border-color: rgba(34,211,238,0.35);
  padding: 28px 16px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.1);
}

.hero-panel.panel-global .stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(34,211,238,0.7), transparent);
}

.hero-panel.panel-global .stat-card:hover {
  background: linear-gradient(135deg, rgba(6,182,212,0.28), rgba(16,185,129,0.18));
  border-color: rgba(34,211,238,0.6);
  box-shadow: 0 12px 40px rgba(6,182,212,0.4), 0 0 60px rgba(16,185,129,0.2);
  transform: translateY(-4px);
}

.hero-panel.panel-global .stat-card .stat-num {
  font-size: 28px;
  background: linear-gradient(135deg, #22d3ee 0%, #6ee7b7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(34,211,238,0.4));
}

.hero-panel.panel-global .stat-card .stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.75);
}

/* === 滚动指示器 === */
.hero-scroll-indicators {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: flex;
  gap: 12px;
  z-index: 20;
  padding: 12px 20px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(20px) saturate(180%);
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  /* 指示器入场动画 */
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 1.2s;
  opacity: 0;
  /* 确保完美居中 */
  width: fit-content;
  justify-content: center;
}

.hero-scroll-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  /* 脉冲效果 */
  box-shadow: 0 0 0 0 rgba(255,255,255,0.4);
}

.hero-scroll-indicator::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: transparent;
  transform: translate(-50%, -50%);
  transition: background 0.3s ease;
}

.hero-scroll-indicator:hover {
  background: rgba(255,255,255,0.6);
  transform: scale(1.2);
}

.hero-scroll-indicator:hover::before {
  background: rgba(255,255,255,0.1);
}

.hero-scroll-indicator.active {
  width: 32px;
  border-radius: 4px;
  background: #0a84ff;
  box-shadow: 0 0 20px rgba(10,132,255,0.6), 0 0 40px rgba(10,132,255,0.3);
  /* 活动指示器脉冲动画 */
  animation: indicatorPulse 2s ease-in-out infinite;
}

@keyframes indicatorPulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(10,132,255,0.6), 0 0 40px rgba(10,132,255,0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(10,132,255,0.8), 0 0 60px rgba(10,132,255,0.5);
  }
}

/* === 左右导航箭头 === */
.hero-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: rgba(255,255,255,0.8);
  font-size: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  /* 箭头入场动画 */
  animation: fadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 1s;
  opacity: 0;
  /* 呼吸动画 */
  animation: arrowBreath 3s ease-in-out infinite;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes arrowBreath {
  0%, 100% {
    transform: translateY(-50%) scale(1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  }
  50% {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 30px rgba(0,0,0,0.3), 0 0 30px rgba(255,255,255,0.1);
  }
}

.hero-nav-arrow:hover {
  background: rgba(0,0,0,0.6);
  border-color: rgba(255,255,255,0.3);
  color: #ffffff;
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4), 0 0 40px rgba(255,255,255,0.15);
  animation: none; /* 悬停时停止呼吸动画 */
}

.hero-nav-arrow:active {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* 箭头图标动画 */
.hero-nav-arrow::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.4s ease;
}

.hero-nav-arrow:hover::before {
  opacity: 1;
  transform: scale(1);
}

.hero-nav-arrow.prev {
  left: 32px;
  animation-delay: 0.9s;
}

.hero-nav-arrow.next {
  right: 32px;
  animation-delay: 1s;
}

/* 箭头左右摆动提示 */
@keyframes arrowHintLeft {
  0%, 100% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-50%) translateX(-5px);
  }
}

@keyframes arrowHintRight {
  0%, 100% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-50%) translateX(5px);
  }
}

.hero-nav-arrow.prev {
  animation: arrowBreath 3s ease-in-out infinite, arrowHintLeft 2s ease-in-out infinite;
}

.hero-nav-arrow.next {
  animation: arrowBreath 3s ease-in-out infinite, arrowHintRight 2s ease-in-out infinite;
}

/* === 背景装饰层 === */
.hero-bg {
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

/* === 优化原有背景元素 === */
.hero-orb-1 {
  background: radial-gradient(circle, rgba(10,132,255,0.3) 0%, transparent 70%) !important;
  filter: blur(120px) !important;
  animation: orbFloatSlow 40s ease-in-out infinite !important;
}

.hero-orb-2 {
  background: radial-gradient(circle, rgba(94,92,230,0.25) 0%, transparent 70%) !important;
  filter: blur(120px) !important;
  animation: orbFloatSlow 45s ease-in-out infinite reverse !important;
}

.hero-orb-3 {
  background: radial-gradient(circle, rgba(175,82,222,0.2) 0%, transparent 70%) !important;
  filter: blur(120px) !important;
  animation: orbFloatSlow 50s ease-in-out infinite !important;
}

@keyframes orbFloatSlow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(60px, -60px) scale(1.15); }
  66% { transform: translate(-50px, 50px) scale(0.9); }
}

/* === 网格背景增强 === */
.hero-grid-overlay {
  background-image:
    linear-gradient(90deg, rgba(10,132,255,0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(10,132,255,0.06) 1px, transparent 1px) !important;
  background-size: 100px 100px !important;
  opacity: 0.3 !important;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 85%) !important;
}

/* === 粒子效果优化 === */
.hero-particles span {
  background: rgba(10,132,255,0.8) !important;
  box-shadow: 0 0 20px rgba(10,132,255,1), 0 0 40px rgba(10,132,255,0.5) !important;
  animation: particleFloatEnhanced 20s ease-in-out infinite !important;
}

@keyframes particleFloatEnhanced {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.4;
  }
  25% {
    transform: translate(80px, -80px) scale(1.8);
    opacity: 1;
  }
  50% {
    transform: translate(120px, 0px) scale(1.2);
    opacity: 0.7;
  }
  75% {
    transform: translate(40px, 60px) scale(1.5);
    opacity: 0.9;
  }
}

/* === 移动端适配 === */
@media (max-width: 1024px) {
  .hero {
    min-height: 560px !important;
    height: 560px !important;
  }

  .hero-panel {
    padding: 0 40px;
  }

  .hero-nav-arrow {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .hero-nav-arrow.prev {
    left: 20px;
  }

  .hero-nav-arrow.next {
    right: 20px;
  }

  /* GPU面板平板端改为单列 */
  .hero-panel.panel-gpu .hero-panel-content {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .hero-panel.panel-gpu .hero-panel-text {
    order: 1;
  }

  .hero-panel.panel-gpu .hero-panel-content h2,
  .hero-panel.panel-gpu .hero-panel-content p {
    text-align: center;
  }

  .hero-panel.panel-gpu .btn-group {
    justify-content: center;
  }

  .hero-panel.panel-gpu .stats-grid {
    order: 2;
  }

  .hero-panel.panel-global .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .hero-scroll-indicators {
    bottom: 28px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 540px !important;
    height: 540px !important;
    position: relative;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  /* 修复移动端滚动抖动 */
  .hero-scroll-container {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
  }

  .hero-panel {
    padding: 0 24px;
    align-items: center;
    padding-top: 0;
    justify-content: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  /* 内容区域紧凑优化 */
  .hero-panel-content {
    max-width: 100%;
    padding: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  /* 禁用移动端的will-change以防止抖动 */
  .hero-panel,
  .hero-panel-content,
  .hero-bg * {
    will-change: auto !important;
  }

  .hero-panel-content h2 {
    font-size: clamp(26px, 7vw, 34px) !important;
    margin-bottom: 16px !important;
    line-height: 1.2 !important;
  }

  .hero-panel-content h2 br {
    display: inline; /* 保留标题换行 */
  }

  .hero-panel-content p {
    font-size: 14px !important;
    margin-bottom: 24px !important;
    line-height: 1.5 !important;
    max-width: 100% !important;
  }

  .hero-panel-content p br {
    display: none; /* 移动端去掉段落换行 */
  }

  .hero-panel-content .btn-group {
    flex-direction: row !important;
    gap: 10px !important;
    width: 100% !important;
    flex-wrap: nowrap !important;
    margin-bottom: 8px !important;
  }

  .hero-panel-content .btn {
    flex: 1 !important;
    min-width: 0 !important;
    max-width: none !important;
    justify-content: center;
    padding: 12px 16px !important;
    font-size: 14px !important;
    font-weight: 600;
    white-space: nowrap;
  }

  /* 统计卡片网格紧凑优化 */
  .hero-panel .stats-grid {
    margin-top: 24px !important;
    gap: 10px !important;
    grid-template-columns: repeat(4, 1fr) !important;
  }

  .hero-panel .stat-card {
    padding: 14px 8px !important;
    border-radius: 12px !important;
  }

  .hero-panel .stat-card .stat-num {
    font-size: 20px !important;
    margin-bottom: 4px !important;
  }

  .hero-panel .stat-card .stat-label {
    font-size: 9px !important;
    line-height: 1.3 !important;
  }

  /* 第一屏（全球节点）移动端优化 */
  .hero-panel.panel-global .hero-panel-content h2 {
    font-size: clamp(24px, 7vw, 32px) !important;
  }

  .hero-panel.panel-global .stats-grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }

  .hero-panel.panel-global .stat-card .stat-num {
    font-size: 18px !important;
  }

  /* 第二屏（GPU）移动端优化 */
  .hero-panel.panel-gpu .hero-panel-content {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .hero-panel.panel-gpu .hero-panel-content h2 {
    font-size: clamp(24px, 7vw, 32px) !important;
    text-align: center !important;
    line-height: 1.15 !important;
  }

  .hero-panel.panel-gpu .hero-panel-content p {
    text-align: center !important;
  }

  .hero-panel.panel-gpu .stats-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 10px !important;
    margin-top: 24px !important;
  }

  .hero-panel.panel-gpu .stat-card {
    padding: 14px 6px !important;
  }

  .hero-panel.panel-gpu .stat-card .stat-num {
    font-size: 18px !important;
  }

  .hero-panel.panel-gpu .stat-card .stat-label {
    font-size: 9px !important;
  }

  /* 第三屏（主推广）移动端优化 */
  .hero-panel.panel-main .hero-panel-content h2 {
    font-size: clamp(26px, 7vw, 34px) !important;
  }

  .hero-panel.panel-main .stats-grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }

  /* 导航箭头移动端隐藏 */
  .hero-nav-arrow {
    display: none !important;
  }

  /* 滚动指示器移动端优化 - 修复位置在Banner内 */
  .hero-scroll-indicators {
    position: absolute !important;
    bottom: 20px !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto !important;
    transform: none !important;
    padding: 6px 12px !important;
    gap: 6px !important;
    z-index: 30 !important;
    /* 移动端强制显示 */
    opacity: 1 !important;
    animation: none !important;
    display: flex !important;
    width: fit-content !important;
    justify-content: center !important;
    background: rgba(0,0,0,0.5) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    border-radius: 100px !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4) !important;
    pointer-events: auto !important;
  }

  .hero-scroll-indicator {
    width: 5px !important;
    height: 5px !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .hero-scroll-indicator.active {
    width: 18px !important;
    border-radius: 2.5px !important;
    opacity: 1 !important;
  }

  /* 滚动提示移动端隐藏 */
  .hero-scroll-hint {
    display: none !important;
  }

  /* 移动端隐藏部分复杂装饰 */
  .hero-circuit,
  .hero-data-connections,
  .hero-rectangles,
  .hero-diamonds,
  .hero-light-trails,
  .hero-digital-rain,
  .hero-code-stream,
  .hero-data-nodes,
  .hero-hologram,
  .hero-energy-waves,
  .hero-rings,
  .hero-triangles,
  .hero-hexagons,
  .hero-energy-pulses,
  .hero-raster,
  .hero-glow-dots,
  .hero-glass-shards,
  .hero-light-particles,
  .hero-reflections,
  .hero-light-sweep,
  .hero-depth-layers {
    display: none !important;
  }

  /* 保留核心背景元素 */
  .hero-orb {
    filter: blur(90px) !important;
  }

  .hero-orb-1 {
    width: 350px;
    height: 350px;
    top: -80px;
    right: -80px;
  }

  .hero-orb-2 {
    width: 300px;
    height: 300px;
    bottom: -60px;
    left: -60px;
  }

  .hero-orb-3 {
    width: 280px;
    height: 280px;
  }

  .hero-grid-overlay {
    background-size: 50px 50px !important;
    opacity: 0.2 !important;
  }

  .hero-dots-overlay {
    background-size: 25px 25px !important;
    opacity: 0.3 !important;
  }

  .hero-lines {
    opacity: 0.3 !important;
  }

  .hero-pulse-lines {
    opacity: 0.25 !important;
  }

  /* 保留少量粒子 */
  .hero-particles span:nth-child(n+5) {
    display: none;
  }

  .hero-stars .star:nth-child(n+4) {
    display: none;
  }

  /* 优化背景光晕 */
  .luminous-sphere {
    filter: blur(50px) !important;
    opacity: 0.25 !important;
  }

  .sphere-1 {
    width: 250px;
    height: 250px;
  }

  .sphere-2 {
    width: 220px;
    height: 220px;
  }

  .sphere-3 {
    width: 200px;
    height: 200px;
  }

  /* 优化渐变网格 */
  .hero-gradient-mesh {
    filter: blur(70px) !important;
    opacity: 0.18 !important;
  }

  .mesh-blob {
    animation-duration: 55s !important;
  }

  .blob-1 {
    width: 280px;
    height: 280px;
  }

  .blob-2 {
    width: 250px;
    height: 250px;
  }

  .blob-3 {
    width: 230px;
    height: 230px;
  }

  .blob-4 {
    width: 210px;
    height: 210px;
  }

  /* 优化柔光 */
  .soft-light {
    filter: blur(35px) !important;
    opacity: 0.12 !important;
  }

  .light-1,
  .light-2,
  .light-3,
  .light-4 {
    width: 180px !important;
    height: 180px !important;
  }
}

/* 超小屏幕优化 (iPhone SE等) */
@media (max-width: 375px) {
  .hero {
    min-height: 500px !important;
    height: 500px !important;
  }

  .hero-panel {
    padding: 0 20px;
  }

  .hero-panel-content h2 {
    font-size: clamp(22px, 8vw, 28px) !important;
    margin-bottom: 14px !important;
  }

  .hero-panel-content p {
    font-size: 13px !important;
    margin-bottom: 20px !important;
  }

  .hero-panel-content .btn-group {
    gap: 8px !important;
  }

  .hero-panel-content .btn {
    padding: 11px 14px !important;
    font-size: 13px !important;
  }

  .hero-panel .stats-grid {
    margin-top: 20px !important;
    gap: 8px !important;
  }

  .hero-panel .stat-card {
    padding: 12px 6px !important;
    border-radius: 10px !important;
  }

  .hero-panel .stat-card .stat-num {
    font-size: 17px !important;
    margin-bottom: 3px !important;
  }

  .hero-panel .stat-card .stat-label {
    font-size: 8px !important;
  }

  /* 滚动指示器 - 修复位置在Banner内 */
  .hero-scroll-indicators {
    position: absolute !important;
    bottom: 16px !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto !important;
    transform: none !important;
    padding: 5px 10px !important;
    gap: 5px !important;
    z-index: 30 !important;
    /* 小屏强制显示 */
    opacity: 1 !important;
    animation: none !important;
    display: flex !important;
    width: fit-content !important;
    justify-content: center !important;
    background: rgba(0,0,0,0.5) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    border-radius: 100px !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4) !important;
    pointer-events: auto !important;
  }

  .hero-scroll-indicator {
    width: 4px !important;
    height: 4px !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .hero-scroll-indicator.active {
    width: 14px !important;
    opacity: 1 !important;
  }
}

/* 横屏模式优化 */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: 100vh !important;
    height: 100vh !important;
    max-height: 450px !important;
  }

  .hero-panel {
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-panel-content h2 {
    font-size: clamp(20px, 5vw, 26px) !important;
    margin-bottom: 8px !important;
  }

  .hero-panel-content p {
    font-size: 12px !important;
    margin-bottom: 14px !important;
  }

  .hero-panel-content .btn {
    padding: 8px 14px !important;
    font-size: 12px !important;
  }

  .hero-panel .stats-grid {
    margin-top: 14px !important;
    gap: 6px !important;
  }

  .hero-panel .stat-card {
    padding: 8px 6px !important;
  }

  .hero-panel .stat-card .stat-num {
    font-size: 16px !important;
  }

  .hero-panel .stat-card .stat-label {
    font-size: 8px !important;
  }

  .hero-scroll-indicators {
    bottom: 12px;
  }
}

/* === 统计数据卡片（如果需要） === */
.hero-panel .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  max-width: 800px;
  margin: 48px auto 0;
  /* 卡片组延迟动画 */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-panel.active .stats-grid {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.hero-panel .stat-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 24px 16px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  /* 3D变换 */
  transform-style: preserve-3d;
  backface-visibility: hidden;
  /* 卡片入场动画 */
  opacity: 0;
  transform: translateY(30px) scale(0.9);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 面板激活时，卡片依次入场 */
.hero-panel.active .stat-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* 每个卡片错开动画 */
.hero-panel.active .stat-card:nth-child(1) {
  transition-delay: 0.6s;
}

.hero-panel.active .stat-card:nth-child(2) {
  transition-delay: 0.7s;
}

.hero-panel.active .stat-card:nth-child(3) {
  transition-delay: 0.8s;
}

.hero-panel.active .stat-card:nth-child(4) {
  transition-delay: 0.9s;
}

@keyframes slideInScale {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* 卡片发光边框动画 */
.hero-panel .stat-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.hero-panel .stat-card:hover::before {
  opacity: 1;
}

/* 卡片背景光效 */
.hero-panel .stat-card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.6s ease;
  border-radius: 50%;
  z-index: 0;
}

.hero-panel .stat-card:hover::after {
  transform: translate(-50%, -50%) scale(2);
}

.hero-panel .stat-card:hover {
  transform: translateY(-6px) scale(1.05) rotateX(5deg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 80px rgba(255,255,255,0.1);
}

.hero-panel .stat-card .stat-num {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
  background: linear-gradient(135deg, #ffffff 0%, #0a84ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
  /* 数字跳动动画 */
  animation: numberPop 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
  animation-delay: inherit;
}

@keyframes numberPop {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.hero-panel .stat-card .stat-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}

/* === 滚动提示动画 === */
@keyframes scrollHint {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateX(-50%) translateY(8px);
    opacity: 0.5;
  }
}

@keyframes arrowBounce {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(8px);
  }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  font-weight: 500;
  animation: scrollHint 2s ease-in-out infinite;
  z-index: 15;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: opacity 0.3s ease;
}

.hero-scroll-hint::after {
  content: '→';
  font-size: 18px;
  animation: arrowBounce 1.5s ease-in-out infinite;
  display: inline-block;
}

/* === 背景装饰元素动画优化 === */
.hero-bg {
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

/* 光球飘动 */
.hero-orb {
  animation-timing-function: ease-in-out !important;
  will-change: transform;
}

.hero-orb-1 {
  animation: orbFloatSlow 40s ease-in-out infinite !important;
}

.hero-orb-2 {
  animation: orbFloatSlow 45s ease-in-out infinite reverse !important;
}

.hero-orb-3 {
  animation: orbFloatSlow 50s ease-in-out infinite !important;
}

@keyframes orbFloatSlow {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  25% {
    transform: translate(60px, -60px) scale(1.15);
    opacity: 0.5;
  }
  50% {
    transform: translate(80px, 0) scale(1.1);
    opacity: 0.4;
  }
  75% {
    transform: translate(-50px, 50px) scale(0.9);
    opacity: 0.45;
  }
}

/* 粒子增强动画 */
.hero-particles span {
  animation: particleFloatEnhanced 20s ease-in-out infinite !important;
  will-change: transform, opacity;
}

@keyframes particleFloatEnhanced {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.4;
  }
  25% {
    transform: translate(80px, -80px) scale(1.8);
    opacity: 1;
  }
  50% {
    transform: translate(120px, 0px) scale(1.2);
    opacity: 0.7;
  }
  75% {
    transform: translate(40px, 60px) scale(1.5);
    opacity: 0.9;
  }
}

/* 星星闪烁 */
.star {
  animation: starTwinkleEnhanced 4s ease-in-out infinite !important;
  will-change: opacity, transform;
}

@keyframes starTwinkleEnhanced {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.8);
  }
}

/* 光晕球体 */
.luminous-sphere {
  animation: luminousFloatEnhanced 35s ease-in-out infinite !important;
  will-change: transform, opacity;
}

@keyframes luminousFloatEnhanced {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  33% {
    transform: translate(40px, -40px) scale(1.15);
    opacity: 0.5;
  }
  66% {
    transform: translate(-35px, 35px) scale(0.95);
    opacity: 0.4;
  }
}

/* 渐变网格流动 */
.mesh-blob {
  animation: blobMoveEnhanced 40s ease-in-out infinite !important;
  will-change: transform;
}

@keyframes blobMoveEnhanced {
  0%, 100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  33% {
    transform: translate(60px, -60px) scale(1.15) rotate(120deg);
  }
  66% {
    transform: translate(-50px, 50px) scale(0.9) rotate(240deg);
  }
}

/* 柔光脉冲 */
.soft-light {
  animation: softLightPulseEnhanced 15s ease-in-out infinite !important;
  will-change: opacity, transform;
}

@keyframes softLightPulseEnhanced {
  0%, 100% {
    opacity: 0.15;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.2);
  }
}

/* 网格覆盖层呼吸 */
.hero-grid-overlay {
  animation: gridBreath 8s ease-in-out infinite !important;
}

@keyframes gridBreath {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.5;
  }
}

/* 对角线移动 */
.hero-lines {
  animation: linesMove 30s linear infinite !important;
}

/* 脉冲线扫描 */
.hero-pulse-lines {
  animation: pulseHorizontal 10s ease-in-out infinite !important;
}

@keyframes pulseHorizontal {
  0%, 100% {
    background-position: 0% 0%;
    opacity: 0;
  }
  10% {
    opacity: 0.4;
  }
  50% {
    background-position: 100% 0%;
    opacity: 0.4;
  }
  90% {
    opacity: 0.4;
  }
  100% {
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .hero-scroll-hint {
    bottom: 80px;
    font-size: 12px;
  }
}
