:root {
    --primary: #0057d9;
    --primary-light: #2d8cff;
    --primary-dark: #063b8f;
    --secondary: #6c757d;
    --accent: #ff7a1a;
    --bg-main: #f4f7fb;
    --bg-card: #ffffff;
    --bg-dark: #1a1a2e;
    --border-color: #e1e5eb;
    --text-main: #1a1a2e;
    --text-secondary: #5a6270;
    --text-muted: #9ca3af;
    --shadow: 0 2px 12px rgba(6,42,88,0.06);
    --shadow-hover: 0 12px 32px rgba(6,42,88,0.12);
    --radius: 12px;

    --glass-bg: rgba(255, 255, 255, 0.55);
    --glass-bg-hover: rgba(255, 255, 255, 0.78);
    --glass-bg-strong: rgba(255, 255, 255, 0.72);
    --glass-border: rgba(255, 255, 255, 0.55);
    --glass-border-hover: rgba(0, 87, 217, 0.3);
    --glass-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    --glass-shadow-hover: 0 12px 40px rgba(0, 87, 217, 0.12);
    --glass-blur: blur(16px);
    --glass-blur-light: blur(10px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', 'Segoe UI', -apple-system, sans-serif;
    background: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

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

/* 动态背景 */
.bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.bg-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,102,204,0.06) 0%, rgba(245,247,250,1) 50%, rgba(255,107,53,0.04) 100%);
}

.bg-mesh {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0,102,204,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,102,204,0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: mesh-move 20s linear infinite;
}

@keyframes mesh-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* 新增: 科技网格叠加 */
.cyber-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 180, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 180, 255, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    animation: cyber-grid-move 15s linear infinite;
}

@keyframes cyber-grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(80px, 80px); }
}

.bg-float {
    position: absolute;
    border-radius: 50%;
    opacity: 0.8;
    animation: float 20s ease-in-out infinite;
    filter: blur(60px);
}

.bg-float-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,102,204,0.28), transparent 70%);
    top: -15%;
    left: -10%;
    animation-delay: 0s;
}

.bg-float-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,107,53,0.22), transparent 70%);
    top: 25%;
    right: -8%;
    animation-delay: -8s;
}

.bg-float-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0,102,204,0.2), transparent 70%);
    bottom: 5%;
    left: 10%;
    animation-delay: -15s;
}

.bg-float-4 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(100,180,255,0.18), transparent 70%);
    top: 50%;
    left: 40%;
    animation-delay: -12s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(60px, -60px) scale(1.12); }
    50% { transform: translate(-50px, 50px) scale(0.92); }
    75% { transform: translate(50px, 40px) scale(1.1); }
}

/* 流动线条 */
.bg-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.bg-line {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(0,130,230,0.3), transparent);
    box-shadow: 0 0 8px rgba(0, 150, 255, 0.2);
    animation: line-flow 8s linear infinite;
}

.bg-line:nth-child(1) { left: 5%; top: -120px; animation-delay: 0s; }
.bg-line:nth-child(2) { left: 12%; top: -120px; animation-delay: 1.5s; }
.bg-line:nth-child(3) { left: 20%; top: -120px; animation-delay: 3s; }
.bg-line:nth-child(4) { left: 28%; top: -120px; animation-delay: 0.8s; }
.bg-line:nth-child(5) { left: 36%; top: -120px; animation-delay: 2.2s; }
.bg-line:nth-child(6) { left: 44%; top: -120px; animation-delay: 4s; }
.bg-line:nth-child(7) { left: 52%; top: -120px; animation-delay: 1.2s; }
.bg-line:nth-child(8) { left: 60%; top: -120px; animation-delay: 3.5s; }
.bg-line:nth-child(9) { left: 68%; top: -120px; animation-delay: 0.5s; }
.bg-line:nth-child(10) { left: 76%; top: -120px; animation-delay: 2.8s; }
.bg-line:nth-child(11) { left: 84%; top: -120px; animation-delay: 4.5s; }
.bg-line:nth-child(12) { left: 92%; top: -120px; animation-delay: 1.8s; }

@keyframes line-flow {
    0% { transform: translateY(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 0.5; }
    100% { transform: translateY(120vh); opacity: 0; }
}

/* 浮动气泡 */
.bg-bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.bg-bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(0,102,204,0.14);
    border: 1px solid rgba(0,102,204,0.18);
    box-shadow: 0 0 10px rgba(0, 120, 255, 0.1);
    animation: bubble-rise 12s ease-in-out infinite;
}

.bg-bubble:nth-child(1) { width: 80px; height: 80px; left: 3%; bottom: -80px; animation-delay: 0s; }
.bg-bubble:nth-child(2) { width: 50px; height: 50px; left: 10%; bottom: -50px; animation-delay: 2.5s; }
.bg-bubble:nth-child(3) { width: 100px; height: 100px; left: 18%; bottom: -100px; animation-delay: 5s; }
.bg-bubble:nth-child(4) { width: 40px; height: 40px; left: 28%; bottom: -40px; animation-delay: 1.2s; }
.bg-bubble:nth-child(5) { width: 70px; height: 70px; left: 35%; bottom: -70px; animation-delay: 6.5s; }
.bg-bubble:nth-child(6) { width: 90px; height: 90px; left: 45%; bottom: -90px; animation-delay: 3.8s; }
.bg-bubble:nth-child(7) { width: 55px; height: 55px; left: 55%; bottom: -55px; animation-delay: 8s; }
.bg-bubble:nth-child(8) { width: 75px; height: 75px; left: 65%; bottom: -75px; animation-delay: 4.2s; }
.bg-bubble:nth-child(9) { width: 45px; height: 45px; left: 75%; bottom: -45px; animation-delay: 9.5s; }
.bg-bubble:nth-child(10) { width: 85px; height: 85px; left: 85%; bottom: -85px; animation-delay: 6s; }

@keyframes bubble-rise {
    0% { transform: translateY(0) scale(0.7); opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.5; }
    100% { transform: translateY(-120vh) scale(1.3); opacity: 0; }
}

/* 光点闪烁 */
.bg-dots {
    position: absolute;
    width: 100%;
    height: 100%;
}

.bg-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(0, 130, 230, 0.7);
    border-radius: 50%;
    animation: dot-twinkle 2.5s ease-in-out infinite;
}

.bg-dot:nth-child(1) { left: 8%; top: 15%; animation-delay: 0s; }
.bg-dot:nth-child(2) { left: 18%; top: 35%; animation-delay: 0.4s; }
.bg-dot:nth-child(3) { left: 32%; top: 12%; animation-delay: 0.8s; }
.bg-dot:nth-child(4) { left: 48%; top: 45%; animation-delay: 1.2s; }
.bg-dot:nth-child(5) { left: 62%; top: 22%; animation-delay: 1.6s; }
.bg-dot:nth-child(6) { left: 75%; top: 55%; animation-delay: 2s; }
.bg-dot:nth-child(7) { left: 88%; top: 38%; animation-delay: 0.3s; }
.bg-dot:nth-child(8) { left: 15%; top: 68%; animation-delay: 0.7s; }
.bg-dot:nth-child(9) { left: 35%; top: 78%; animation-delay: 1.1s; }
.bg-dot:nth-child(10) { left: 55%; top: 72%; animation-delay: 1.5s; }
.bg-dot:nth-child(11) { left: 72%; top: 82%; animation-delay: 1.9s; }
.bg-dot:nth-child(12) { left: 92%; top: 65%; animation-delay: 2.3s; }

@keyframes dot-twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); box-shadow: 0 0 6px rgba(0, 130, 230, 0.4); }
    50% { opacity: 1; transform: scale(2.2); box-shadow: 0 0 22px rgba(0, 150, 255, 0.9); }
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.2s;
}

a:hover {
    color: var(--primary-dark);
}

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

/* Header */
header {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.header-main {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 60px;
    width: 100%;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-sub {
    font-size: 0.65rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 1px;
    white-space: nowrap;
}

nav {
    display: flex;
    gap: 4px;
    justify-content: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    width: 180px;
}

.logo-sub {
    font-size: 0.65rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 1px;
    white-space: nowrap;
}

.header-spacer {
    width: 180px;
    flex-shrink: 0;
}

.logo-area a {
    display: flex;
    align-items: center;
}

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

.logo-sub {
    font-size: 0.65rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 1px;
}

.header-spacer {
    width: 160px;
    flex-shrink: 0;
}

nav {
    display: flex;
    gap: 4px;
    justify-content: center;
    flex: 1;
}

nav a {
    padding: 8px 14px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    border-radius: 8px;
    transition: all 0.2s;
    white-space: nowrap;
}

nav a:hover, nav a.active {
    color: var(--primary);
    background: rgba(0, 102, 204, 0.08);
}

.visit-counter {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--bg-main);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    flex-shrink: 0;
}

.visit-counter {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--bg-main);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #0052a3 0%, #0066cc 50%, #3399ff 100%);
    color: #fff;
    padding: 60px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,107,53,0.18) 0%, transparent 40%);
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.04) 50%, transparent 60%);
    animation: shine 6s linear infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(180, 220, 255, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(100, 200, 255, 0.6), 0 0 12px rgba(0, 150, 255, 0.3);
    animation: particle-rise 10s linear infinite;
}

.hero-particle:nth-child(1) { left: 5%; animation-delay: 0s; width: 3px; height: 3px; }
.hero-particle:nth-child(2) { left: 10%; animation-delay: 1.2s; width: 5px; height: 5px; }
.hero-particle:nth-child(3) { left: 15%; animation-delay: 2.5s; width: 2px; height: 2px; }
.hero-particle:nth-child(4) { left: 20%; animation-delay: 3.8s; width: 4px; height: 4px; }
.hero-particle:nth-child(5) { left: 25%; animation-delay: 0.8s; width: 6px; height: 6px; }
.hero-particle:nth-child(6) { left: 30%; animation-delay: 5.2s; width: 3px; height: 3px; }
.hero-particle:nth-child(7) { left: 35%; animation-delay: 2.0s; width: 4px; height: 4px; }
.hero-particle:nth-child(8) { left: 40%; animation-delay: 6.5s; width: 2px; height: 2px; }
.hero-particle:nth-child(9) { left: 45%; animation-delay: 4.0s; width: 5px; height: 5px; }
.hero-particle:nth-child(10) { left: 50%; animation-delay: 1.5s; width: 3px; height: 3px; }
.hero-particle:nth-child(11) { left: 55%; animation-delay: 7.0s; width: 4px; height: 4px; }
.hero-particle:nth-child(12) { left: 60%; animation-delay: 3.2s; width: 6px; height: 6px; }
.hero-particle:nth-child(13) { left: 65%; animation-delay: 9.0s; width: 2px; height: 2px; }
.hero-particle:nth-child(14) { left: 70%; animation-delay: 2.8s; width: 5px; height: 5px; }
.hero-particle:nth-child(15) { left: 75%; animation-delay: 4.5s; width: 3px; height: 3px; }
.hero-particle:nth-child(16) { left: 80%; animation-delay: 6.0s; width: 4px; height: 4px; }
.hero-particle:nth-child(17) { left: 85%; animation-delay: 1.0s; width: 5px; height: 5px; }
.hero-particle:nth-child(18) { left: 90%; animation-delay: 8.0s; width: 3px; height: 3px; }

@keyframes particle-rise {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    15% { opacity: 1; }
    70% { opacity: 0.7; }
    100% { transform: translateY(-120vh) scale(1.2); opacity: 0; }
}

/* 数据流竖线 */
.hero-data-streams {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-data-line {
    position: absolute;
    top: -60px;
    width: 1.5px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(0, 180, 255, 0.6), transparent);
    animation: data-stream-fall 4s linear infinite;
}

.hero-data-line:nth-child(1) { left: 8%; animation-delay: 0s; height: 40px; }
.hero-data-line:nth-child(2) { left: 18%; animation-delay: 1.2s; height: 55px; }
.hero-data-line:nth-child(3) { left: 28%; animation-delay: 2.5s; height: 35px; }
.hero-data-line:nth-child(4) { left: 38%; animation-delay: 0.6s; height: 60px; }
.hero-data-line:nth-child(5) { left: 48%; animation-delay: 3.0s; height: 45px; }
.hero-data-line:nth-child(6) { left: 58%; animation-delay: 1.8s; height: 50px; }
.hero-data-line:nth-child(7) { left: 68%; animation-delay: 2.0s; height: 38px; }
.hero-data-line:nth-child(8) { left: 78%; animation-delay: 3.5s; height: 55px; }

@keyframes data-stream-fall {
    0% { transform: translateY(-60px); opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.3; }
    100% { transform: translateY(100vh); opacity: 0; }
}

/* 中央光晕 */
.hero-glow {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 120px;
    background: radial-gradient(ellipse, rgba(0, 140, 255, 0.15) 0%, transparent 70%);
    animation: hero-glow-pulse 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes hero-glow-pulse {
    0%, 100% { opacity: 0.4; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.9; transform: translateX(-50%) scale(1.15); }
}

/* 光环增强 */
.hero-ring {
    position: absolute;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: ring-pulse 6s ease-out infinite;
}

.hero-ring-1 { animation-duration: 6s; }
.hero-ring-2 { animation-duration: 6s; animation-delay: -2s; }
.hero-ring-3 { animation-duration: 6s; animation-delay: -4s; }

@keyframes ring-pulse {
    0% { width: 80px; height: 80px; opacity: 0; top: 50%; left: 50%; transform: translate(-50%, -50%); }
    30% { opacity: 0.7; }
    100% { width: 900px; height: 900px; opacity: 0; top: 50%; left: 50%; transform: translate(-50%, -50%); }
}

/* 悬浮六边形 */
.hero-geo {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-geo-hex {
    position: absolute;
    width: 30px;
    height: 34px;
    background: rgba(0, 180, 255, 0.08);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: geo-float 8s ease-in-out infinite;
}

.hero-geo-hex:nth-child(1) { top: 25%; left: 10%; animation-delay: 0s; width: 24px; height: 28px; }
.hero-geo-hex:nth-child(2) { top: 15%; right: 8%; animation-delay: -3s; width: 32px; height: 36px; }
.hero-geo-hex:nth-child(3) { top: 45%; left: 85%; animation-delay: -5s; width: 20px; height: 24px; }

@keyframes geo-float {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-20px) rotate(30deg); opacity: 0.7; }
}

.hero-dna {
    position: absolute;
    top: 15%;
    right: 4%;
    width: 70px;
    height: 220px;
    opacity: 0.4;
    animation: dna-float 8s ease-in-out infinite;
}

.dna-strand {
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        180deg,
        rgba(200,225,255,0.6) 0px,
        rgba(200,225,255,0.6) 8px,
        transparent 8px,
        transparent 16px
    );
    border-radius: 35px;
    animation: dna-spin 4s linear infinite;
}

/* 电路线条增强 */
.hero-circuit {
    position: absolute;
    bottom: 12%;
    left: 6%;
    width: 180px;
    height: 100px;
    opacity: 0.35;
}

.circuit-line {
    position: absolute;
    background: rgba(200, 230, 255, 0.8);
    box-shadow: 0 0 8px rgba(0, 200, 255, 0.4);
    animation: circuit-pulse 2s ease-in-out infinite;
}

@keyframes circuit-pulse {
    0%, 100% { opacity: 0.3; box-shadow: 0 0 6px rgba(200, 230, 255, 0.3); }
    50% { opacity: 1; box-shadow: 0 0 18px rgba(150, 200, 255, 0.9); }
}

.dna-strand {
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        180deg,
        rgba(255,255,255,0.4) 0px,
        rgba(255,255,255,0.4) 8px,
        transparent 8px,
        transparent 16px
    );
    border-radius: 30px;
    animation: dna-spin 4s linear infinite;
}

.dna-strand-2 {
    animation: dna-spin 4s linear infinite reverse;
    left: 20px;
}

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

@keyframes dna-spin {
    0% { transform: rotateX(0deg) rotateY(0deg); }
    100% { transform: rotateX(360deg) rotateY(180deg); }
}

/* 科技网格 */
.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-flow 20s linear infinite;
}

@keyframes grid-flow {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* 电路线条 */
.hero-circuit {
    position: absolute;
    bottom: 15%;
    left: 8%;
    width: 150px;
    height: 80px;
    opacity: 0.25;
}

.circuit-line {
    position: absolute;
    background: rgba(255,255,255,0.6);
    animation: circuit-pulse 2s ease-in-out infinite;
}

.circuit-line:nth-child(1) { width: 50px; height: 2px; left: 0; top: 0; }
.circuit-line:nth-child(2) { width: 2px; height: 30px; left: 50px; top: 0; animation-delay: 0.3s; }
.circuit-line:nth-child(3) { width: 30px; height: 2px; left: 50px; top: 30px; animation-delay: 0.6s; }
.circuit-line:nth-child(4) { width: 2px; height: 25px; left: 80px; top: 30px; animation-delay: 0.9s; }
.circuit-line:nth-child(5) { width: 40px; height: 2px; left: 80px; top: 55px; animation-delay: 1.2s; }
.circuit-line:nth-child(6) { width: 2px; height: 25px; left: 120px; top: 55px; animation-delay: 1.5s; }
.circuit-line:nth-child(7) { width: 30px; height: 2px; left: 120px; top: 55px; animation-delay: 1.8s; }

@keyframes circuit-pulse {
    0%, 100% { opacity: 0.3; box-shadow: 0 0 5px rgba(255,255,255,0.3); }
    50% { opacity: 1; box-shadow: 0 0 15px rgba(255,255,255,0.8); }
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-title-animate {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    animation: title-glow 2s ease-in-out infinite, fadeInUp 0.8s ease-out 0.2s backwards;
    text-shadow: 0 0 20px rgba(255,255,255,0.5);
}

@keyframes title-glow {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: min(760px, calc(100% - 40px));
    margin: 44px auto 0;
    gap: 20px;
    padding: 4px 0;
    position: relative;
    z-index: 1;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 16px 24px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-stat::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(0, 200, 255, 0.4), transparent 40%, transparent 60%, rgba(100, 180, 255, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: stat-border-shift 3s ease-in-out infinite;
}

@keyframes stat-border-shift {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

.hero-stat:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.hero-stat-num {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(180deg, #ffffff 0%, #80d0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    filter: drop-shadow(0 0 18px rgba(100, 200, 255, 0.5));
    font-family: 'SF Pro Display', 'PingFang SC', -apple-system, sans-serif;
    animation: num-glow 3s ease-in-out infinite;
}

@keyframes num-glow {
    0%, 100% { filter: drop-shadow(0 0 18px rgba(100, 200, 255, 0.5)); }
    50% { filter: drop-shadow(0 0 32px rgba(100, 200, 255, 0.8)); }
}

.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(180, 220, 255, 0.75);
    margin-top: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.35s;
}

.hero-stat:hover .hero-stat-label {
    color: rgba(200, 235, 255, 0.95);
}

.hero-notice {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 30px;
    padding: 12px 28px;
    margin: 20px 0;
    backdrop-filter: blur(10px);
}

.hero-notice-icon {
    font-size: 1.2rem;
    animation: bell-ring 1s ease-in-out infinite;
}

@keyframes bell-ring {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(10deg); }
    75% { transform: rotate(-10deg); }
}

.hero-notice-text {
    font-size: 1rem;
    color: #fff;
    font-weight: 500;
}

.innovation-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 25px;
    font-size: 0.9rem;
    color: #fff;
    transition: all 0.3s;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease-out;
}

.innovation-icon {
    font-size: 1.1rem;
    animation: sparkle 1.5s ease-in-out infinite;
}

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

.innovation-banner {
    display: grid;
    grid-template-columns: auto 1fr auto 1fr;
    gap: 24px;
    align-items: center;
    background: var(--glass-bg-strong);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px 32px;
    margin: 30px 0;
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
}

.innovation-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
    background-size: 200% 100%;
    animation: gradient-slide 3s linear infinite;
}

@keyframes gradient-slide {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.innovation-banner-icon {
    font-size: 2.5rem;
    animation: bounce 2s ease-in-out infinite;
}

.innovation-banner-icon:last-child {
    animation-delay: -1s;
}

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

.innovation-banner-content h3 {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 6px;
}

.innovation-banner-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* 卡片入场动画 */
.domain-card, .article-card, .tool-item {
    animation: fadeInUp 0.6s ease-out backwards;
}

.domain-card:nth-child(1) { animation-delay: 0.1s; }
.domain-card:nth-child(2) { animation-delay: 0.2s; }
.domain-card:nth-child(3) { animation-delay: 0.3s; }
.domain-card:nth-child(4) { animation-delay: 0.4s; }

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

/* 悬浮光效 */
.domain-card:hover, .article-card:hover {
    box-shadow: 0 8px 30px rgba(0,102,204,0.15);
}

.hero .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 35px;
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

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

.btn {
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: #fff;
    color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-light);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.6);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
}

/* Notice Bar */
.notice-bar {
    background: var(--glass-bg-strong);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 30px 0;
    box-shadow: var(--glass-shadow);
}

.notice-bar .text {
    flex: 1;
    font-size: 0.9rem;
    color: #7a5c00;
}

.notice-bar .close {
    color: #c9a900;
    cursor: pointer;
}

/* Section */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.section-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--primary);
    border-radius: 2px;
}

.section-more {
    font-size: 0.85rem;
    color: var(--primary);
}

.section-more:hover {
    color: var(--primary-dark);
}

.page-shell {
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
}

.page-panel {
    width: 100%;
}

.mission-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 42px 0 8px;
}

.mission-item,
.focus-lab {
    background: var(--glass-bg-strong);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    box-shadow: var(--glass-shadow);
}

.mission-item {
    padding: 22px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-item:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    box-shadow: var(--glass-shadow-hover);
    transform: translateY(-4px);
}

.mission-kicker {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.mission-item h3,
.focus-lab h2 {
    color: var(--text-main);
    line-height: 1.35;
}

.mission-item h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.mission-item p,
.focus-lab p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.focus-lab {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    align-items: center;
    padding: 28px;
    margin: 30px 0 40px;
    background: var(--glass-bg-strong);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    box-shadow: var(--glass-shadow);
    overflow: hidden;
    position: relative;
}

.focus-lab::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    right: -70px;
    bottom: -90px;
    background: radial-gradient(circle, rgba(0,87,217,0.1), transparent 70%);
    pointer-events: none;
}

.focus-lab h2 {
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.focus-list {
    display: grid;
    gap: 10px;
}

.focus-list span {
    padding: 12px 16px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur-light);
    -webkit-backdrop-filter: var(--glass-blur-light);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-secondary);
    font-size: 0.88rem;
    position: relative;
    z-index: 1;
    transition: all 0.25s;
    cursor: pointer;
}

.focus-list span:hover {
    background: var(--glass-bg-hover);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 87, 217, 0.1);
}

/* Domain Cards */
.domain-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.domain-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
}

.domain-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(255,255,255,0.35) 0%, transparent 50%);
    pointer-events: none;
}

.domain-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
    border-radius: 3px 3px 0 0;
}

.domain-card:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    box-shadow: var(--glass-shadow-hover);
    transform: translateY(-6px);
}

.domain-card:hover::after {
    transform: scaleX(1);
}

.domain-card:hover .domain-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 16px rgba(0, 87, 217, 0.2);
}

.domain-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(0,102,204,0.12), rgba(0,102,204,0.18));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.domain-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.domain-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.domain-meta {
    display: flex;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* Recruit Section */
.recruit-section {
    margin: 40px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: stretch;
}

.recruit-content {
    background: var(--glass-bg-strong);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 20px 24px;
    box-shadow: var(--glass-shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.recruit-content:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--glass-shadow-hover);
}

.recruit-content h3 {
    font-size: 1rem;
    margin-bottom: 6px;
    color: var(--text-main);
}

.recruit-content p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.recruit-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.recruit-tag {
    padding: 6px 12px;
    background: rgba(0, 102, 204, 0.08);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--primary);
}

/* Main Content */
.main-content {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    padding: 40px 0;
}

.recruit-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.recruit-content p {
    opacity: 0.9;
    font-size: 0.9rem;
    margin-bottom: 14px;
}

.recruit-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.recruit-tag {
    padding: 6px 12px;
    background: rgba(255,255,255,0.2);
    border-radius: 20px;
    font-size: 0.8rem;
}

.recruit-section .btn-primary {
    background: #fff;
    color: var(--primary);
    white-space: nowrap;
}

/* Article Cards */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    min-width: 0;
}

.articles-grid > a {
    min-width: 0;
}

.article-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: var(--glass-shadow);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.article-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.article-card:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    box-shadow: var(--glass-shadow-hover);
    transform: translateY(-6px);
}

.article-card:hover::after {
    transform: scaleX(1);
}

.article-card:hover .article-cover img {
    transform: scale(1.08);
}

.article-card:hover .article-cover-default {
    transform: scale(1.1);
}

.article-cover {
    height: 140px;
    background: linear-gradient(135deg, rgba(0,102,204,0.08), rgba(0,102,204,0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    position: relative;
    overflow: hidden;
}

.article-cover-default {
    font-size: 2.8rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
}

.article-cover .tag {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    box-shadow: 0 2px 8px rgba(0, 87, 217, 0.25);
}

.article-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.article-body h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--text-main);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
    word-break: break-all;
}

.article-excerpt {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-meta {
    display: flex;
    gap: 14px;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    flex-wrap: nowrap;
    overflow: hidden;
}
.article-meta span {
    white-space: nowrap;
}

.article-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.article-tag {
    padding: 4px 10px;
    background: rgba(0,102,204,0.08);
    color: var(--primary);
    border-radius: 6px;
    font-size: 0.73rem;
    font-weight: 500;
    transition: all 0.2s;
}

.article-tag:hover {
    background: rgba(0,102,204,0.16);
}

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 30px;
}

.tool-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--glass-shadow);
}

.tool-item:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    box-shadow: var(--glass-shadow-hover);
    transform: translateY(-4px);
}

.tool-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(0,102,204,0.1), rgba(0,102,204,0.18));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s;
}

.tool-item:hover .tool-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 87, 217, 0.15);
}

.tool-info h4 {
    font-size: 0.92rem;
    margin-bottom: 4px;
    color: var(--text-main);
}

.tool-info {
    flex: 1;
    min-width: 0;
}

.tool-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tool-stats {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--accent);
    font-weight: 600;
    margin-left: auto;
    white-space: nowrap;
    flex-shrink: 0;
    padding: 4px 12px;
    background: rgba(255, 122, 26, 0.08);
    border-radius: 20px;
}
.tool-date {
    font-size: 0.72rem;
    color: var(--text-muted);
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 8px;
}
.tool-date-list {
    font-size: 0.75rem;
    color: var(--text-muted);
    white-space: nowrap;
    flex-shrink: 0;
}

/* Category Pills */
.category-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.category-pill {
    padding: 8px 18px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur-light);
    -webkit-backdrop-filter: var(--glass-blur-light);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: all 0.25s;
}

.category-pill:hover, .category-pill.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 87, 217, 0.25);
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    background: var(--glass-bg-strong);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--glass-shadow);
}

.sidebar-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--text-main);
}

.product-direction {
    padding: 14px;
    background: var(--glass-bg);
    border: 1px solid transparent;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: all 0.25s;
}

.product-direction:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 87, 217, 0.08);
}

.product-direction h4 {
    font-size: 0.9rem;
    margin-bottom: 4px;
    color: var(--text-main);
}

.product-direction p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--glass-bg);
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: all 0.25s;
}

.quick-link:hover {
    background: var(--glass-bg-hover);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 87, 217, 0.08);
}

/* Footer */
footer {
    background: var(--bg-dark);
    color: #fff;
    padding: 50px 0 25px;
    margin-top: 60px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 35px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-top: 12px;
}

.footer-col h4 {
    font-size: 0.95rem;
    margin-bottom: 16px;
    color: #fff;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.footer-col a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

/* Scroll Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
    z-index: 99;
    box-shadow: 0 4px 15px rgba(0,102,204,0.35);
    opacity: 0;
    transform: translateY(20px);
}

.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,102,204,0.45);
}

/* Article Detail TOC - 右侧悬浮 */
.toc-float {
    position: fixed;
    right: max(20px, calc((100vw - 1200px) / 2 - 270px));
    top: 100px;
    width: 230px;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    background: var(--glass-bg-strong);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: var(--glass-shadow);
    z-index: 50;
    transition: opacity 0.3s;
}

.toc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.toc-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-main);
}

.toc-toggle {
    background: none;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 6px;
    padding: 3px 10px;
    font-size: 0.72rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
}

.toc-toggle:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.toc-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.toc-link {
    display: block;
    padding: 5px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s;
    line-height: 1.4;
    border-left: 2px solid transparent;
}

.toc-link:hover {
    background: rgba(0,102,204,0.06);
    color: var(--primary);
}

.toc-link.active {
    background: rgba(0,102,204,0.08);
    color: var(--primary);
    border-left-color: var(--primary);
    font-weight: 500;
}

.toc-link-h1 { padding-left: 8px; font-weight: 500; }
.toc-link-h2 { padding-left: 20px; }
.toc-link-h3 { padding-left: 32px; font-size: 0.76rem; }

.article-detail-box {
    background: #fffef5;
    border-radius: var(--radius);
    padding: 30px;
    max-width: 100%;
    border: 1px solid rgba(0,87,217,0.10);
    box-shadow: var(--shadow);
}

.article-detail-box h1 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--text-main);
}

.detail-cover {
    height: 360px;
    min-height: 360px;
    border-radius: 12px;
    margin-bottom: 24px;
    background: #fffef5;
}

.detail-cover img {
    width: auto;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.detail-section {
    margin-top: 24px;
}

.detail-card {
    padding: 32px;
    box-shadow: var(--shadow);
}

.tool-detail-head {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.related-list-wrap {
    margin-top: 48px;
}

.related-list-wrap h3 {
    margin-bottom: 16px;
    font-size: 1.2rem;
}

.related-list {
    display: grid;
    gap: 12px;
}

.related-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 16px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    color: var(--text-main);
    box-shadow: var(--shadow);
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.related-list-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.related-list-item h4 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.related-list-item p,
.related-list-item > span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.related-list-item > span {
    color: var(--primary);
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 1024px) {
    .domain-grid { grid-template-columns: repeat(2, 1fr); }
    .mission-strip { grid-template-columns: 1fr; }
    .focus-lab { grid-template-columns: 1fr; }
    .articles-grid { grid-template-columns: repeat(2, 1fr); }
    .main-content { grid-template-columns: 1fr; }
    .sidebar { display: none; }
    .footer-main { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .hero-stat-num { font-size: 1.8rem; }
    .page-shell { padding-top: 28px; padding-bottom: 28px; }
    .detail-cover { height: 220px; min-height: 220px; }
    .toc-float { position: static; width: auto; max-height: none; margin-bottom: 20px; }
}

.like-btn {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur-light);
    -webkit-backdrop-filter: var(--glass-blur-light);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 6px 16px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.like-btn:hover {
    background: rgba(255, 100, 100, 0.12);
    border-color: #ff6464;
    transform: scale(1.05);
}

/* ==================== NEW HOMEPAGE STYLES ==================== */

/* Hero New */
.hero-new {
    background: linear-gradient(135deg, #0a1628 0%, #0d2137 30%, #0f2b4a 60%, #0a1628 100%);
    color: #fff;
    padding: 80px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-new::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(0,180,255,0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(0,100,200,0.1) 0%, transparent 40%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(0,180,255,0.1);
    border: 1px solid rgba(0,180,255,0.25);
    border-radius: 30px;
    font-size: 0.85rem;
    color: rgba(180,220,255,0.9);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 1rem;
}

.hero-new h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #80c8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-new .hero-sub {
    font-size: 1.15rem;
    color: rgba(180,220,255,0.8);
    margin-bottom: 40px;
}

.hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    padding: 16px 36px;
    background: linear-gradient(135deg, #0066ff, #3399ff);
    color: #fff;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,102,255,0.4);
    color: #fff;
}

.btn-cta-secondary {
    padding: 16px 36px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-cta-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
    color: #fff;
}

.hero-stats-new {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.hero-stat-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.hs-num {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(180deg, #fff, #80c8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hs-label {
    font-size: 0.8rem;
    color: rgba(180,220,255,0.7);
    letter-spacing: 0.05em;
}

/* Section Header Center */
.section-header-center {
    text-align: center;
    margin-bottom: 48px;
}

.section-header-center h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 12px;
}

.section-header-center p {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Capabilities Section */
.capabilities-section {
    padding: 80px 0;
    background: var(--bg-main);
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.capability-card {
    background: var(--glass-bg-strong);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: var(--glass-shadow);
}

.capability-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--glass-shadow-hover);
    border-color: var(--glass-border-hover);
}

.cap-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.capability-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text-main);
}

.capability-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.cap-link {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 500;
}

/* Knowledge Section */
.knowledge-section {
    padding: 80px 0;
    background: var(--bg-card);
}

.knowledge-tree-compact {
    max-width: 600px;
    margin: 0 auto;
}

.kt-root {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
}

.kt-root::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    width: 2px;
    height: 24px;
    background: var(--primary);
    transform: translateX(-50%);
}

.kt-root-icon {
    font-size: 1.5rem;
}

.kt-branches {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.kt-branch {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    position: relative;
    padding: 4px 0;
}

.kt-branch-line {
    width: 24px;
    height: 2px;
    background: var(--primary);
    flex-shrink: 0;
    margin-left: calc(50% - 12px);
    position: relative;
}

.kt-branch-line::before {
    content: '';
    position: absolute;
    left: -1px;
    top: 0;
    width: 2px;
    height: calc(100% + 52px);
    background: var(--primary);
}

.kt-branch:last-child .kt-branch-line::before {
    height: 28px;
}

.kt-branch-node {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    margin-left: 16px;
    flex: 1;
    transition: all 0.25s;
}

.kt-branch-node:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0,87,217,0.1);
    transform: translateX(4px);
}

.kt-branch-node .kt-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.kt-branch-node strong {
    font-size: 0.95rem;
    color: var(--text-main);
    white-space: nowrap;
}

.kt-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-left: auto;
    text-align: right;
}

.kt-footer {
    text-align: center;
    margin-top: 32px;
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background: var(--bg-main);
}

.products-duo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.product-promo-card {
    background: var(--glass-bg-strong);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 32px;
    text-decoration: none;
    color: inherit;
    text-align: center;
    transition: all 0.3s;
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
}

.product-promo-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--glass-shadow-hover);
    border-color: var(--glass-border-hover);
}

.ppc-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.ppc-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    background: var(--accent);
    color: #fff;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-promo-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-main);
}

.product-promo-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.ppc-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.ppc-action {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 500;
}

/* Tools Section */
.tools-section {
    padding: 80px 0;
    background: var(--bg-card);
}

.tool-teaser-card {
    background: linear-gradient(135deg, var(--bg-dark), #162240);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.ttc-left {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
}

.ttc-icon {
    font-size: 2.5rem;
}

.ttc-left h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.ttc-left p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.ttc-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ttc-tag {
    padding: 6px 16px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 20px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
}

/* ==================== KNOWLEDGE PAGE ==================== */

.knowledge-hero {
    background: linear-gradient(135deg, #0052a3 0%, #0066cc 50%, #3399ff 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.knowledge-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.knowledge-hero p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto;
}

.knowledge-tree {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 0;
}

.tree-root {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    padding: 16px 32px;
    margin-bottom: 32px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.tree-root::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    width: 2px;
    height: 20px;
    background: var(--primary);
    transform: translateX(-50%);
}

.tree-branches {
    margin-top: 12px;
}

.tree-branch {
    display: flex;
    align-items: center;
    margin: 6px 0;
    position: relative;
}

.tree-line {
    width: 30px;
    height: 2px;
    background: var(--primary);
    flex-shrink: 0;
    margin-left: calc(50% - 15px);
    position: relative;
}

.tree-node {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-left: 20px;
    flex: 1;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

.tree-node:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(0,87,217,0.12);
    transform: translateX(4px);
}

.tree-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.tree-info {
    flex: 1;
}

.tree-info h3 {
    font-size: 1.05rem;
    color: var(--text-main);
    margin-bottom: 4px;
}

.tree-info p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.tree-arrow {
    color: var(--primary);
    font-size: 1rem;
}

.article-structure-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.structure-item {
    text-align: center;
    padding: 14px 10px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.struct-num {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

/* Knowledge Detail */
.knowledge-detail {
    margin-top: 24px;
}

.knowledge-detail h1 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.knowledge-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 700px;
}

.knowledge-articles {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.k-article-card {
    padding: 24px;
    background: var(--glass-bg-strong);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    box-shadow: var(--glass-shadow);
}

.k-article-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.k-article-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.k-article-structure {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.struct-badge {
    padding: 4px 10px;
    background: rgba(0,102,204,0.08);
    color: var(--primary);
    border-radius: 6px;
    font-size: 0.75rem;
}

/* ==================== CASES PAGE ==================== */

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.case-card {
    background: var(--glass-bg-strong);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 28px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    box-shadow: var(--glass-shadow);
}

.case-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--glass-shadow-hover);
    border-color: var(--glass-border-hover);
}

.case-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.case-icon {
    font-size: 2rem;
}

.case-level {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 600;
}

.case-level.high {
    background: rgba(255,122,26,0.12);
    color: var(--accent);
}

.case-level.critical {
    background: rgba(220,38,38,0.12);
    color: #dc2626;
}

.case-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.case-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.5;
}

.case-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.case-meta span {
    padding: 3px 10px;
    background: rgba(0,102,204,0.06);
    border-radius: 6px;
    font-size: 0.72rem;
    color: var(--text-muted);
}

.case-read {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.82rem;
    color: var(--primary);
    font-weight: 500;
}

/* Case Detail */
.case-detail {
    margin-top: 24px;
}

.case-level-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.case-level-badge.high {
    background: rgba(255,122,26,0.12);
    color: var(--accent);
}

.case-level-badge.critical {
    background: rgba(220,38,38,0.12);
    color: #dc2626;
}

.case-detail h1 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.case-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.case-section {
    margin-bottom: 32px;
}

.case-section h2 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text-main);
}

.case-section p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.case-flow {
    padding-left: 24px;
    color: var(--text-secondary);
    line-height: 2;
}

.case-reasons {
    padding-left: 24px;
    color: var(--text-secondary);
    line-height: 2;
}

.defense-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.defense-card {
    padding: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
}

.defense-card h4 {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: var(--text-main);
}

.defense-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.case-cta {
    margin-top: 40px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(0,102,204,0.06), rgba(0,102,204,0.1));
    border: 1px solid rgba(0,102,204,0.15);
    border-radius: 16px;
    text-align: center;
}

.case-cta h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.case-cta-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ==================== SERVICES PAGE ==================== */

.service-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.service-pricing-card {
    background: var(--glass-bg-strong);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 28px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    box-shadow: var(--glass-shadow);
    display: flex;
    flex-direction: column;
}

.service-pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--glass-shadow-hover);
    border-color: var(--glass-border-hover);
}

.service-pricing-card.featured {
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, rgba(0,102,204,0.04), rgba(0,102,204,0.08));
}

.sp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.sp-icon {
    font-size: 2rem;
}

.sp-badge {
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    border-radius: 12px;
    font-size: 0.72rem;
    font-weight: 600;
}

.service-pricing-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.sp-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
    flex: 1;
}

.sp-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.sp-action, .sp-contact {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 500;
}

.service-cta-section {
    margin-top: 60px;
    text-align: center;
}

.service-cta-section h2 {
    font-size: 1.6rem;
    margin-bottom: 32px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-step {
    padding: 24px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    text-align: center;
    transition: all 0.25s;
}

.process-step:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0,87,217,0.08);
}

.step-num {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.process-step h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
    color: var(--text-main);
}

.process-step p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Service Detail Page */
.service-detail-page {
    margin-top: 24px;
}

.service-detail-page h1 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.service-subtitle {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 32px;
    font-weight: 500;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.service-feature {
    padding: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

.service-feature h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--text-main);
}

.service-feature p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.service-deliverables {
    padding: 24px;
    background: var(--glass-bg-strong);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: 32px;
    box-shadow: var(--glass-shadow);
}

.service-deliverables h2 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.service-deliverables ul {
    list-style: none;
    padding: 0;
}

.service-deliverables li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.service-deliverables li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--primary);
}

.service-cta-form {
    padding: 32px;
    background: linear-gradient(135deg, rgba(0,102,204,0.04), rgba(0,102,204,0.08));
    border: 1px solid rgba(0,102,204,0.12);
    border-radius: 16px;
    text-align: center;
}

.service-cta-form h2 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.service-cta-form p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* ==================== PRODUCTS PAGE ==================== */

.product-showcase {
    margin-top: 24px;
}

.product-main-card {
    background: var(--glass-bg-strong);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--glass-shadow);
    display: flex;
    gap: 40px;
    align-items: center;
}

.product-cover {
    width: 200px;
    height: 240px;
    background: linear-gradient(135deg, rgba(0,87,217,0.1), rgba(0,87,217,0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-cover-icon {
    font-size: 4rem;
}

.product-main-info {
    flex: 1;
}

.product-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--accent);
    color: #fff;
    border-radius: 12px;
    font-size: 0.72rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.product-main-info h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-main);
}

.product-main-info > p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.product-contents {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.product-content-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.pci-check {
    color: var(--primary);
    font-weight: 700;
}

.product-pricing {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.pp-option {
    padding: 12px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    text-align: center;
    flex: 1;
}

.pp-option.featured {
    border-color: var(--primary);
    background: rgba(0,87,217,0.04);
}

.pp-option strong {
    display: block;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.pp-option span {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* Handbook Detail */
.handbook-detail {
    margin-top: 24px;
}

.handbook-detail h1 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.handbook-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.handbook-chapters {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.handbook-chapter {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    align-items: flex-start;
}

.chapter-num {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.handbook-chapter h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: var(--text-main);
}

.handbook-chapter p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.handbook-pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.hp-card {
    padding: 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    text-align: center;
}

.hp-card.featured {
    border-color: var(--primary);
    background: rgba(0,87,217,0.04);
    position: relative;
}

.hp-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    background: var(--primary);
    color: #fff;
    border-radius: 12px;
    font-size: 0.72rem;
    font-weight: 600;
}

.hp-card h3 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--text-main);
}

.hp-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.hp-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.handbook-cta {
    text-align: center;
    padding: 24px;
    background: var(--glass-bg-strong);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

.handbook-cta p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

/* ==================== RISK SCANNER ==================== */

.risk-scanner-shell {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.risk-scanner-input {
    padding: 24px;
    background: var(--glass-bg-strong);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
}

.risk-scanner-input h3 {
    margin-bottom: 16px;
    color: var(--text-main);
}

.risk-scanner-input textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.9rem;
    resize: vertical;
    background: var(--bg-card);
    color: var(--text-secondary);
    margin-bottom: 16px;
    min-height: 280px;
    overflow-y: auto;
}

.risk-scanner-actions {
    display: flex;
    gap: 12px;
}

.risk-scanner-actions select {
    padding: 10px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.9rem;
    background: var(--bg-card);
    color: var(--text-secondary);
}

.risk-score-placeholder {
    padding: 24px;
    background: var(--glass-bg-strong);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.risk-score-placeholder h3 {
    margin-bottom: 20px;
    color: var(--text-main);
}

.risk-meter {
    margin-bottom: 24px;
}

.risk-meter-bar {
    height: 8px;
    background: linear-gradient(90deg, #22c55e, #eab308, #ef4444, #7c3aed);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.risk-meter-fill {
    height: 100%;
    background: rgba(255,255,255,0.3);
    border-radius: 4px;
    transition: width 0.5s;
}

.risk-meter-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.risk-result-placeholder {
    padding: 32px 16px;
    background: var(--glass-bg);
    border: 1px dashed var(--glass-border);
    border-radius: 12px;
}

.risk-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 12px;
}

.risk-result-placeholder p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.risk-note {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.coming-soon-tag {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(255,122,26,0.12);
    color: var(--accent);
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    vertical-align: middle;
}

/* ==================== RESPONSIVE UPDATES ==================== */

@media (max-width: 1024px) {
    .capabilities-grid { grid-template-columns: 1fr; }
    .cases-grid { grid-template-columns: 1fr; }
    .service-pricing-grid { grid-template-columns: 1fr; }
    .product-main-card { flex-direction: column; text-align: center; }
    .product-contents { grid-template-columns: 1fr; }
    .product-pricing { flex-direction: column; }
    .handbook-pricing { grid-template-columns: 1fr; }
    .risk-scanner-shell { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .article-structure-grid { grid-template-columns: repeat(3, 1fr); }
    .products-duo { grid-template-columns: 1fr; }
    .defense-cards { grid-template-columns: 1fr; }
    .service-features { grid-template-columns: 1fr; }
    .data-security-grid { grid-template-columns: 1fr; }
    .ktv2-branches::before { left: 52px; }
    .ktv2-card { margin-left: 32px; }
    .ktv2-card::before { left: -24px; width: 24px; }
    .ktv2-card::after { left: -28px; }
    .ktv2-card:hover::after { left: -30px; }
    .article-pipeline { justify-content: flex-start; }
}

@media (max-width: 768px) {
    .hero-new h1 { font-size: 1.8rem; }
    .hero-stats-new { gap: 24px; }
    .hero-cta-buttons { flex-direction: column; align-items: center; }
    .kt-desc { display: none; }
    .tool-teaser-card { flex-direction: column; text-align: center; }
    .ttc-right { flex-direction: column; }
    .capabilities-section { padding: 40px 0; }
    .knowledge-section { padding: 40px 0; }
    .products-section { padding: 40px 0; }
    .tools-section { padding: 40px 0; }
    .case-detail h1 { font-size: 1.5rem; }
    .article-structure-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: 1fr; }
    .product-cover { width: 120px; height: 160px; }
}

/* ==================== KNOWLEDGE TREE V2 ==================== */

.knowledge-tree-v2 {
    margin-top: 32px;
}

.ktv2-root {
    text-align: center;
    margin-bottom: 28px;
    position: relative;
}

.ktv2-root-inner {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #0a1628, #1a3a5c);
    border: 1px solid rgba(0,180,255,0.3);
    border-radius: 16px;
    box-shadow: 0 0 40px rgba(0,150,255,0.15);
    position: relative;
}

.ktv2-root-icon {
    font-size: 1.4rem;
}

.ktv2-root-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.04em;
}

.ktv2-root-inner::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    width: 2px;
    height: 16px;
    background: linear-gradient(to bottom, rgba(0,150,255,0.6), transparent);
    transform: translateX(-50%);
}

.ktv2-branches {
    display: flex;
    flex-direction: column;
    gap: 3px;
    position: relative;
}

.ktv2-branches::before {
    content: '';
    position: absolute;
    left: 74px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, rgba(0,150,255,0.4), rgba(0,150,255,0.1));
    border-radius: 1px;
}

.ktv2-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    margin-left: 50px;
    text-decoration: none;
    color: inherit;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    background: transparent;
}

.ktv2-card::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 50%;
    width: 36px;
    height: 2px;
    background: rgba(0,150,255,0.3);
    transform: translateY(-50%);
}

.ktv2-card::after {
    content: '';
    position: absolute;
    left: -40px;
    top: 50%;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
    box-shadow: 0 0 8px rgba(0,150,255,0.4);
}

.ktv2-card:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    box-shadow: var(--glass-shadow-hover);
    transform: translateX(6px);
}

.ktv2-card:hover::after {
    box-shadow: 0 0 16px rgba(0,150,255,0.8);
    width: 14px;
    height: 14px;
    left: -42px;
}

.ktv2-num {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(0,150,255,0.12);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: all 0.3s;
}

.ktv2-card:hover .ktv2-num {
    background: var(--primary);
    color: #fff;
}

.ktv2-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0,150,255,0.08), rgba(0,150,255,0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

.ktv2-card:hover .ktv2-icon-wrap {
    background: linear-gradient(135deg, rgba(0,150,255,0.15), rgba(0,150,255,0.25));
    transform: scale(1.1);
}

.ktv2-icon {
    font-size: 1.3rem;
}

.ktv2-body {
    flex: 1;
    min-width: 0;
}

.ktv2-body h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 4px;
}

.ktv2-body p {
    font-size: 0.82rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ktv2-arrow {
    color: var(--primary);
    font-size: 1rem;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s;
}

.ktv2-card:hover .ktv2-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ==================== DATA SECURITY CARDS ==================== */

.data-security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.ds-card {
    background: var(--glass-bg-strong);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
}

.ds-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.ds-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--glass-shadow-hover);
    border-color: var(--glass-border-hover);
}

.ds-card:hover::before {
    transform: scaleX(1);
}

.ds-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.ds-icon {
    font-size: 2rem;
}

.ds-badge {
    padding: 4px 12px;
    background: rgba(0,150,255,0.1);
    color: var(--primary);
    border-radius: 12px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.ds-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 10px;
}

.ds-card > p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.ds-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.ds-tags span {
    padding: 4px 10px;
    background: rgba(0,0,0,0.03);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: all 0.2s;
}

.ds-card:hover .ds-tags span {
    border-color: rgba(0,150,255,0.2);
    color: var(--primary);
}

/* ==================== ARTICLE PIPELINE ==================== */

.article-pipeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 24px;
    padding: 32px 20px;
    background: var(--glass-bg-strong);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
    flex-wrap: wrap;
    overflow-x: auto;
}

.ap-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.ap-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0,87,217,0.2);
}

.ap-step:hover .ap-circle {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(0,87,217,0.35);
}

.ap-label {
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.ap-connector {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, rgba(0,87,217,0.3), rgba(0,87,217,0.5));
    margin: 0 4px;
    flex-shrink: 0;
    margin-bottom: 24px;
}

/* ==================== TOOLS TEASER REDESIGN ==================== */

.tools-section-new {
    padding: 60px 0;
}

.tool-teaser-new {
    background: linear-gradient(135deg, #0a1628 0%, #122a44 40%, #0d2137 100%);
    border: 1px solid rgba(0,150,255,0.15);
    border-radius: 20px;
    padding: 40px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    overflow: hidden;
}

.tool-teaser-new::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(0,150,255,0.06) 0%, transparent 60%),
                radial-gradient(circle at 70% 50%, rgba(0,200,255,0.04) 0%, transparent 50%);
    pointer-events: none;
}

.tool-teaser-new::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,180,255,0.3), transparent);
}

.ttn-left {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.ttn-icon-box {
    width: 60px; height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0,150,255,0.15), rgba(0,150,255,0.25));
    border: 1px solid rgba(0,180,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.ttn-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(255,255,255,0.95);
    margin-bottom: 6px;
}

.ttn-info p {
    font-size: 0.9rem;
    color: rgba(180,220,255,0.7);
    line-height: 1.5;
    max-width: 500px;
}

.ttn-right {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.ttn-tag {
    padding: 6px 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    font-size: 0.82rem;
    color: rgba(180,220,255,0.8);
    white-space: nowrap;
}

.ttn-btn {
    padding: 12px 28px;
    background: linear-gradient(135deg, rgba(0,150,255,0.2), rgba(0,150,255,0.3));
    border: 1px solid rgba(0,180,255,0.3);
    border-radius: 10px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
}

.ttn-btn:hover {
    background: linear-gradient(135deg, rgba(0,150,255,0.35), rgba(0,150,255,0.5));
    border-color: rgba(0,200,255,0.5);
    color: #fff;
    box-shadow: 0 4px 16px rgba(0,150,255,0.2);
}

@media (max-width: 768px) {
    .tool-teaser-new { flex-direction: column; text-align: center; padding: 32px; }
    .ttn-right { flex-direction: column; }
    .bottom-duo { grid-template-columns: 1fr; }
    .bottom-duo-card { flex-direction: column; text-align: center; }
    .bdc-tag, .bdc-arrow { margin-left: 0; }
    .knowledge-layout { grid-template-columns: 1fr; }
    .ai-domain-row { grid-template-columns: 1fr; }
    .ai-domain-row-2 { grid-template-columns: 1fr; }
}

/* ==================== AI HERO ==================== */

.ai-hero {
    background: linear-gradient(135deg, #080d1a 0%, #0f1f38 50%, #0a1628 100%);
    color: #fff;
    padding: 72px 0 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ai-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(0,150,255,0.06) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(100,50,255,0.04) 0%, transparent 50%);
}

.ai-hero > .container { position: relative; z-index: 1; }

.ai-hero-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: rgba(0,180,255,0.7);
    margin-bottom: 16px;
    font-weight: 600;
}

.ai-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #80c8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-hero-desc {
    font-size: 1.05rem;
    color: rgba(180,220,255,0.75);
    max-width: 680px;
    margin: 0 auto 24px;
    line-height: 1.7;
}

.ai-hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: rgba(160,200,240,0.6);
}

.ai-hero-dot { color: rgba(0,150,255,0.4); }

/* ==================== AI DOMAIN CARDS ==================== */

.ai-domain-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.ai-domain-row-2 {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 24px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.ai-domain-card {
    background: var(--glass-bg-strong);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    padding: 32px 28px 28px;
    text-decoration: none;
    color: inherit;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--glass-shadow);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.ai-domain-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--accent, var(--primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ai-domain-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.08);
    border-color: rgba(0,120,220,0.2);
}

.ai-domain-card:hover::after {
    transform: scaleX(1);
}

.adc-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.adc-icon-box {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0,120,220,0.1), rgba(0,120,220,0.18));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.ai-domain-card:hover .adc-icon-box {
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(0,120,220,0.15);
}

.adc-idx {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

.ai-domain-card h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
}

.ai-domain-card > p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 16px;
}

.adc-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px;
}

.adc-topic {
    padding: 3px 10px;
    background: rgba(0,0,0,0.03);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.73rem;
    color: var(--text-muted);
    transition: all 0.25s;
}

.ai-domain-card:hover .adc-topic {
    border-color: rgba(0,120,220,0.2);
    background: rgba(0,120,220,0.04);
    color: var(--primary);
}

.adc-more {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 500;
    transition: all 0.25s;
}

.ai-domain-card:hover .adc-more {
    letter-spacing: 0.04em;
}

@media (max-width: 1024px) {
    .ai-domain-row { grid-template-columns: repeat(2, 1fr); }
    .ai-domain-row-2 { grid-template-columns: repeat(2, 1fr); max-width: none; }
}

@media (max-width: 768px) {
    .ai-hero h1 { font-size: 2rem; }
    .ai-hero-stats { flex-direction: column; gap: 4px; }
    .ai-hero-dot { display: none; }
    .ai-domain-row { grid-template-columns: 1fr; }
    .ai-domain-row-2 { grid-template-columns: 1fr; max-width: none; }
    .cases-grid-v2 { grid-template-columns: 1fr 1fr; }
    .resource-grid { grid-template-columns: 1fr; }
    .why-ai-section { grid-template-columns: 1fr; }
}

/* ==================== SCANNER BANNER PULSE ==================== */

@keyframes scanner-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes scanner-bounce {
    0%, 100% { transform: translateY(0); }
    10% { transform: translateY(-3px); }
    20% { transform: translateY(0); }
}

.scanner-banner {
    animation: scanner-bounce 3s ease-in-out 0.5s;
}

/* ==================== WHY AI SECURITY ==================== */

.why-ai-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.why-ai-card {
    background: var(--glass-bg-strong);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 24px;
    box-shadow: var(--glass-shadow);
    transition: all 0.25s;
}

.why-ai-card:hover {
    transform: translateY(-2px);
    border-color: var(--glass-border-hover);
}

.wa-icon {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.why-ai-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
}

.why-ai-card p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==================== CASES GRID V2 ==================== */

.cases-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.case-card-v2 {
    background: var(--glass-bg-strong);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 28px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    box-shadow: var(--glass-shadow);
    display: flex;
    flex-direction: column;
}

.case-card-v2:hover {
    transform: translateY(-4px);
    box-shadow: var(--glass-shadow-hover);
    border-color: var(--glass-border-hover);
}

.ccv2-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.ccv2-icon { font-size: 2rem; }

.ccv2-badge {
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 600;
}

.ccv2-badge.danger { background: rgba(220,38,38,0.1); color: #dc2626; }
.ccv2-badge.warning { background: rgba(245,158,11,0.1); color: #d97706; }

.case-card-v2 h3 {
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-main);
}

.case-card-v2 > p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 14px;
}

.ccv2-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.ccv2-tags span {
    padding: 3px 9px;
    background: rgba(0,120,220,0.06);
    border: 1px solid rgba(0,120,220,0.1);
    border-radius: 5px;
    font-size: 0.72rem;
    color: var(--primary);
}

@media (max-width: 1024px) {
    .cases-grid-v2 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .cases-grid-v2 { grid-template-columns: 1fr; }
    .resource-grid { grid-template-columns: 1fr; }
}

/* ==================== RESOURCE DOWNLOAD CARDS ==================== */

.resource-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.resource-card {
    display: flex;
    background: var(--glass-bg-strong);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: var(--glass-shadow);
}

.resource-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--glass-shadow-hover);
    border-color: var(--glass-border-hover);
}

.rc-cover {
    width: 140px;
    flex-shrink: 0;
    background: linear-gradient(160deg, #0d1b2a 0%, #1b2838 50%, #0f2333 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255,255,255,0.06);
}

.rc-cover-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.rc-cover-icon { font-size: 2.5rem; }

.rc-cover-label {
    padding: 3px 10px;
    background: rgba(0,180,255,0.12);
    color: rgba(160,210,255,0.9);
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.rc-body {
    flex: 1;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
}

.rc-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
}

.rc-body > p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
    flex: 1;
    margin-bottom: 10px;
}

.rc-meta {
    display: flex;
    gap: 12px;
    font-size: 0.72rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.rc-coming {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(245,158,11,0.08);
    color: #d97706;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 500;
    margin-top: 8px;
}

.resource-empty {
    text-align: center;
    padding: 48px;
    color: var(--text-muted);
    background: var(--glass-bg);
    border: 1px dashed var(--glass-border);
    border-radius: 16px;
}

.resource-empty p { margin-top: 12px; font-size: 0.9rem; }

@media (max-width: 1024px) {
    .resource-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .resource-card { flex-direction: column; }
    .rc-cover { width: 100%; height: 100px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
}

/* ==================== KNOWLEDGE TWO-COLUMN LAYOUT ==================== */

.knowledge-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    margin-top: 24px;
    align-items: start;
}

.kl-side {
    position: sticky;
    top: 80px;
}

.kl-side-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}

.kl-side-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    transition: all 0.25s;
}

.kl-side-card:hover {
    border-color: var(--glass-border-hover);
    transform: translateX(4px);
}

.kl-sc-icon {
    font-size: 1.3rem;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(0,120,220,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.kl-side-card h4 {
    font-size: 0.88rem;
    color: var(--text-main);
    margin-bottom: 2px;
}

.kl-side-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ==================== HIGHLIGHT AI CARD ==================== */

.domain-card.highlight-ai {
    border-color: rgba(0,150,255,0.25);
    background: linear-gradient(135deg, rgba(0,120,220,0.04), rgba(0,120,220,0.08));
}

.domain-card.highlight-ai .domain-icon {
    background: linear-gradient(135deg, rgba(0,120,220,0.18), rgba(0,150,255,0.28));
}

/* ==================== BOTTOM DUO ==================== */

.bottom-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 24px;
}

.bottom-duo-card {
    background: var(--glass-bg-strong);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    box-shadow: var(--glass-shadow);
}

.bottom-duo-card.clickable:hover {
    transform: translateY(-2px);
    box-shadow: var(--glass-shadow-hover);
    border-color: var(--glass-border-hover);
}

.bdc-icon { font-size: 2rem; flex-shrink: 0; }
.bottom-duo-card h3 { font-size: 1rem; margin-bottom: 4px; color: var(--text-main); }
.bottom-duo-card p { font-size: 0.85rem; color: var(--text-muted); }

.bdc-tag {
    margin-left: auto;
    padding: 4px 12px;
    background: rgba(0,150,255,0.08);
    color: var(--primary);
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.bdc-arrow {
    margin-left: auto;
    color: var(--primary);
    font-size: 1.1rem;
}

/* ==================== ABOUT PAGE REDESIGN ==================== */

.about-hero-card {
    background: var(--glass-bg-strong);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 48px 32px;
    text-align: center;
    box-shadow: var(--glass-shadow);
    margin-bottom: 24px;
}

.ah-avatar {
    width: 88px; height: 88px;
    border-radius: 50%;
    margin: 0 auto 24px;
    box-shadow: 0 0 32px rgba(0,120,200,0.25);
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0,102,204,0.1), rgba(0,102,204,0.2));
    display: flex; align-items: center; justify-content: center;
}

.ah-avatar img { width: 56px; height: 56px; object-fit: contain; }

.about-hero-card h1 { font-size: 1.7rem; margin-bottom: 8px; color: var(--text-main); }

.ah-sub {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.ah-tags {
    display: flex; justify-content: center; gap: 10px; flex-wrap: wrap;
}

.ah-tags span {
    padding: 5px 14px;
    background: rgba(0,102,204,0.06);
    border: 1px solid rgba(0,102,204,0.1);
    border-radius: 16px;
    font-size: 0.8rem;
    color: var(--primary);
}

.about-content-card {
    background: var(--glass-bg-strong);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--glass-shadow);
    margin-bottom: 24px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.about-col h3 { font-size: 1.15rem; margin-bottom: 16px; color: var(--text-main); }
.about-col p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.8; }

.about-list {
    list-style: none;
    padding: 0;
    color: var(--text-secondary);
    font-size: 0.93rem;
    line-height: 2.2;
}

.about-list li::before {
    content: '→ ';
    color: var(--primary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; gap: 28px; }
    .about-hero-card { padding: 32px 20px; }
}
