/* 商务科技特效库 - 专业精致风格 */

/* 商务渐变文字 */
.neon-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* 商务边框动画（柔和渐变） */
.neon-border {
    position: relative;
    border-radius: var(--radius-lg);
}

.neon-border::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: var(--gradient-primary);
    border-radius: inherit;
    opacity: 0.6;
    z-index: -1;
    filter: blur(2px);
}

/* 商务背景效果（微妙点缀） */
.particle-bg {
    position: relative;
}

.particle-bg::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        radial-gradient(circle, rgba(91, 127, 255, 0.05) 1px, transparent 1px),
        radial-gradient(circle, rgba(124, 92, 255, 0.05) 1px, transparent 1px);
    background-size: 60px 60px, 100px 100px;
    background-position: 0 0, 50px 50px;
    opacity: 0.6;
    pointer-events: none;
}

/* 扫光效果 */
.scan-light {
    position: relative;
    overflow: hidden;
}

.scan-light::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(255, 255, 255, 0.8) 50%,
        transparent 100%
    );
    transform: rotate(45deg);
    animation: scan 3s infinite;
}

@keyframes scan {
    0% { transform: translateY(-100%) rotate(45deg); }
    100% { transform: translateY(100%) rotate(45deg); }
}

/* 数字跳动效果 */
.number-jump {
    display: inline-block;
    animation: number-bounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes number-bounce {
    0% { transform: scale(0.8) translateY(10px); opacity: 0; }
    50% { transform: scale(1.1) translateY(-5px); }
    100% { transform: scale(1) translateY(0); opacity: 1; }
}

/* 商务脉冲光环（柔和） */
.pulse-ring {
    position: relative;
}

.pulse-ring::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: inherit;
    border: 2px solid rgba(91, 127, 255, 0.3);
    animation: pulse-expand 3s ease-out infinite;
}

@keyframes pulse-expand {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* 商务悬停效果（精致） */
.glow-on-hover {
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glow-on-hover:hover {
    filter: brightness(1.1);
    box-shadow: 0 4px 16px rgba(91, 127, 255, 0.25);
    transform: translateY(-1px);
}

/* 商务渐变效果（微妙优雅） */
.holographic {
    position: relative;
}

.holographic::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(91, 127, 255, 0.05) 0%,
        rgba(124, 92, 255, 0.05) 50%,
        rgba(0, 212, 255, 0.05) 100%);
    pointer-events: none;
}
