/* 企业官网样式 - Apple 风格设计 */

/* 重置和基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============================================
   全新Neo Banner设计 - 未来科技感
   ============================================ */

.neo-banner {
    position: relative;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #533483 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 动态背景层系统 */
.neo-bg-layers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.neo-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(59, 130, 246, 0.3) 0%, transparent 50%);
    animation: gradientShift 20s ease-in-out infinite;
}

.neo-bg-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

#particleCanvas {
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.neo-bg-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.mesh-line {
    position: absolute;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    animation: meshMove 15s linear infinite;
}

.mesh-line:nth-child(1) {
    width: 1px;
    height: 100%;
    left: 20%;
    animation-delay: 0s;
}

.mesh-line:nth-child(2) {
    width: 1px;
    height: 100%;
    left: 60%;
    animation-delay: -5s;
}

.mesh-line:nth-child(3) {
    width: 100%;
    height: 1px;
    top: 30%;
    animation-delay: -10s;
    background: linear-gradient(0deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
}

/* 轮播容器 */
.neo-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.neo-slides-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.neo-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.9) rotateY(15deg) translateZ(-200px);
    transition: all 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backface-visibility: hidden;
    will-change: transform, opacity;
    perspective: 1000px;
}

.neo-slide.active {
    opacity: 1;
    transform: scale(1) rotateY(0deg) translateZ(0);
    z-index: 5;
}

/* 背景图层系统 */
.neo-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.neo-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    filter: blur(1px) brightness(0.4) contrast(1.2);
    transform: scale(1.05);
    transition: all 2s ease-out;
}

.neo-slide.active .neo-bg-image {
    filter: blur(0px) brightness(0.6) contrast(1.3);
    transform: scale(1);
}

.neo-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(16, 32, 75, 0.8) 0%, rgba(83, 52, 131, 0.6) 100%),
        radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    backdrop-filter: blur(1px);
}

/* 内容层 */
.neo-content-layer {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.neo-content-wrapper {
    position: relative;
    max-width: 1400px;
    width: 100%;
    height: 100%;
    padding: 0 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* 装饰元素 */
.neo-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.neo-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: orbFloat 8s ease-in-out infinite;
}

.neo-glow-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #3b82f6 0%, transparent 70%);
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.neo-glow-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
    bottom: 30%;
    left: 15%;
    animation-delay: -4s;
}

.neo-floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.neo-shape {
    position: absolute;
    opacity: 0.1;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: shapeFloat 12s ease-in-out infinite;
}

.neo-triangle {
    width: 60px;
    height: 60px;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 52px solid rgba(59, 130, 246, 0.3);
    border: none;
    top: 15%;
    right: 20%;
    animation-delay: 0s;
}

.neo-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(139, 92, 246, 0.3);
    top: 60%;
    right: 30%;
    animation-delay: -4s;
}

.neo-hexagon {
    width: 50px;
    height: 50px;
    background: rgba(255, 119, 198, 0.2);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    top: 35%;
    left: 80%;
    animation-delay: -8s;
}

/* 主要内容区域 */
.neo-main-content {
    z-index: 20;
    transform: translateY(0);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
}

.neo-text-reveal {
    opacity: 0;
    transform: translateY(60px) rotateX(10deg);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.neo-slide.active .neo-text-reveal {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
    transition-delay: 0.3s;
}



.neo-title {
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 800;
    margin: 30px 0;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(40px) scale(0.9);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* 增强标题清晰度 */
    filter: contrast(1.2) brightness(1.1);
}

.neo-slide.active .neo-title {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.7s;
}

.neo-title-line {
    display: inline-block;
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        #3b82f6 25%, 
        #8b5cf6 50%, 
        #ec4899 75%, 
        #ffffff 100%);
    background-size: 300% 300%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleGradient 4s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.3)) contrast(1.2) brightness(1.1);
    position: relative;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

.neo-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.neo-slide.active .neo-description {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.9s;
}

/* CTA按钮区域 */
.neo-cta-section {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.neo-slide.active .neo-cta-section {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.1s;
}

.neo-cta-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 36px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 10px 30px rgba(59, 130, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    will-change: transform;
}

.neo-cta-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(59, 130, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.neo-cta-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    pointer-events: none;
}

.neo-cta-primary:active .neo-cta-ripple {
    width: 300px;
    height: 300px;
}

.neo-cta-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(59, 130, 246, 0.3), transparent);
    animation: rotateGlow 3s linear infinite;
    opacity: 0;
}

.neo-cta-primary:hover .neo-cta-glow {
    opacity: 1;
}



/* 现代化导航系统 */
.neo-navigation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 30;
    pointer-events: none;
}

.neo-nav-sidebar {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    pointer-events: auto;
}

.neo-nav-item {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.neo-nav-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.neo-nav-item.active {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
}

.neo-nav-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transition: width 0.3s ease;
}

.neo-nav-item.active .neo-nav-progress {
    width: 100%;
}

.neo-nav-label {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}



.neo-scroll-indicator {
    position: absolute;
    bottom: 40px;
    right: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    pointer-events: none;
    opacity: 0.6;
}

.neo-scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

.neo-scroll-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    letter-spacing: 1px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.neo-scroll-arrow {
    color: rgba(255, 255, 255, 0.6);
    animation: scrollBounce 2s ease-in-out infinite;
}

/* 关键帧动画 */
@keyframes gradientShift {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-10px) translateY(-10px); }
    50% { transform: translateX(10px) translateY(10px); }
    75% { transform: translateX(-5px) translateY(15px); }
}

@keyframes meshMove {
    0% { transform: translateX(-100px) translateY(-50px) rotate(0deg); }
    100% { transform: translateX(100px) translateY(50px) rotate(360deg); }
}

@keyframes orbFloat {
    0%, 100% { transform: translateY(0) translateX(0) scale(1); }
    25% { transform: translateY(-20px) translateX(10px) scale(1.1); }
    50% { transform: translateY(10px) translateX(-15px) scale(0.9); }
    75% { transform: translateY(-10px) translateX(5px) scale(1.05); }
}

@keyframes shapeFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.1; }
    25% { transform: translateY(-30px) rotate(90deg); opacity: 0.2; }
    50% { transform: translateY(20px) rotate(180deg); opacity: 0.15; }
    75% { transform: translateY(-15px) rotate(270deg); opacity: 0.25; }
}

@keyframes codeFlicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
    75% { opacity: 0.9; }
}

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

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* 动画完成状态 */
.slide-title.animation-complete {
    transform: translateY(0) scale(1) rotateX(0deg) !important;
}

.slide-subtitle.animation-complete {
    transform: translateY(0) rotateX(0deg) !important;
}

.slide-cta.animation-complete {
    transform: translateY(0) scale(1) rotateX(0deg) !important;
}

/* 激活状态的内容动画 - 炫酷淡入淡出 */
.carousel-slide.active .slide-content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotateX(0deg);
    transition: all 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s;
}

.carousel-slide.active .slide-title.animated {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0deg);
    animation: fadeInGlow 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.carousel-slide.active .slide-subtitle.animated {
    opacity: 0.95;
    transform: translateY(0) rotateX(0deg);
    animation: fadeInFloat 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s forwards;
}

.carousel-slide.active .slide-cta.animated {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0deg);
    animation: fadeInPulse 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.5s forwards;
}

.slide-cta:hover {
    background: linear-gradient(135deg, #0056CC 0%, #4A47B8 50%, #0056CC 100%);
    background-position: 100% 0;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 122, 255, 0.6), 0 0 30px rgba(88, 86, 214, 0.3);
    animation: buttonHover 0.6s ease-out forwards;
}

.slide-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s ease;
}

.slide-cta:hover::before {
    left: 100%;
}

/* 导航点样式 */
.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.carousel-dot.active {
    background: white;
    border-color: white;
    transform: scale(1.2);
}

.carousel-dot:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

.carousel-dot.active::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* 新增炫酷动画效果 */
@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

@keyframes shimmerGlow {
    0% { 
        background-position: 0% 50%; 
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    }
    25% { 
        background-position: 100% 50%; 
        filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.5));
    }
    50% { 
        background-position: 200% 50%; 
        filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.7));
    }
    75% { 
        background-position: 300% 50%; 
        filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.5));
    }
    100% { 
        background-position: 0% 50%; 
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    }
}

@keyframes fadeInGlow {
    0% {
        opacity: 0;
        transform: translateY(100px) scale(0.6) rotateX(20deg);
        filter: blur(10px);
    }
    50% {
        opacity: 0.7;
        transform: translateY(20px) scale(0.9) rotateX(5deg);
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
        filter: blur(0px);
    }
}

@keyframes fadeInFloat {
    0% {
        opacity: 0;
        transform: translateY(80px) scale(0.8);
        filter: blur(8px);
    }
    70% {
        opacity: 0.9;
        transform: translateY(-5px) scale(1.02);
        filter: blur(1px);
    }
    100% {
        opacity: 0.95;
        transform: translateY(0) scale(1);
        filter: blur(0px);
    }
}

@keyframes fadeInPulse {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.7);
        box-shadow: 0 0 0 rgba(255, 255, 255, 0);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-10px) scale(1.1);
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    }
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.3);
    }
    50% {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 255, 255, 0.5), 0 0 40px rgba(0, 122, 255, 0.3);
    }
}

@keyframes slideInTitle {
    0% {
        opacity: 0;
        transform: translateY(80px) scale(0.8) rotateX(15deg);
    }
    40% {
        opacity: 0.6;
        transform: translateY(-12px) scale(1.03) rotateX(-3deg);
    }
    70% {
        opacity: 0.9;
        transform: translateY(3px) scale(0.99) rotateX(1deg);
    }
    85% {
        opacity: 0.98;
        transform: translateY(-1px) scale(1.001) rotateX(-0.2deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
    }
}

@keyframes slideInSubtitle {
    0% {
        opacity: 0;
        transform: translateY(60px) rotateX(10deg);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-8px) rotateX(-2deg);
    }
    75% {
        opacity: 0.88;
        transform: translateY(2px) rotateX(0.5deg);
    }
    90% {
        opacity: 0.93;
        transform: translateY(-0.5px) rotateX(-0.1deg);
    }
    100% {
        opacity: 0.95;
        transform: translateY(0) rotateX(0deg);
    }
}

@keyframes slideInCTA {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.8) rotateX(10deg);
    }
    45% {
        opacity: 0.8;
        transform: translateY(-10px) scale(1.08) rotateX(-3deg);
    }
    70% {
        opacity: 0.92;
        transform: translateY(3px) scale(0.98) rotateX(1deg);
    }
    85% {
        opacity: 0.97;
        transform: translateY(-1px) scale(1.01) rotateX(-0.3deg);
    }
    95% {
        opacity: 0.99;
        transform: translateY(0.5px) scale(0.999) rotateX(0.1deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
    }
}

@keyframes textFloat {
    0%, 100% {
        transform: translateY(0) rotateX(0deg);
    }
    25% {
        transform: translateY(-3px) rotateX(0.5deg);
    }
    75% {
        transform: translateY(2px) rotateX(-0.5deg);
    }
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(0, 122, 255, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
        transform: translateY(0) scale(1) rotateX(0deg);
    }
    50% {
        box-shadow: 0 12px 35px rgba(0, 122, 255, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.2);
        transform: translateY(-2px) scale(1.02) rotateX(0deg);
    }
}

@keyframes buttonHover {
    0% {
        background-position: 0% 0;
    }
    100% {
        background-position: 100% 0;
    }
}

@keyframes contentGlow {
    0%, 100% {
        opacity: 0;
        transform: scale(1) rotate(0deg);
    }
    25% {
        opacity: 0.3;
        transform: scale(1.1) rotate(90deg);
    }
    50% {
        opacity: 0.1;
        transform: scale(0.9) rotate(180deg);
    }
    75% {
        opacity: 0.2;
        transform: scale(1.05) rotate(270deg);
    }
}

/* 箭头导航样式 */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.8rem;
    padding: 20px 25px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    min-width: 60px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.05);
}

.carousel-prev {
    left: 30px;
}

.carousel-next {
    right: 30px;
}

/* Banner轮播图高级动画效果 */
@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* 切换效果变体 */
.carousel-slide.slide-next {
    transform: translateX(100%);
}

.carousel-slide.slide-prev {
    transform: translateX(-100%);
}

.carousel-slide.fade-in {
    animation: zoomIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* 文字特效 */
.slide-title.animated {
    animation: slideInFromLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-subtitle.animated {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
}

.slide-cta.animated {
    animation: zoomIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s both;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1d1d1f;
    background-color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 导航栏 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.nav-logo {
    font-size: 24px;
    font-weight: 700;
    color: #1d1d1f;
    text-decoration: none;
}

.nav-logo img {
    height: 36px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: #1d1d1f;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #007aff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #007aff;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.language-switcher {
    display: flex;
    gap: 10px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    padding-left: 20px;
}

.lang-link {
    color: #86868b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.lang-link.active,
.lang-link:hover {
    color: #007aff;
    background: rgba(0, 122, 255, 0.1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #1d1d1f;
    transition: all 0.3s ease;
}

/* 主页横幅 - 炫酷淡入淡出效果 */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.95) 0%, 
        rgba(118, 75, 162, 0.98) 50%, 
        rgba(64, 93, 230, 0.95) 100%);
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: heroMasterFadeIn 4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    backdrop-filter: blur(10px) saturate(150%);
}

/* Hero整体部分炫酷淡入淡出动画 */
@keyframes heroMasterFadeIn {
    0% {
        opacity: 0;
        transform: scale(1.2) translateZ(0);
        filter: blur(20px) brightness(0.3) saturate(0.5);
    }
    20% {
        opacity: 0.3;
        transform: scale(1.1) translateZ(0);
        filter: blur(10px) brightness(0.5) saturate(0.8);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.03) translateZ(0);
        filter: blur(3px) brightness(0.8) saturate(1.1);
    }
    80% {
        opacity: 0.9;
        transform: scale(1.01) translateZ(0);
        filter: blur(1px) brightness(0.95) saturate(1.2);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateZ(0);
        filter: blur(0px) brightness(1) saturate(1.3);
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

/* 添加动态粒子背景 */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 2px, transparent 2px),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.12) 1.5px, transparent 1.5px),
        radial-gradient(circle at 60% 30%, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 90% 70%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.08) 1.5px, transparent 1.5px);
    background-size: 300px 300px, 200px 200px, 250px 250px, 180px 180px, 350px 350px, 160px 160px, 220px 220px;
    animation: particleFloat 25s linear infinite;
    pointer-events: none;
    z-index: 1;
    opacity: 0.7;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.5;
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(90deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-50px) translateX(-5px) rotate(180deg);
        opacity: 1;
    }
    75% {
        transform: translateY(-30px) translateX(15px) rotate(270deg);
        opacity: 0.6;
    }
    100% {
        transform: translateY(-80px) translateX(0) rotate(360deg);
        opacity: 0.3;
    }
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 10;
    position: relative;
    max-width: 900px;
    padding: 0 20px;
    opacity: 0;
    transform: scale(0.8) translateY(80px);
    animation: heroContentReveal 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s forwards;
    backdrop-filter: blur(5px);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    animation: fadeInUp 1s ease-out;
    position: relative;
    overflow: hidden;
    /* 增强标题清晰度 */
    filter: contrast(1.2) brightness(1.1);
    opacity: 1;
}

/* Hero标题滚动时的特殊效果 */
.hero-title.visible {
    animation: heroTitleReveal 2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.hero-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    animation: shimmerText 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes heroContentReveal {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(80px) rotateX(15deg);
        filter: blur(15px);
    }
    30% {
        opacity: 0.4;
        transform: scale(0.9) translateY(40px) rotateX(8deg);
        filter: blur(5px);
    }
    70% {
        opacity: 0.8;
        transform: scale(1.02) translateY(-10px) rotateX(-2deg);
        filter: blur(1px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0) rotateX(0deg);
        filter: blur(0px);
    }
}

@keyframes heroTitleReveal {
    0% {
        opacity: 0;
        transform: translateY(120px) scale(0.7) rotateX(30deg);
        filter: blur(8px);
        text-shadow: 0 0 50px rgba(255,255,255,0.8);
    }
    25% {
        opacity: 0.4;
        transform: translateY(60px) scale(0.85) rotateX(15deg);
        filter: blur(4px);
        text-shadow: 0 0 30px rgba(255,255,255,0.6);
    }
    50% {
        opacity: 0.7;
        transform: translateY(15px) scale(1.05) rotateX(3deg);
        filter: blur(1px);
        text-shadow: 0 0 20px rgba(255,255,255,0.4);
    }
    80% {
        opacity: 0.95;
        transform: translateY(-8px) scale(0.98) rotateX(-1deg);
        filter: blur(0.3px);
        text-shadow: 0 0 15px rgba(255,255,255,0.3);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
        filter: blur(0px);
        text-shadow: 0 5px 25px rgba(0,0,0,0.3), 0 0 50px rgba(255,255,255,0.2);
    }
}

@keyframes shimmerText {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.5;
    animation: fadeInUp 1s ease-out 0.2s both;
    position: relative;
}

/* Hero副标题滚动时的特殊效果 */
.hero-subtitle.visible {
    animation: heroSubtitleReveal 1.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes heroSubtitleReveal {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.8);
        filter: blur(2px);
        letter-spacing: 0.1em;
    }
    30% {
        opacity: 0.4;
        transform: translateY(30px) scale(0.9);
        filter: blur(1.5px);
        letter-spacing: 0.05em;
    }
    60% {
        opacity: 0.7;
        transform: translateY(10px) scale(1.05);
        filter: blur(0.5px);
        letter-spacing: 0.02em;
    }
    100% {
        opacity: 0.9;
        transform: translateY(0) scale(1);
        filter: blur(0px);
        letter-spacing: 0em;
    }
}

.cta-button {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease-out 0.4s both;
    position: relative;
    overflow: hidden;
}

/* CTA按钮滚动时的特殊效果 */
.cta-button.visible {
    animation: ctaButtonReveal 2.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.3), transparent);
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    border-radius: 50%;
    z-index: -1;
}

.cta-button.visible::after {
    animation: buttonPulseExpand 2s ease-out 0.5s forwards;
}

@keyframes ctaButtonReveal {
    0% {
        opacity: 0;
        transform: translateY(80px) scale(0.7) rotateZ(-10deg);
        filter: blur(3px);
        box-shadow: 0 0 0 rgba(255,255,255,0);
    }
    20% {
        opacity: 0.3;
        transform: translateY(50px) scale(0.85) rotateZ(-5deg);
        filter: blur(2px);
    }
    40% {
        opacity: 0.6;
        transform: translateY(20px) scale(1.1) rotateZ(2deg);
        filter: blur(1px);
        box-shadow: 0 5px 20px rgba(255,255,255,0.2);
    }
    70% {
        opacity: 0.8;
        transform: translateY(-5px) scale(0.98) rotateZ(-1deg);
        filter: blur(0.5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateZ(0deg);
        filter: blur(0px);
        box-shadow: 0 10px 30px rgba(255,255,255,0.15);
    }
}

@keyframes buttonPulseExpand {
    0% {
        width: 0;
        height: 0;
        opacity: 0;
    }
    50% {
        width: 200px;
        height: 200px;
        opacity: 0.3;
    }
    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero-visual {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.floating-element {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
    opacity: 0;
    transition: all 1s ease-out;
}

/* 浮动元素滚动时的炫酷效果 */
.floating-element.visible {
    opacity: 0.8;
    animation: floatingElementReveal 3s cubic-bezier(0.23, 1, 0.32, 1) forwards,
               continuousFloatAdvanced 8s ease-in-out infinite 3s;
}

@keyframes floatingElementReveal {
    0% {
        opacity: 0;
        transform: translateY(200px) scale(0.3) rotate(180deg);
        filter: blur(5px);
        box-shadow: 0 0 0 rgba(255,255,255,0);
    }
    25% {
        opacity: 0.2;
        transform: translateY(100px) scale(0.6) rotate(90deg);
        filter: blur(3px);
        box-shadow: 0 0 20px rgba(255,255,255,0.1);
    }
    50% {
        opacity: 0.5;
        transform: translateY(50px) scale(1.2) rotate(45deg);
        filter: blur(1px);
        box-shadow: 0 0 40px rgba(255,255,255,0.2);
    }
    75% {
        opacity: 0.7;
        transform: translateY(10px) scale(0.9) rotate(10deg);
        filter: blur(0.5px);
    }
    100% {
        opacity: 0.8;
        transform: translateY(0) scale(1) rotate(0deg);
        filter: blur(0px);
        box-shadow: 0 0 30px rgba(255,255,255,0.15);
    }
}

@keyframes continuousFloatAdvanced {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        box-shadow: 0 0 30px rgba(255,255,255,0.15);
    }
    16% {
        transform: translateY(-25px) rotate(30deg) scale(1.1);
        box-shadow: 0 5px 40px rgba(255,255,255,0.25);
    }
    33% {
        transform: translateY(-15px) rotate(-20deg) scale(0.9);
        box-shadow: 0 10px 35px rgba(255,255,255,0.2);
    }
    50% {
        transform: translateY(-35px) rotate(15deg) scale(1.05);
        box-shadow: 0 15px 45px rgba(255,255,255,0.3);
    }
    66% {
        transform: translateY(-20px) rotate(-10deg) scale(0.95);
        box-shadow: 0 8px 30px rgba(255,255,255,0.18);
    }
    83% {
        transform: translateY(-30px) rotate(25deg) scale(1.08);
        box-shadow: 0 12px 38px rgba(255,255,255,0.22);
    }
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    width: 150px;
    height: 150px;
}

.floating-element:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
    width: 80px;
    height: 80px;
}

/* 通用section样式 */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #1d1d1f;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    /* 增强标题清晰度 */
    filter: contrast(1.2) brightness(1.1);
    opacity: 1;
}

.section-header p {
    font-size: 18px;
    color: #86868b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Neo About Us - 未来科技风格 */
.neo-about {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #0a0a0f;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

/* 动态背景层系统 */
.neo-about-bg-layers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.neo-about-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        #0a0a0f 0%,
        #1a1a2e 25%,
        #16213e 50%,
        #0f3460 75%,
        #533483 100%
    );
    animation: aboutGradientShift 15s ease-in-out infinite;
}

.neo-about-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

#aboutParticleCanvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* 几何网格系统 */
.neo-about-grid-system {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.grid-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.grid-layer.layer-1 .grid-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
    animation: aboutGridPulse 8s ease-in-out infinite;
}

.grid-layer.layer-1 .grid-line.horizontal {
    width: 100%;
    height: 1px;
}

.grid-layer.layer-1 .grid-line.horizontal:nth-child(1) {
    top: 25%;
    animation-delay: 0s;
}

.grid-layer.layer-1 .grid-line.horizontal:nth-child(2) {
    top: 75%;
    animation-delay: 2s;
}

.grid-layer.layer-1 .grid-line.vertical {
    width: 1px;
    height: 100%;
}

.grid-layer.layer-1 .grid-line.vertical:nth-child(3) {
    left: 20%;
    animation-delay: 1s;
}

.grid-layer.layer-1 .grid-line.vertical:nth-child(4) {
    left: 80%;
    animation-delay: 3s;
}

.grid-layer.layer-2 .grid-pattern {
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.1) 2px, transparent 2px);
    background-size: 60px 60px;
    animation: aboutPatternFloat 12s linear infinite;
}

/* 全息数据流 */
.neo-about-datastream {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
}

.stream-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #8b5cf6, transparent);
    height: 2px;
    animation: aboutDataFlow 10s linear infinite;
}

.stream-line.line-1 {
    top: 30%;
    width: 60%;
    left: -60%;
    animation-delay: 0s;
}

.stream-line.line-2 {
    top: 50%;
    width: 40%;
    right: -40%;
    animation-delay: 3s;
    animation-direction: reverse;
}

.stream-line.line-3 {
    top: 70%;
    width: 80%;
    left: -80%;
    animation-delay: 6s;
}

.stream-pulse {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle, #3b82f6, transparent);
    animation: aboutStreamPulse 4s ease-in-out infinite;
}

.stream-pulse.pulse-1 {
    top: 25%;
    left: 15%;
    animation-delay: 0s;
}

.stream-pulse.pulse-2 {
    top: 75%;
    right: 20%;
    animation-delay: 2s;
}

/* 主内容容器 */
.neo-about-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* 装饰性科技元素 */
.neo-about-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.tech-ornament {
    position: absolute;
    opacity: 0.6;
}

.tech-ornament.ornament-1 {
    top: 10%;
    left: 10%;
    width: 80px;
    height: 80px;
    animation: aboutOrnamentFloat 15s ease-in-out infinite;
}

.ornament-core {
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, #3b82f6, #1e40af);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: aboutCoreRotate 8s linear infinite;
}

.ornament-rings {
    position: relative;
    width: 100%;
    height: 100%;
}

.ornament-rings .ring {
    position: absolute;
    border: 1px solid rgba(59, 130, 246, 0.5);
    border-radius: 50%;
    animation: aboutRingRotate 12s linear infinite;
}

.ornament-rings .ring:nth-child(1) {
    width: 40px;
    height: 40px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
}

.ornament-rings .ring:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 2s;
    animation-direction: reverse;
}

.tech-ornament.ornament-2 {
    top: 20%;
    right: 15%;
    width: 60px;
    height: 60px;
    animation: aboutOrnamentFloat 18s ease-in-out infinite reverse;
}

.ornament-prism {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, #8b5cf6, transparent);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: aboutPrismRotate 10s linear infinite;
}

.data-nodes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.data-nodes .node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #3b82f6, transparent);
    border-radius: 50%;
    animation: aboutNodePulse 3s ease-in-out infinite;
}

.data-nodes .node.node-1 {
    top: 15%;
    left: 25%;
    animation-delay: 0s;
}

.data-nodes .node.node-2 {
    top: 60%;
    left: 70%;
    animation-delay: 1s;
}

.data-nodes .node.node-3 {
    bottom: 20%;
    left: 15%;
    animation-delay: 2s;
}

/* 全息标题系统 */
.neo-about-header {
    position: relative;
    text-align: center;
    margin-bottom: 80px;
}

.holographic-backdrop {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 100px;
    background: linear-gradient(45deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    border-radius: 10px;
    filter: blur(20px);
    animation: aboutBackdropPulse 6s ease-in-out infinite;
}

.section-title-system {
    position: relative;
    z-index: 2;
}

.neo-section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #ffffff;
    position: relative;
    margin: 0;
    opacity: 0;
    animation: aboutTitleReveal 2s ease-out 0.5s forwards;
}

.title-text {
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #3b82f6);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: aboutTitleGradient 4s ease-in-out infinite;
}

/* 已移除 .title-text::before 的白字移动效果 */

.title-hologram {
    position: relative;
    display: inline-block;
    /* 移除模糊效果，增强标题清晰度 */
    filter: none;
    transform: none;
    opacity: 1;
    background: transparent;
    /* 保留微妙的动画效果但不影响清晰度 */
    animation: titleEnhancedGlow 3s ease-in-out infinite;
}

.title-scan-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.6), transparent);
    animation: aboutTitleScan 4s ease-in-out infinite;
}

/* 内容展示系统 */
.neo-about-content {
    position: relative;
}

/* 主描述文本系统 */
.neo-about-text-system {
    position: relative;
    margin-bottom: 100px;
    text-align: center;
}

.text-backdrop-effects {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: calc(100% + 60px);
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.05), transparent);
    border-radius: 20px;
    filter: blur(30px);
    animation: aboutTextBackdrop 8s ease-in-out infinite;
}

.text-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    opacity: 0;
    animation: aboutTextReveal 2s ease-out 1s forwards;
}

.neo-about-description {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    position: relative;
}

.text-glow-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    border-radius: 20px;
    opacity: 0;
    animation: aboutTextGlow 6s ease-in-out infinite;
}

.text-frame-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.frame-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid #3b82f6;
    opacity: 0.6;
    animation: aboutFrameCorner 4s ease-in-out infinite;
}

.frame-corner.top-left {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
    animation-delay: 0s;
}

.frame-corner.top-right {
    top: -2px;
    right: -2px;
    border-left: none;
    border-bottom: none;
    animation-delay: 1s;
}

.frame-corner.bottom-left {
    bottom: -2px;
    left: -2px;
    border-right: none;
    border-top: none;
    animation-delay: 2s;
}

.frame-corner.bottom-right {
    bottom: -2px;
    right: -2px;
    border-left: none;
    border-top: none;
    animation-delay: 3s;
}

/* 特性展示网格系统 */
.neo-features-matrix {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.neo-feature-node {
    position: relative;
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: translateY(50px);
    animation: aboutNodeReveal 1s ease-out forwards;
}

.neo-feature-node:nth-child(1) { animation-delay: 1.5s; }
.neo-feature-node:nth-child(2) { animation-delay: 1.8s; }
.neo-feature-node:nth-child(3) { animation-delay: 2.1s; }
.neo-feature-node:nth-child(4) { animation-delay: 2.4s; }

.neo-feature-node:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(139, 92, 246, 0.6);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3);
}

/* 节点背景效果 */
.node-bg-system {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.node-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.1) 0%, 
        rgba(139, 92, 246, 0.05) 50%, 
        rgba(59, 130, 246, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.neo-feature-node:hover .node-gradient {
    opacity: 1;
}

.node-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2), transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    animation: aboutNodePulseExpand 4s ease-in-out infinite;
}

.node-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1), transparent 50%);
    opacity: 0;
    animation: aboutNodeGlow 6s ease-in-out infinite;
}

/* 全息图标系统 */
.holographic-icon-system {
    position: relative;
    text-align: center;
    margin-bottom: 30px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-hologram {
    position: relative;
    z-index: 2;
}

.icon-core {
    font-size: 48px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
    animation: aboutIconFloat 4s ease-in-out infinite;
}

.icon-projection {
    position: absolute;
    top: 2px;
    left: 2px;
    font-size: 48px;
    color: rgba(139, 92, 246, 0.3);
    z-index: 1;
    animation: aboutIconProjection 3s ease-in-out infinite;
}

.icon-distortion {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: aboutIconDistortion 2s ease-in-out infinite;
}

.icon-energy-field {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: aboutEnergyField 8s linear infinite;
}

/* 内容投影系统 */
.content-projection {
    position: relative;
    z-index: 2;
    text-align: center;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
    /* 增强标题清晰度 */
    filter: contrast(1.2) brightness(1.1);
    opacity: 1;
}

.title-projection {
    color: rgba(255, 255, 255, 0.95);
    background: linear-gradient(90deg, #ffffff, #3b82f6, #ffffff);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: aboutTitleProjection 5s ease-in-out infinite;
}

.title-underline {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transition: width 0.6s ease;
}

.neo-feature-node:hover .title-underline {
    width: 100%;
}

.feature-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 1rem;
}

/* 节点连接效果 */
.node-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.connection-point {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, #3b82f6, transparent);
    border-radius: 50%;
    opacity: 0;
    animation: aboutConnectionPoint 3s ease-in-out infinite;
}

.connection-point.point-1 {
    top: 20px;
    left: 20px;
    animation-delay: 0s;
}

.connection-point.point-2 {
    top: 20px;
    right: 20px;
    animation-delay: 0.5s;
}

.connection-point.point-3 {
    bottom: 20px;
    left: 20px;
    animation-delay: 1s;
}

.connection-point.point-4 {
    bottom: 20px;
    right: 20px;
    animation-delay: 1.5s;
}

/* 交互波纹效果 */
.interaction-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3), transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
}

.neo-feature-node:active .interaction-ripple {
    animation: aboutRippleExpand 0.8s ease-out;
}

/* 矩阵连接线系统 */
.matrix-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.connection-svg {
    width: 100%;
    height: 100%;
    opacity: 0.4;
}

/* 全息扫描效果 */
.neo-about-scan-system {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.horizontal-scanner,
.vertical-scanner,
.diagonal-scanner {
    position: absolute;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
    opacity: 0.4;
}

.horizontal-scanner {
    width: 100%;
    height: 2px;
    top: 0;
    animation: aboutHorizontalScan 12s linear infinite;
}

.vertical-scanner {
    width: 2px;
    height: 100%;
    left: 0;
    background: linear-gradient(0deg, transparent, #8b5cf6, transparent);
    animation: aboutVerticalScan 15s linear infinite;
}

.diagonal-scanner {
    width: 141%;
    height: 2px;
    top: 0;
    left: -20%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.6), transparent);
    transform: rotate(45deg);
    animation: aboutDiagonalScan 18s linear infinite;
}

/* 边界数据可视化 */
.neo-about-boundary-viz {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.boundary-point {
    position: absolute;
    width: 12px;
    height: 12px;
    border: 2px solid #3b82f6;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.8), transparent);
    animation: aboutBoundaryPulse 4s ease-in-out infinite;
}

.boundary-point.point-1 {
    top: 50px;
    left: 50px;
    animation-delay: 0s;
}

.boundary-point.point-2 {
    top: 50px;
    right: 50px;
    animation-delay: 1s;
}

.boundary-point.point-3 {
    bottom: 50px;
    left: 50px;
    animation-delay: 2s;
}

.boundary-point.point-4 {
    bottom: 50px;
    right: 50px;
    animation-delay: 3s;
}

.boundary-line {
    position: absolute;
    background: linear-gradient(90deg, 
        rgba(59, 130, 246, 0.8), 
        rgba(139, 92, 246, 0.6), 
        rgba(59, 130, 246, 0.8));
    animation: aboutBoundaryFlow 6s ease-in-out infinite;
}

.boundary-line.line-1 {
    top: 50px;
    left: 62px;
    right: 62px;
    height: 2px;
    animation-delay: 0.5s;
}

.boundary-line.line-2 {
    bottom: 50px;
    left: 62px;
    right: 62px;
    height: 2px;
    animation-delay: 2.5s;
}

/* 关键帧动画 */
@keyframes aboutGradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes aboutGridPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.02);
    }
}

@keyframes aboutPatternFloat {
    0% {
        transform: translateX(0) translateY(0);
    }
    25% {
        transform: translateX(10px) translateY(-5px);
    }
    50% {
        transform: translateX(0) translateY(-10px);
    }
    75% {
        transform: translateX(-10px) translateY(-5px);
    }
    100% {
        transform: translateX(0) translateY(0);
    }
}

@keyframes aboutDataFlow {
    0% {
        transform: translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(100vw);
        opacity: 0;
    }
}

@keyframes aboutStreamPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

@keyframes aboutOrnamentFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) rotate(120deg);
    }
    66% {
        transform: translateY(5px) rotate(240deg);
    }
}

@keyframes aboutCoreRotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes aboutRingRotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes aboutPrismRotate {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

@keyframes aboutNodePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

@keyframes aboutBackdropPulse {
    0%, 100% {
        opacity: 0.3;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translateX(-50%) scale(1.1);
    }
}

@keyframes aboutTitleReveal {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.8);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0px);
    }
}

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

/* 已移除 aboutTitleShimmer 动画关键帧 */

@keyframes aboutHologramFlicker {
    0%, 98%, 100% {
        opacity: 0.5;
    }
    1%, 3% {
        opacity: 0.8;
    }
    2% {
        opacity: 0.2;
    }
}

@keyframes aboutTitleScan {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: -100%;
    }
}

@keyframes aboutTextBackdrop {
    0%, 100% {
        opacity: 0.3;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translateX(-50%) scale(1.05);
    }
}

@keyframes aboutTextReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0px);
    }
}

@keyframes aboutTextGlow {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 0.4;
    }
}

@keyframes aboutFrameCorner {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes aboutNodeReveal {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes aboutNodePulseExpand {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

@keyframes aboutNodeGlow {
    0%, 100% {
        opacity: 0;
        transform: rotate(0deg);
    }
    50% {
        opacity: 0.3;
        transform: rotate(180deg);
    }
}

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

@keyframes aboutIconProjection {
    0%, 100% {
        opacity: 0.3;
        transform: translate(2px, 2px);
    }
    50% {
        opacity: 0.6;
        transform: translate(4px, 4px);
    }
}

@keyframes aboutIconDistortion {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes aboutEnergyField {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) rotate(180deg) scale(1.1);
        opacity: 0.4;
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) scale(1);
        opacity: 0.8;
    }
}

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

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

@keyframes aboutRippleExpand {
    0% {
        width: 0;
        height: 0;
        opacity: 0.8;
    }
    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

@keyframes aboutHorizontalScan {
    0% {
        top: -2px;
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

@keyframes aboutVerticalScan {
    0% {
        left: -2px;
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

@keyframes aboutDiagonalScan {
    0% {
        left: -141%;
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

@keyframes aboutBoundaryPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
        box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
    }
}

@keyframes aboutBoundaryFlow {
    0%, 100% {
        opacity: 0.6;
        background-size: 200% 100%;
        background-position: 0% 50%;
    }
    50% {
        opacity: 1;
        background-position: 100% 50%;
    }
}

/* ==================== 产品服务 - Neo量子重构版 ==================== */

/* 产品服务 - Neo未来科技风格 */
.products-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #533483 100%);
    position: relative;
    overflow: hidden;
}

/* 添加科技背景效果 */
.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 119, 198, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* 标题区域 */
.products-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.products-section .section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #3b82f6 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: contrast(1.2) brightness(1.1);
    opacity: 1;
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
}

.products-section .section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 产品网格 */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* 产品卡片 */
.product-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 20px 60px rgba(59, 130, 246, 0.2),
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
}

.product-card:hover::before {
    opacity: 1;
}

/* 产品图片容器 */
.product-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.product-card:hover .product-image::before {
    transform: translateX(100%);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: brightness(0.9) contrast(1.1);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
    filter: brightness(1) contrast(1.2);
}

/* 产品内容样式 */
.product-content {
    position: relative;
    z-index: 2;
}

.product-content h3 {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: contrast(1.2) brightness(1.1);
    opacity: 1;
    transition: all 0.3s ease;
}

.product-card:hover .product-content h3 {
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.product-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 16px;
    transition: color 0.3s ease;
}

.product-card:hover .product-content p {
    color: rgba(255, 255, 255, 0.9);
}

/* 产品网格布局（移除重复样式） */

/* ==================== 动画关键帧 ==================== */

/* 科技产品卡片动画 */
@keyframes neoCardFloat {
    0%, 100% { 
        transform: translateY(0) rotateX(0deg); 
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    50% { 
        transform: translateY(-5px) rotateX(2deg); 
        box-shadow: 
            0 15px 45px rgba(59, 130, 246, 0.15),
            0 8px 32px rgba(0, 0, 0, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }
}

.product-card {
    animation: neoCardFloat 6s ease-in-out infinite;
}

.product-card:nth-child(1) { animation-delay: 0s; }
.product-card:nth-child(2) { animation-delay: 2s; }
.product-card:nth-child(3) { animation-delay: 4s; }

/* 添加科技网格线条效果 */
.products-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    pointer-events: none;
    animation: gridPulse 8s ease-in-out infinite;
}

/* 团队介绍 */
.team {
    background: #f5f5f7;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.team-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info h3 {
    font-size: 24px;
    font-weight: 800;
    color: #1d1d1f;
    margin-bottom: 8px;
    /* 增强标题清晰度 */
    filter: contrast(1.2) brightness(1.1);
    opacity: 1;
}

.team-position {
    font-size: 16px;
    color: #007aff;
    font-weight: 500;
    margin-bottom: 16px;
}

.team-description {
    color: #86868b;
    line-height: 1.6;
}

/* 联系我们 */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-item i {
    font-size: 24px;
    color: #007aff;
    margin-top: 4px;
    width: 24px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 18px;
    font-weight: 800;
    color: #1d1d1f;
    margin-bottom: 8px;
    /* 增强标题清晰度 */
    filter: contrast(1.2) brightness(1.1);
    opacity: 1;
}

.contact-item p {
    color: #86868b;
    line-height: 1.6;
}

.contact-form {
    background: #f5f5f7;
    padding: 40px;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    background: white;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007aff;
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    width: 100%;
    background: #007aff;
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: #0056d6;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 122, 255, 0.3);
}

/* 页脚 */
.footer {
    background: #1d1d1f;
    color: white;
    padding: 60px 0 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-text p {
    color: #86868b;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #86868b;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

/* 返回顶部按钮 */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #007aff;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #0056d6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.4);
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* 滚动动画 */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Home部分滚动动画 */
.scroll-animate {
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.scroll-animate.visible {
    opacity: 1;
}

/* 从下方滑入动画 */
.slide-in-from-bottom {
    transform: translateY(80px) scale(0.9);
    filter: blur(2px);
}

.slide-in-from-bottom.visible {
    transform: translateY(0) scale(1);
    filter: blur(0px);
}

/* 浮动元素进入动画 */
.float-in {
    transform: translateY(100px) scale(0.7) rotate(15deg);
    opacity: 0;
    filter: blur(3px);
}

.float-in.visible {
    transform: translateY(0) scale(1) rotate(0deg);
    opacity: 0.8;
    filter: blur(0px);
    animation: continuousFloat 8s ease-in-out infinite;
}

/* 连续浮动动画 */
@keyframes continuousFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    20% {
        transform: translateY(-15px) rotate(3deg) scale(1.05);
    }
    40% {
        transform: translateY(-25px) rotate(-2deg) scale(0.98);
    }
    60% {
        transform: translateY(-18px) rotate(1deg) scale(1.02);
    }
    80% {
        transform: translateY(-30px) rotate(-1deg) scale(0.96);
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    /* Banner轮播图响应式 */
    .banner-carousel {
        height: 100vh; /* 完全全屏高度 */
        width: 100vw; /* 完全全屏宽度 */
        margin: 0;
        padding: 0;
    }
    
    .slide-title {
        font-size: 2.8rem;
        margin-bottom: 1rem;
        filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
        text-shadow: 
            0 0 25px rgba(255, 255, 255, 0.6),
            0 0 50px rgba(255, 255, 255, 0.3),
            2px 2px 8px rgba(0, 0, 0, 0.4);
    }
    
    .slide-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.8rem;
        line-height: 1.6;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4), 0 0 12px rgba(255, 255, 255, 0.15);
    }
    
    .slide-cta {
        padding: 16px 32px;
        font-size: 15px;
        border-radius: 40px;
        box-shadow: 
            0 10px 30px rgba(0, 122, 255, 0.5), 
            0 0 0 1px rgba(255, 255, 255, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    
    /* 移动端优化动画速度和性能 */
    .carousel-slide {
        transition: all 2.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        will-change: transform, opacity, filter;
    }
    
    .slide-background {
        transition: all 2.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        will-change: transform, filter, opacity;
    }
    
    .hero {
        animation: heroMasterFadeIn 3.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    }
    
    .hero-content {
        animation: heroContentReveal 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s forwards;
    }
    
    .slide-content {
        padding: 40px 20px;
        backdrop-filter: blur(15px) saturate(150%);
        border-radius: 25px;
        max-width: 95%;
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 
            0 25px 50px rgba(0, 0, 0, 0.25),
            inset 0 1px 0 rgba(255, 255, 255, 0.15),
            0 0 40px rgba(255, 255, 255, 0.08);
    }
    
    .carousel-arrow {
        padding: 15px 20px;
        font-size: 1.4rem;
        min-width: 50px;
        min-height: 50px;
    }
    
    .carousel-prev {
        left: 15px;
    }
    
    .carousel-next {
        right: 15px;
    }
    
    .carousel-dots {
        bottom: 20px;
    }

    /* 导航菜单响应式 */
    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 60px;
        transition: left 0.3s ease;
        gap: 20px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .language-switcher {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        padding-top: 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    /* Banner轮播图小屏幕响应式 */
    .banner-carousel {
        height: 100vh; /* 小屏幕也完全全屏高度 */
        width: 100vw; /* 完全全屏宽度 */
        margin: 0;
        padding: 0;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-subtitle {
        font-size: 0.9rem;
    }
    
    .carousel-arrow {
        padding: 12px 16px;
        font-size: 1.2rem;
        min-width: 45px;
        min-height: 45px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }

    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .feature-card,
    .product-card,
    .team-card {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

/* 打印样式 */
@media print {
    .navbar,
    .back-to-top {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 40px 0;
    }
    
    section {
        padding: 40px 0;
        break-inside: avoid;
    }
} 

/* ============================================
   Neo Banner 移动端适配
   ============================================ */

@media (max-width: 768px) {
    .neo-banner {
        height: 100vh;
    }
    
    .neo-slide-content {
        padding: 30px 20px;
        max-width: 100%;
    }
    
    .neo-text-reveal {
        opacity: 0;
        transform: translateY(50px) rotateX(20deg);
        transition: all 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .neo-main-title {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 15px;
    }
    

    
    .neo-cta-section {
        opacity: 0;
        transform: translateY(30px);
        transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s;
        flex-direction: column;
        gap: 15px;
    }
    
    .neo-cta-primary {
        width: 100%;
        max-width: 280px;
        padding: 15px 25px;
        font-size: 16px;
    }
    
    /* 导航系统移动端适配 */
    .neo-nav-sidebar {
        display: none;
    }
    
    .neo-scroll-indicator {
        display: none;
    }
    
    /* 装饰元素移动端优化 */
    .neo-decorative-elements {
        opacity: 0.3;
    }
    
    .neo-floating-shapes {
        display: none;
    }
    
    .neo-code-snippet {
        font-size: 10px;
        padding: 8px;
        max-width: 120px;
    }
    
    /* 背景效果优化 */
    .neo-bg-mesh, .neo-bg-orbs {
        opacity: 0.2;
        filter: blur(2px);
    }
    
    .neo-bg-overlay {
        background: 
            linear-gradient(135deg, rgba(10, 10, 15, 0.95) 0%, rgba(26, 26, 46, 0.9) 100%),
            radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
    }
}

@media (max-width: 480px) {
    .neo-main-title {
        font-size: 2rem;
    }
    
    .neo-slide-content {
        padding: 20px 15px;
    }
    
    .neo-cta-primary {
        padding: 12px 20px;
        font-size: 15px;
    }
    

} 

/* ============================================
   全新Neo Home设计 - 未来科技风格
   ============================================ */

.neo-home {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3a 25%, #2d1b69 50%, #0f3460 75%, #1a0033 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

/* 多层背景系统 */
.neo-home-bg-layers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.neo-home-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(147, 51, 234, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(168, 85, 247, 0.35) 0%, transparent 50%),
        radial-gradient(circle at 90% 70%, rgba(34, 197, 94, 0.2) 0%, transparent 50%);
    animation: homeGradientShift 25s ease-in-out infinite;
}

.neo-home-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

#homeParticleCanvas {
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

/* 几何网格 */
.neo-home-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.grid-line {
    position: absolute;
    background: linear-gradient(90deg, transparent 0%, rgba(59, 130, 246, 0.3) 50%, transparent 100%);
    animation: gridPulse 12s ease-in-out infinite;
}

.grid-line.horizontal {
    width: 100%;
    height: 1px;
}

.grid-line.horizontal:nth-child(1) {
    top: 25%;
    animation-delay: 0s;
}

.grid-line.horizontal:nth-child(2) {
    top: 75%;
    animation-delay: -4s;
}

.grid-line.vertical {
    width: 1px;
    height: 100%;
    background: linear-gradient(0deg, transparent 0%, rgba(147, 51, 234, 0.3) 50%, transparent 100%);
}

.grid-line.vertical:nth-child(3) {
    left: 20%;
    animation-delay: -2s;
}

.grid-line.vertical:nth-child(4) {
    left: 80%;
    animation-delay: -6s;
}

/* 发光光环 */
.neo-home-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
}

.home-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    animation: homeOrbFloat 15s ease-in-out infinite;
}

.home-orb.orb-1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #3b82f6 0%, transparent 70%);
    top: 15%;
    right: 15%;
    animation-delay: 0s;
}

.home-orb.orb-2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
    bottom: 25%;
    left: 10%;
    animation-delay: -5s;
}

.home-orb.orb-3 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, #22c55e 0%, transparent 70%);
    top: 40%;
    left: 50%;
    animation-delay: -10s;
}

/* 数据流效果 */
.neo-home-dataflow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.dataflow-line {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(180deg, transparent 0%, #00ffff 50%, transparent 100%);
    animation: dataflowMove 8s linear infinite;
    opacity: 0.7;
}

.dataflow-line.line-1 {
    left: 30%;
    animation-delay: 0s;
}

.dataflow-line.line-2 {
    left: 60%;
    animation-delay: -3s;
}

.dataflow-line.line-3 {
    left: 85%;
    animation-delay: -6s;
}

/* 主内容容器 */
.neo-home-container {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* 装饰性几何元素 */
.neo-home-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.deco-shape {
    position: absolute;
    opacity: 0.4;
    animation: shapeFloat 10s ease-in-out infinite;
}

.deco-shape.triangle-1 {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 25px solid #3b82f6;
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.deco-shape.circle-1 {
    width: 20px;
    height: 20px;
    border: 2px solid #8b5cf6;
    border-radius: 50%;
    top: 70%;
    right: 20%;
    animation-delay: -3s;
}

.deco-shape.hexagon-1 {
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #22c55e, #059669);
    clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
    bottom: 30%;
    left: 20%;
    animation-delay: -6s;
}

.deco-shape.line-1,
.deco-shape.line-2 {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
}

.deco-shape.line-1 {
    top: 35%;
    right: 30%;
    animation-delay: -2s;
}

.deco-shape.line-2 {
    bottom: 45%;
    left: 25%;
    animation-delay: -8s;
}

/* 核心内容区域 */
.neo-home-content {
    position: relative;
    text-align: center;
    color: white;
    z-index: 10;
    width: 100%;
    max-width: 900px;
}

/* 全息标题系统 */
.neo-home-title-system {
    position: relative;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(80px) rotateX(20deg);
    animation: homeTitleReveal 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.title-backdrop {
    position: absolute;
    top: -20px;
    left: -40px;
    right: -40px;
    bottom: -20px;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    z-index: -1;
}

.neo-home-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.02em;
    position: relative;
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #3b82f6 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* 增强标题清晰度 */
    filter: contrast(1.2) brightness(1.1);
    opacity: 1;
}

.title-segment {
    position: relative;
    display: inline-block;
}

.title-segment::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00ffff 0%, #ff00ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    animation: holographicFlicker 4s ease-in-out infinite;
}

.title-scan-line {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.8), transparent);
    animation: titleScan 3s ease-in-out infinite;
}

/* 全息副标题 */
.neo-home-subtitle-system {
    position: relative;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(60px) scale(0.9);
    animation: homeSubtitleReveal 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
}

.subtitle-container {
    position: relative;
    padding: 20px 30px;
    border-radius: 15px;
    background: rgba(147, 51, 234, 0.1);
    border: 1px solid rgba(147, 51, 234, 0.3);
    backdrop-filter: blur(15px);
}

.neo-home-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 300;
    margin: 0;
    opacity: 0.9;
    line-height: 1.6;
    color: #e2e8f0;
    text-shadow: 0 0 20px rgba(147, 51, 234, 0.3);
}

.subtitle-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6, #22c55e, #3b82f6);
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    animation: subtitleGlow 6s ease-in-out infinite;
}

/* 未来感交互按钮 */
.neo-home-cta-system {
    position: relative;
    opacity: 0;
    transform: translateY(80px) scale(0.8);
    animation: homeCtaReveal 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s forwards;
}

.neo-home-cta {
    position: relative;
    background: transparent;
    border: 2px solid rgba(59, 130, 246, 0.5);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-bg-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(147, 51, 234, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -2;
}

.cta-border-animation {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6, #22c55e, #3b82f6);
    border-radius: 52px;
    opacity: 0;
    z-index: -1;
    animation: borderRotate 3s linear infinite;
}

.cta-text {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.cta-hover-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.cta-click-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.6), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: -1;
}

.neo-home-cta:hover {
    border-color: rgba(59, 130, 246, 0.8);
    box-shadow: 
        0 0 30px rgba(59, 130, 246, 0.4),
        inset 0 0 30px rgba(59, 130, 246, 0.1);
    transform: translateY(-3px);
}

.neo-home-cta:hover .cta-bg-effect {
    opacity: 1;
}

.neo-home-cta:hover .cta-border-animation {
    opacity: 1;
}

.neo-home-cta:hover .cta-text {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.neo-home-cta:active .cta-click-ripple {
    animation: ctaRipple 0.6s ease-out;
}

/* 3D浮动元素系统 */
.neo-home-floating-system {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.floating-tech-element {
    position: absolute;
    opacity: 0.8;
    animation: techElementFloat 12s ease-in-out infinite;
}

.floating-tech-element.element-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-tech-element.element-2 {
    top: 60%;
    right: 15%;
    animation-delay: -4s;
}

.floating-tech-element.element-3 {
    bottom: 25%;
    left: 20%;
    animation-delay: -8s;
}

/* 技术核心元素 */
.tech-core {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, #3b82f6, #1e40af);
    border-radius: 50%;
    position: relative;
    animation: coreRotate 8s linear infinite;
}

.tech-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring {
    position: absolute;
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    animation: ringRotate 6s linear infinite;
}

.ring.ring-1 {
    width: 80px;
    height: 80px;
    top: -40px;
    left: -40px;
    animation-delay: 0s;
}

.ring.ring-2 {
    width: 100px;
    height: 100px;
    top: -50px;
    left: -50px;
    animation-delay: -2s;
}

.ring.ring-3 {
    width: 120px;
    height: 120px;
    top: -60px;
    left: -60px;
    animation-delay: -4s;
}

/* 技术立方体 */
.tech-cube {
    width: 50px;
    height: 50px;
    position: relative;
    transform-style: preserve-3d;
    animation: cubeRotate 10s linear infinite;
}

.cube-face {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(147, 51, 234, 0.3);
    border: 1px solid rgba(147, 51, 234, 0.6);
}

.cube-face.front { transform: rotateY(0deg) translateZ(25px); }
.cube-face.back { transform: rotateY(180deg) translateZ(25px); }
.cube-face.left { transform: rotateY(-90deg) translateZ(25px); }
.cube-face.right { transform: rotateY(90deg) translateZ(25px); }
.cube-face.top { transform: rotateX(90deg) translateZ(25px); }
.cube-face.bottom { transform: rotateX(-90deg) translateZ(25px); }

/* 技术钻石 */
.tech-diamond {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #22c55e, #059669);
    transform: rotate(45deg);
    position: relative;
    animation: diamondSpin 8s ease-in-out infinite;
}

.diamond-facet {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(34, 197, 94, 0.5);
    border: 1px solid rgba(34, 197, 94, 0.8);
}

.diamond-facet:nth-child(1) { top: 0; left: 0; }
.diamond-facet:nth-child(2) { top: 0; right: 0; }
.diamond-facet:nth-child(3) { bottom: 0; left: 0; }
.diamond-facet:nth-child(4) { bottom: 0; right: 0; }

/* 全息扫描线 */
.neo-home-scan-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 8;
}

.scan-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.6), transparent);
    opacity: 0.7;
}

.scan-line.horizontal-scan {
    width: 100%;
    height: 2px;
    top: 50%;
    animation: horizontalScan 8s ease-in-out infinite;
}

.scan-line.vertical-scan {
    width: 2px;
    height: 100%;
    left: 50%;
    background: linear-gradient(0deg, transparent, rgba(255, 0, 255, 0.6), transparent);
    animation: verticalScan 10s ease-in-out infinite;
}

.corner-frames {
    position: absolute;
    top: 50px;
    left: 50px;
    right: 50px;
    bottom: 50px;
}

.corner-frame {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid rgba(0, 255, 255, 0.6);
    opacity: 0.8;
}

.corner-frame.top-left {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.corner-frame.top-right {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
}

.corner-frame.bottom-left {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

.corner-frame.bottom-right {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

/* 数据可视化边框 */
.neo-home-data-viz {
    position: absolute;
    top: 80px;
    left: 80px;
    right: 80px;
    bottom: 80px;
    pointer-events: none;
    z-index: 9;
}

.data-point {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
    animation: dataPointPulse 3s ease-in-out infinite;
}

.data-point.point-1 {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.data-point.point-2 {
    top: 0;
    right: 0;
    animation-delay: -0.75s;
}

.data-point.point-3 {
    bottom: 0;
    right: 0;
    animation-delay: -1.5s;
}

.data-point.point-4 {
    bottom: 0;
    left: 0;
    animation-delay: -2.25s;
}

.data-connection {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, #00ffff, transparent, #00ffff);
    opacity: 0.5;
    animation: dataFlowPulse 4s ease-in-out infinite;
}

.data-connection.line-1-2 {
    top: 4px;
    left: 8px;
    right: 8px;
    animation-delay: 0s;
}

.data-connection.line-2-3 {
    top: 4px;
    right: 4px;
    bottom: 4px;
    width: 1px;
    height: auto;
    background: linear-gradient(0deg, #00ffff, transparent, #00ffff);
    animation-delay: -1s;
}

.data-connection.line-3-4 {
    bottom: 4px;
    left: 8px;
    right: 8px;
    animation-delay: -2s;
}

/* ============================================
   动画关键帧
   ============================================ */

@keyframes homeGradientShift {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 0.8;
    }
    25% { 
        transform: scale(1.1) rotate(90deg);
        opacity: 0.6;
    }
    50% { 
        transform: scale(0.9) rotate(180deg);
        opacity: 1;
    }
    75% { 
        transform: scale(1.05) rotate(270deg);
        opacity: 0.7;
    }
}

@keyframes gridPulse {
    0%, 100% { 
        opacity: 0.3; 
        transform: scaleX(1);
    }
    50% { 
        opacity: 0.8; 
        transform: scaleX(1.05);
    }
}

@keyframes homeOrbFloat {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    33% { 
        transform: translate(-20px, -30px) scale(1.1);
        opacity: 0.8;
    }
    66% { 
        transform: translate(20px, -15px) scale(0.9);
        opacity: 0.4;
    }
}

@keyframes dataflowMove {
    0% { 
        transform: translateY(-100vh);
        opacity: 0;
    }
    10%, 90% { 
        opacity: 1;
    }
    100% { 
        transform: translateY(100vh);
        opacity: 0;
    }
}

@keyframes shapeFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
        opacity: 0.4;
    }
    50% { 
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.8;
    }
}

@keyframes homeTitleReveal {
    0% {
        opacity: 0;
        transform: translateY(80px) rotateX(20deg) scale(0.9);
        filter: blur(10px);
    }
    50% {
        opacity: 0.7;
        transform: translateY(20px) rotateX(5deg) scale(1.02);
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg) scale(1);
        filter: blur(0px);
    }
}

@keyframes holographicFlicker {
    0%, 100% { opacity: 0; }
    10% { opacity: 0.3; }
    20% { opacity: 0; }
    30% { opacity: 0.7; }
    40% { opacity: 0; }
    50% { opacity: 0.5; }
    60% { opacity: 0; }
    70% { opacity: 0.8; }
    80% { opacity: 0; }
    90% { opacity: 0.4; }
}

@keyframes titleScan {
    0% { left: -100%; }
    25% { left: 100%; }
    50% { left: 100%; }
    75% { left: -100%; }
    100% { left: -100%; }
}

@keyframes homeSubtitleReveal {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.9);
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0px);
    }
}

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

@keyframes homeCtaReveal {
    0% {
        opacity: 0;
        transform: translateY(80px) scale(0.8) rotateZ(-5deg);
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateZ(0deg);
        filter: blur(0px);
    }
}

@keyframes borderRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes ctaRipple {
    0% {
        width: 0;
        height: 0;
        opacity: 0.8;
    }
    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

@keyframes techElementFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.8;
    }
    33% { 
        transform: translateY(-30px) rotate(120deg) scale(1.1);
        opacity: 1;
    }
    66% { 
        transform: translateY(-15px) rotate(240deg) scale(0.9);
        opacity: 0.6;
    }
}

@keyframes coreRotate {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes ringRotate {
    0% { transform: rotate(0deg) scale(1); }
    100% { transform: rotate(-360deg) scale(1); }
}

@keyframes cubeRotate {
    0% { transform: rotateX(0deg) rotateY(0deg); }
    100% { transform: rotateX(360deg) rotateY(360deg); }
}

@keyframes diamondSpin {
    0%, 100% { 
        transform: rotate(45deg) scale(1);
        filter: brightness(1);
    }
    50% { 
        transform: rotate(225deg) scale(1.2);
        filter: brightness(1.5);
    }
}

@keyframes horizontalScan {
    0%, 100% { 
        top: 20%; 
        opacity: 0;
    }
    50% { 
        top: 80%; 
        opacity: 0.7;
    }
}

@keyframes verticalScan {
    0%, 100% { 
        left: 20%; 
        opacity: 0;
    }
    50% { 
        left: 80%; 
        opacity: 0.7;
    }
}

@keyframes dataPointPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
    }
    50% { 
        transform: scale(1.5);
        box-shadow: 0 0 25px rgba(0, 255, 255, 1);
    }
}

@keyframes dataFlowPulse {
    0%, 100% { 
        opacity: 0.5;
        transform: scaleX(1);
    }
    50% { 
        opacity: 1;
        transform: scaleX(1.1);
    }
}

/* ========================================
   Neo Team 样式系统
   ======================================== */

.neo-team {
    position: relative;
    min-height: 100vh;
    padding: 120px 0;
    overflow: hidden;
    background: #0f0f23;
    display: flex;
    align-items: center;
}

.neo-team-bg-layers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.neo-team-gradient-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        #0f0f23 0%, 
        #1e1e3f 25%, 
        #2d2d5a 50%, 
        #1a1a40 75%, 
        #0f0f23 100%);
    animation: teamGradientShift 18s ease-in-out infinite;
}

.neo-team-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.7;
}

#teamParticleCanvas {
    width: 100%;
    height: 100%;
    display: block;
}

.neo-team-neural-network {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.4;
}

.neural-node {
    position: absolute;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, 
        #06b6d4 0%, 
        rgba(6, 182, 212, 0.3) 70%, 
        transparent 100%);
    border-radius: 50%;
    animation: teamNeuralPulse 4s ease-in-out infinite;
}

.neural-node.node-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.neural-node.node-2 {
    top: 30%;
    right: 20%;
    animation-delay: 1s;
}

.neural-node.node-3 {
    bottom: 25%;
    left: 25%;
    animation-delay: 2s;
}

.neural-node.node-4 {
    bottom: 35%;
    right: 15%;
    animation-delay: 3s;
}

.neural-connection {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #06b6d4 50%, 
        transparent 100%);
    animation: teamNeuralFlow 6s linear infinite;
}

.neural-connection.connection-1 {
    width: 25%;
    top: 22%;
    left: 17%;
    transform: rotate(15deg);
    animation-delay: 0s;
}

.neural-connection.connection-2 {
    width: 30%;
    top: 45%;
    left: 35%;
    transform: rotate(-20deg);
    animation-delay: 2s;
}

.neural-connection.connection-3 {
    width: 20%;
    bottom: 30%;
    right: 25%;
    transform: rotate(45deg);
    animation-delay: 4s;
}

.neo-team-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.neo-team-orbs .orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(6, 182, 212, 0.3) 0%, 
        rgba(139, 92, 246, 0.2) 50%, 
        transparent 100%);
    animation: teamOrbFloat 10s ease-in-out infinite;
}

.neo-team-orbs .orb-1 {
    width: 180px;
    height: 180px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.neo-team-orbs .orb-2 {
    width: 140px;
    height: 140px;
    bottom: 15%;
    left: 12%;
    animation-delay: 5s;
}

.neo-team-dataflow {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

.dataflow-stream {
    position: absolute;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #8b5cf6 30%, 
        #06b6d4 70%, 
        transparent 100%);
    background-size: 200% 100%;
    animation: teamDataStream 8s linear infinite;
}

.dataflow-stream.stream-1 {
    width: 50%;
    height: 3px;
    top: 35%;
    left: 10%;
    animation-delay: 0s;
}

.dataflow-stream.stream-2 {
    width: 40%;
    height: 3px;
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.dataflow-stream.stream-3 {
    width: 35%;
    height: 3px;
    bottom: 25%;
    left: 30%;
    animation-delay: 6s;
}

.neo-team-decorations {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.tech-frame {
    position: absolute;
    width: 120px;
    height: 120px;
}

.tech-frame.frame-1 {
    top: 20%;
    left: 5%;
    animation: teamFrameFloat 12s ease-in-out infinite;
}

.frame-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #06b6d4;
}

.frame-corner.corner-1 {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.frame-corner.corner-2 {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
}

.frame-corner.corner-3 {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

.frame-corner.corner-4 {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

.energy-nodes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.energy-node {
    position: absolute;
    width: 15px;
    height: 15px;
    background: #8b5cf6;
    border-radius: 50%;
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.8);
    animation: teamEnergyPulse 3s ease-in-out infinite;
}

.energy-node.node-1 {
    top: 40%;
    right: 8%;
    animation-delay: 0s;
}

.energy-node.node-2 {
    bottom: 30%;
    right: 25%;
    animation-delay: 1.5s;
}

.neo-team-header {
    position: relative;
    text-align: center;
    margin-bottom: 80px;
    z-index: 10;
}

.neo-team-header .holographic-title-system {
    position: relative;
    display: inline-block;
}

.neo-team-header .title-backdrop {
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    opacity: 0.4;
}

.backdrop-neural-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(6, 182, 212, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.1) 2px, transparent 2px);
    background-size: 30px 30px;
    animation: teamNeuralPattern 6s linear infinite;
}

.neo-team-title {
    position: relative;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.neo-team-title .title-hologram {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, 
        #06b6d4 0%, 
        #8b5cf6 50%, 
        #3b82f6 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: teamTitleGradient 4s ease-in-out infinite;
    /* 增强标题清晰度 */
    filter: contrast(1.2) brightness(1.1);
    text-shadow: 0 0 10px rgba(6, 182, 212, 0.3);
    font-weight: 800;
}

.neo-team-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.neo-team-network {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 10;
}

.neo-member-pod {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    transition: all 0.5s ease;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(6, 182, 212, 0.2);
    overflow: hidden;
}

.neo-member-pod:hover {
    transform: translateY(-15px);
    border-color: rgba(6, 182, 212, 0.6);
    box-shadow: 0 25px 50px rgba(6, 182, 212, 0.2);
}

.pod-bg-system {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.pod-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(6, 182, 212, 0.1) 0%, 
        rgba(139, 92, 246, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.neo-member-pod:hover .pod-gradient {
    opacity: 1;
}

.pod-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, 
        rgba(6, 182, 212, 0.15) 0%, 
        transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.neo-member-pod:hover .pod-glow {
    opacity: 1;
}

.pod-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    border: 2px solid transparent;
    background: linear-gradient(135deg, #06b6d4, #8b5cf6) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.neo-member-pod:hover .pod-border {
    opacity: 1;
}

.pod-energy-field {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #06b6d4, #8b5cf6, #3b82f6, #06b6d4);
    background-size: 400% 400%;
    animation: teamPodEnergyField 6s ease-in-out infinite;
    opacity: 0;
    border-radius: 24px;
}

.neo-member-pod:hover .pod-energy-field {
    opacity: 0.1;
}

.holographic-avatar-system {
    position: relative;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.avatar-hologram {
    position: relative;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
}

.avatar-core {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.avatar-core img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.neo-member-pod:hover .avatar-core img {
    transform: scale(1.1);
}

.avatar-projection {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(6, 182, 212, 0.3) 0%, 
        rgba(139, 92, 246, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 3;
}

.neo-member-pod:hover .avatar-projection {
    opacity: 1;
}

.avatar-distortion {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent 0px,
        rgba(255, 255, 255, 0.02) 1px,
        transparent 2px
    );
    animation: teamAvatarDistortion 3s linear infinite;
    z-index: 4;
}

.avatar-scan-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent 0px,
        rgba(6, 182, 212, 0.1) 1px,
        transparent 4px
    );
    animation: teamAvatarScan 4s linear infinite;
    z-index: 5;
}

.avatar-energy-ring {
    position: absolute;
    top: -15px;
    left: -15px;
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    border-radius: 50%;
    border: 3px solid transparent;
    background: linear-gradient(45deg, #06b6d4, #8b5cf6, #3b82f6, #06b6d4) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    background-size: 400% 400%;
    animation: teamEnergyRing 5s ease-in-out infinite;
    opacity: 0;
    z-index: 1;
}

.neo-member-pod:hover .avatar-energy-ring {
    opacity: 1;
}

.avatar-data-points {
    position: absolute;
    width: calc(100% + 60px);
    height: calc(100% + 60px);
    top: -30px;
    left: -30px;
}

.data-point {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #06b6d4;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.8);
    animation: teamDataPointOrbit 8s linear infinite;
}

.data-point.point-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.data-point.point-2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation-delay: 2s;
}

.data-point.point-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 4s;
}

.data-point.point-4 {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation-delay: 6s;
}

.info-projection {
    position: relative;
    z-index: 10;
}

.member-name {
    position: relative;
    margin-bottom: 12px;
}

.name-projection {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    display: block;
    /* 增强标题清晰度 */
    filter: contrast(1.2) brightness(1.1);
    text-shadow: 0 0 10px rgba(6, 182, 212, 0.3);
    opacity: 1;
}

.name-underline {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #06b6d4, #8b5cf6);
    transition: width 0.5s ease;
}

.neo-member-pod:hover .name-underline {
    width: 80%;
}

.member-position {
    margin-bottom: 16px;
}

.position-tag {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, 
        rgba(6, 182, 212, 0.2) 0%, 
        rgba(139, 92, 246, 0.2) 100%);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #06b6d4;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 16px;
}

.network-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.network-connections .connection-point {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #06b6d4;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(6, 182, 212, 0.6);
    animation: teamNetworkPoint 3s ease-in-out infinite;
}

.network-connections .connection-point.point-1 { top: 30px; left: 30px; animation-delay: 0s; }
.network-connections .connection-point.point-2 { top: 30px; right: 30px; animation-delay: 0.75s; }
.network-connections .connection-point.point-3 { bottom: 30px; left: 30px; animation-delay: 1.5s; }
.network-connections .connection-point.point-4 { bottom: 30px; right: 30px; animation-delay: 2.25s; }

.neo-member-pod .interaction-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, 
        rgba(6, 182, 212, 0.4) 0%, 
        transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.neo-member-pod:active .interaction-ripple {
    animation: teamRippleExpand 0.8s ease-out;
}

.team-connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.team-connections .connection-svg {
    width: 100%;
    height: 100%;
}

.neo-team-scan-system {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.neo-team-scan-system .horizontal-scanner {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #06b6d4 50%, 
        transparent 100%);
    top: 0;
    animation: teamHorizontalScan 10s linear infinite;
}

.neo-team-scan-system .vertical-scanner {
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, 
        transparent 0%, 
        #8b5cf6 50%, 
        transparent 100%);
    left: 0;
    animation: teamVerticalScan 12s linear infinite;
}

.neo-team-scan-system .radial-scanner {
    position: absolute;
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid transparent;
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: teamRadialScan 8s linear infinite;
}

/* Team 动画关键帧 */
@keyframes teamGradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes teamNeuralPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.4); }
}

@keyframes teamNeuralFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

@keyframes teamOrbFloat {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.3; }
    50% { transform: translateY(-25px) scale(1.15); opacity: 0.7; }
}

@keyframes teamDataStream {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

@keyframes teamFrameFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes teamEnergyPulse {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

@keyframes teamNeuralPattern {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, 30px); }
}

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

@keyframes teamPodEnergyField {
    0%, 100% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
}

@keyframes teamAvatarDistortion {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

@keyframes teamAvatarScan {
    0% { transform: translateX(0); }
    100% { transform: translateX(20px); }
}

@keyframes teamEnergyRing {
    0%, 100% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
}

@keyframes teamDataPointOrbit {
    0% { transform: rotate(0deg) translateX(90px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(90px) rotate(-360deg); }
}

@keyframes teamNetworkPoint {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.6); }
}

@keyframes teamRippleExpand {
    0% { width: 0; height: 0; opacity: 0.8; }
    100% { width: 400px; height: 400px; opacity: 0; }
}

@keyframes teamHorizontalScan {
    0% { top: -2px; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

@keyframes teamVerticalScan {
    0% { left: -2px; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

@keyframes teamRadialScan {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ========================================
   Neo Contact 样式系统
   ======================================== */

.neo-contact {
    position: relative;
    min-height: 100vh;
    padding: 120px 0;
    overflow: hidden;
    background: #0d1117;
    display: flex;
    align-items: center;
}

.neo-contact-bg-layers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.neo-contact-gradient-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        #0d1117 0%, 
        #161b22 25%, 
        #21262d 50%, 
        #30363d 75%, 
        #0d1117 100%);
    animation: contactGradientShift 20s ease-in-out infinite;
}

.neo-contact-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

#contactParticleCanvas {
    width: 100%;
    height: 100%;
    display: block;
}

.neo-contact-communication-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

.comm-line {
    position: absolute;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #10b981 50%, 
        transparent 100%);
    animation: contactCommPulse 5s ease-in-out infinite;
}

.comm-line.line-1 {
    width: 100%;
    height: 2px;
    top: 25%;
    animation-delay: 0s;
}

.comm-line.line-2 {
    width: 100%;
    height: 2px;
    top: 50%;
    animation-delay: 1.5s;
}

.comm-line.line-3 {
    width: 100%;
    height: 2px;
    top: 75%;
    animation-delay: 3s;
}

.comm-node {
    position: absolute;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, 
        #10b981 0%, 
        rgba(16, 185, 129, 0.4) 70%, 
        transparent 100%);
    border-radius: 50%;
    animation: contactNodePulse 3s ease-in-out infinite;
}

.comm-node.node-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.comm-node.node-2 {
    top: 45%;
    right: 25%;
    animation-delay: 1s;
}

.comm-node.node-3 {
    bottom: 25%;
    left: 30%;
    animation-delay: 2s;
}

.neo-contact-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.neo-contact-orbs .orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(16, 185, 129, 0.3) 0%, 
        rgba(34, 197, 94, 0.2) 50%, 
        transparent 100%);
    animation: contactOrbFloat 12s ease-in-out infinite;
}

.neo-contact-orbs .orb-1 {
    width: 200px;
    height: 200px;
    top: 15%;
    right: 12%;
    animation-delay: 0s;
}

.neo-contact-orbs .orb-2 {
    width: 160px;
    height: 160px;
    bottom: 20%;
    left: 10%;
    animation-delay: 6s;
}

.neo-contact-dataflow {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.transmission-stream {
    position: absolute;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #22c55e 25%, 
        #10b981 50%, 
        #059669 75%, 
        transparent 100%);
    background-size: 200% 100%;
    animation: contactTransmissionFlow 10s linear infinite;
}

.transmission-stream.stream-1 {
    width: 60%;
    height: 3px;
    top: 30%;
    left: 5%;
    animation-delay: 0s;
}

.transmission-stream.stream-2 {
    width: 45%;
    height: 3px;
    top: 65%;
    right: 10%;
    animation-delay: 3s;
}

.transmission-stream.stream-3 {
    width: 50%;
    height: 3px;
    bottom: 20%;
    left: 25%;
    animation-delay: 6s;
}

.neo-contact-decorations {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.signal-tower {
    position: absolute;
    width: 80px;
    height: 80px;
}

.signal-tower.tower-1 {
    top: 10%;
    left: 8%;
    animation: contactTowerFloat 15s ease-in-out infinite;
}

.tower-core {
    position: absolute;
    width: 25px;
    height: 25px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(45deg, #10b981, #22c55e);
    border-radius: 50%;
    animation: contactTowerCore 8s linear infinite;
}

.tower-signal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(16, 185, 129, 0.4);
    border-radius: 50%;
    animation: contactSignalExpand 4s ease-out infinite;
}

.tower-signal.signal-1 {
    width: 40px;
    height: 40px;
    animation-delay: 0s;
}

.tower-signal.signal-2 {
    width: 60px;
    height: 60px;
    animation-delay: 1s;
}

.tower-signal.signal-3 {
    width: 80px;
    height: 80px;
    animation-delay: 2s;
}

.communication-nodes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.comm-decoration {
    position: absolute;
    width: 15px;
    height: 15px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.8);
    animation: contactCommDecoration 4s ease-in-out infinite;
}

.comm-decoration.node-1 {
    top: 35%;
    right: 15%;
    animation-delay: 0s;
}

.comm-decoration.node-2 {
    bottom: 40%;
    right: 30%;
    animation-delay: 2s;
}

.neo-contact-header {
    position: relative;
    text-align: center;
    margin-bottom: 80px;
    z-index: 10;
}

.neo-contact-header .holographic-title-system {
    position: relative;
    display: inline-block;
}

.neo-contact-header .title-backdrop {
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    opacity: 0.4;
}

.backdrop-signal-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, 
            transparent 0px, 
            rgba(16, 185, 129, 0.1) 1px, 
            transparent 10px),
        repeating-linear-gradient(-45deg, 
            transparent 0px, 
            rgba(34, 197, 94, 0.1) 1px, 
            transparent 10px);
    animation: contactSignalPattern 8s linear infinite;
}

.neo-contact-title {
    position: relative;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.neo-contact-title .title-hologram {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, 
        #10b981 0%, 
        #22c55e 50%, 
        #059669 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: contactTitleGradient 5s ease-in-out infinite;
    /* 增强标题清晰度 */
    filter: contrast(1.2) brightness(1.1);
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
    font-weight: 800;
}

.neo-contact-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.neo-contact-matrix {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 10;
}

.neo-contact-info-panel {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(16, 185, 129, 0.2);
    overflow: hidden;
}

.panel-bg-system {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.panel-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.1) 0%, 
        rgba(34, 197, 94, 0.05) 100%);
    opacity: 0.8;
}

.panel-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, 
        rgba(16, 185, 129, 0.15) 0%, 
        transparent 70%);
}

.panel-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    border: 2px solid transparent;
    background: linear-gradient(135deg, #10b981, #22c55e) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0.6;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    z-index: 10;
}

.neo-contact-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(16, 185, 129, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
}

.neo-contact-item:hover {
    transform: translateX(10px);
    border-color: rgba(16, 185, 129, 0.4);
    background: rgba(16, 185, 129, 0.05);
}

.neo-contact-item .holographic-icon-system {
    position: relative;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.neo-contact-item .icon-hologram {
    position: relative;
    width: 100%;
    height: 100%;
}

.neo-contact-item .icon-core {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.2) 0%, 
        rgba(34, 197, 94, 0.1) 100%);
    border-radius: 12px;
    z-index: 2;
}

.neo-contact-item .icon-core i {
    font-size: 24px;
    color: #10b981;
}

.neo-contact-item .icon-projection {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.3) 0%, 
        rgba(34, 197, 94, 0.2) 100%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.neo-contact-item:hover .icon-projection {
    opacity: 1;
}

.neo-contact-item .icon-energy-field {
    position: absolute;
    top: -5px;
    left: -5px;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    border-radius: 12px;
    background: linear-gradient(45deg, #10b981, #22c55e, #059669, #10b981);
    background-size: 400% 400%;
    animation: contactIconEnergyField 6s ease-in-out infinite;
    opacity: 0;
    z-index: 0;
}

.neo-contact-item:hover .icon-energy-field {
    opacity: 0.3;
}

.neo-contact-item .info-projection {
    flex: 1;
}

.neo-contact-item .info-label {
    margin-bottom: 8px;
}

.neo-contact-item .label-hologram {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    display: block;
    /* 增强标题清晰度 */
    filter: contrast(1.2) brightness(1.1);
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
    opacity: 1;
}

.neo-contact-item .info-content {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 16px;
}

.neo-contact-item .interaction-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, 
        rgba(16, 185, 129, 0.4) 0%, 
        transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.neo-contact-item:active .interaction-ripple {
    animation: contactRippleExpand 0.6s ease-out;
}

.neo-contact-form-panel {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(16, 185, 129, 0.2);
    overflow: hidden;
}

.form-panel-bg-system {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.form-panel-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.08) 0%, 
        rgba(34, 197, 94, 0.04) 100%);
}

.form-panel-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, 
        rgba(16, 185, 129, 0.12) 0%, 
        transparent 70%);
}

.form-panel-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    border: 2px solid transparent;
    background: linear-gradient(135deg, #10b981, #22c55e) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0.5;
}

.form-panel-scan-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent 0px,
        rgba(16, 185, 129, 0.05) 1px,
        transparent 4px
    );
    animation: contactFormScanLines 5s linear infinite;
}

.neo-contact-form {
    position: relative;
    z-index: 10;
}

.neo-form-group {
    margin-bottom: 30px;
}

.input-hologram-system,
.textarea-hologram-system {
    position: relative;
}

.neo-input,
.neo-textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.4s ease;
    outline: none;
}

.neo-input::placeholder,
.neo-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.neo-input:focus,
.neo-textarea:focus {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.input-border-glow,
.textarea-border-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient(45deg, #10b981, #22c55e, #059669, #10b981);
    background-size: 400% 400%;
    animation: contactInputGlow 4s ease-in-out infinite;
    opacity: 0;
    z-index: -1;
    pointer-events: none;
}

.neo-input:focus + .input-border-glow,
.neo-textarea:focus + .textarea-border-glow {
    opacity: 0.6;
}

.input-scan-effect,
.textarea-scan-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(16, 185, 129, 0.4) 50%, 
        transparent 100%);
    border-radius: 12px;
    z-index: -1;
    pointer-events: none;
}

.neo-input:focus + .input-border-glow + .input-scan-effect,
.neo-textarea:focus + .textarea-border-glow + .textarea-scan-effect {
    animation: contactInputScan 2s ease-in-out;
}

.neo-submit-section {
    margin-top: 40px;
    text-align: center;
}

.neo-submit-button {
    position: relative;
    padding: 16px 40px;
    background: linear-gradient(135deg, #10b981, #22c55e);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    /* 增强标题清晰度 */
    filter: contrast(1.2) brightness(1.1);
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
    opacity: 1;
    transition: all 0.4s ease;
    overflow: hidden;
}

.neo-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.neo-submit-button .button-text {
    position: relative;
    z-index: 2;
}

.neo-submit-button .button-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #10b981, #22c55e, #059669, #10b981);
    background-size: 400% 400%;
    animation: contactButtonGlow 3s ease-in-out infinite;
    opacity: 0;
    z-index: 1;
}

.neo-submit-button:hover .button-glow {
    opacity: 0.8;
}

.neo-submit-button .button-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 0.3) 0%, 
        transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.neo-submit-button:active .button-ripple {
    animation: contactButtonRipple 0.6s ease-out;
}

.neo-submit-button .button-energy-field {
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    border-radius: 12px;
    background: linear-gradient(45deg, #10b981, #22c55e, #059669, #10b981);
    background-size: 400% 400%;
    animation: contactButtonEnergyField 5s ease-in-out infinite;
    opacity: 0;
    z-index: 0;
}

.neo-submit-button:hover .button-energy-field {
    opacity: 0.6;
}

.neo-contact-scan-system {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.neo-contact-scan-system .horizontal-scanner {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #10b981 50%, 
        transparent 100%);
    top: 0;
    animation: contactHorizontalScan 12s linear infinite;
}

.neo-contact-scan-system .vertical-scanner {
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, 
        transparent 0%, 
        #22c55e 50%, 
        transparent 100%);
    left: 0;
    animation: contactVerticalScan 14s linear infinite;
}

.neo-contact-scan-system .transmission-scanner {
    position: absolute;
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid transparent;
    border-top-color: #059669;
    border-right-color: #10b981;
    border-radius: 50%;
    animation: contactTransmissionScan 10s linear infinite;
}

/* Contact 动画关键帧 */
@keyframes contactGradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes contactCommPulse {
    0%, 100% { opacity: 0.5; transform: scaleX(1); }
    50% { opacity: 1; transform: scaleX(1.02); }
}

@keyframes contactNodePulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

@keyframes contactOrbFloat {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.3; }
    50% { transform: translateY(-30px) scale(1.2); opacity: 0.8; }
}

@keyframes contactTransmissionFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

@keyframes contactTowerFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(180deg); }
}

@keyframes contactTowerCore {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes contactSignalExpand {
    0% { opacity: 1; transform: translate(-50%, -50%) scale(0.8); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(2); }
}

@keyframes contactCommDecoration {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.4); }
}

@keyframes contactSignalPattern {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}

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

@keyframes contactIconEnergyField {
    0%, 100% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
}

@keyframes contactRippleExpand {
    0% { width: 0; height: 0; opacity: 0.8; }
    100% { width: 300px; height: 300px; opacity: 0; }
}

@keyframes contactFormScanLines {
    0% { transform: translateX(0); }
    100% { transform: translateX(20px); }
}

@keyframes contactInputGlow {
    0%, 100% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
}

@keyframes contactInputScan {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: -100%; }
}

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

@keyframes contactButtonRipple {
    0% { width: 0; height: 0; opacity: 0.8; }
    100% { width: 200px; height: 200px; opacity: 0; }
}

@keyframes contactButtonEnergyField {
    0%, 100% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
}

@keyframes contactHorizontalScan {
    0% { top: -2px; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

@keyframes contactVerticalScan {
    0% { left: -2px; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

@keyframes contactTransmissionScan {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}