        :root {
            --primary: #e03131;
            --primary-deep: #c62828;
            --blue-dark: #0b1e33;
            --blue-mid: #0f2b47;
            --text-primary: #1a1a2e;
            --text-secondary: #4a5568;
            --text-muted: #64748b;
            --bg-white: #ffffff;
            --bg-slate: #f8fafc;
            --bg-cool: #f0f4f8;
            --border: #e2e8f0;
            --border-light: #edf2f7;
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
            --shadow-md: 0 6px 24px rgba(0,0,0,0.06);
            --shadow-lg: 0 16px 48px rgba(0,0,0,0.08);
            --shadow-xl: 0 24px 64px rgba(0,0,0,0.10);
            --radius-sm: 8px;
            --radius: 14px;
            --radius-lg: 20px;
            --radius-xl: 28px;
            --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
            --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", "Helvetica Neue", sans-serif;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: var(--font-sans);
            color: var(--text-primary);
            background-color: var(--bg-white);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 28px;
        }
        /* 头部导航 */
        .header {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 88px;
            display: flex;
            align-items: center;
            z-index: 100;
            background: transparent;
            transition: background var(--transition), box-shadow var(--transition);
        }
        .header.scrolled {
            background: rgba(255,255,255,0.92);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            box-shadow: var(--shadow-sm);
            position: fixed;
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            gap: 40px;
        }
        .logo-area {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .logo-icon {
            width: 36px;
            height: 36px;
            flex-shrink: 0;
        }
        .logo-text {
            font-size: 21px;
            font-weight: 800;
            color: #0b2b4a;
            letter-spacing: -0.4px;
            white-space: nowrap;
        }
        .logo-dot {
            display: inline-block;
            width: 7px;
            height: 7px;
            background: var(--primary);
            border-radius: 50%;
            margin-left: 1px;
            vertical-align: middle;
            position: relative;
            top: -6px;
        }
        .nav-list {
            display: flex;
            list-style: none;
            gap: 8px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .nav-item {
            font-size: 14.5px;
            font-weight: 600;
            color: var(--text-primary);
            padding: 8px 16px;
            border-radius: 22px;
            transition: all var(--transition);
            white-space: nowrap;
        }
        .nav-item:hover {
            color: #005fa9;
            background: rgba(0,95,169,0.05);
        }
        .nav-item.nav-cta {
            background: var(--primary);
            color: #fff;
            font-weight: 700;
            padding: 10px 22px;
            border-radius: 24px;
        }
        .nav-item.nav-cta:hover {
            background: var(--primary-deep);
            color: #fff;
            box-shadow: 0 4px 14px rgba(224,49,49,0.30);
        }
        .nav-item.active-network {
            color: #005fa9;
            background: rgba(0,95,169,0.08);
            font-weight: 700;
        }
        /* 页面头部 */
        .network-hero {
            padding: 160px 0 60px;
            background: linear-gradient(155deg, #f5f9fd 0%, #eaf2fa 30%, #f8fafc 60%, #f0f5fb 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .network-hero::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle at 40% 50%, rgba(0,120,210,0.04) 0%, transparent 65%);
            top: -80px;
            left: -100px;
            border-radius: 50%;
            pointer-events: none;
        }
        .section-tag {
            display: inline-block;
            font-size: 13px;
            font-weight: 700;
            color: #005fa9;
            background: rgba(0,95,169,0.07);
            padding: 6px 16px;
            border-radius: 20px;
            margin-bottom: 16px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            position: relative;
            z-index: 1;
        }
        .network-hero h1 {
            font-size: 44px;
            font-weight: 850;
            color: #0b1e33;
            margin-bottom: 20px;
            letter-spacing: -0.6px;
            position: relative;
            z-index: 1;
        }
        .network-hero .sub-desc {
            font-size: 17px;
            color: var(--text-secondary);
            max-width: 720px;
            margin: 0 auto 40px;
            line-height: 1.7;
            position: relative;
            z-index: 1;
        }
        .creative-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #fff;
            border: 2px dashed #cbd5e1;
            padding: 16px 32px;
            border-radius: 32px;
            font-weight: 700;
            color: #0b1e33;
            transition: all var(--transition);
            position: relative;
            z-index: 1;
        }
        .creative-cta:hover {
            border-color: #005fa9;
            background: #f0f7ff;
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        .creative-cta .arrow {
            font-size: 18px;
            color: #005fa9;
        }
        .section {
            padding: 80px 0;
        }
        .section-alt {
            background: var(--bg-slate);
        }
        .section-header {
            text-align: center;
            margin-bottom: 56px;
        }
        .section-header h2 {
            font-size: 34px;
            font-weight: 800;
            color: #0b1e33;
            letter-spacing: -0.4px;
            margin-bottom: 14px;
        }
        .section-header p {
            font-size: 16px;
            color: var(--text-secondary);
            max-width: 680px;
            margin: 0 auto;
            line-height: 1.7;
        }
        /* 协议对比卡片 */
        .protocol-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }
        .protocol-card {
            background: #fff;
            border: 1px solid var(--border-light);
            border-radius: var(--radius-lg);
            padding: 38px 30px;
            transition: all var(--transition);
            position: relative;
            overflow: hidden;
        }
        .protocol-card:hover {
            box-shadow: var(--shadow-xl);
            border-color: transparent;
            transform: translateY(-3px);
        }
        .protocol-card .proto-badge {
            display: inline-block;
            font-size: 12px;
            font-weight: 700;
            padding: 5px 12px;
            border-radius: 14px;
            margin-bottom: 18px;
            letter-spacing: 0.4px;
        }
        .proto-badge.lynx {
            background: #d1fae5;
            color: #065f46;
        }
        .proto-badge.openvpn {
            background: #dbeafe;
            color: #1d4ed8;
        }
        .protocol-card h3 {
            font-size: 24px;
            font-weight: 750;
            color: #0b1e33;
            margin-bottom: 14px;
            letter-spacing: -0.2px;
        }
        .protocol-card .proto-desc {
            font-size: 14.5px;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 18px;
            text-align: justify;
        }
        .protocol-card .tech-specs {
            list-style: none;
            display: grid;
            gap: 10px;
        }
        .protocol-card .tech-specs li {
            font-size: 13.5px;
            color: var(--text-secondary);
            padding-left: 22px;
            position: relative;
            line-height: 1.6;
        }
        .protocol-card .tech-specs li::before {
            content: "●";
            position: absolute;
            left: 0;
            font-size: 10px;
            color: #005fa9;
            top: 2px;
        }
        /* 智能路由区 */
        .route-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        .route-card {
            background: #fff;
            border: 1px solid var(--border-light);
            border-radius: var(--radius-lg);
            padding: 30px 24px;
            transition: all var(--transition);
            text-align: left;
        }
        .route-card:hover {
            box-shadow: var(--shadow-lg);
            border-color: transparent;
        }
        .route-icon {
            font-size: 36px;
            margin-bottom: 16px;
            display: block;
        }
        .route-card h4 {
            font-size: 17px;
            font-weight: 750;
            color: #0b1e33;
            margin-bottom: 10px;
        }
        .route-card p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
            text-align: justify;
        }
        .route-card .route-tag {
            display: inline-block;
            font-size: 11px;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 12px;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }
        .route-tag.ai {
            background: #ede9fe;
            color: #6d28d9;
        }
        .route-tag.speed {
            background: #fef3c7;
            color: #b45309;
        }
        /* 全球架构 */
        .arch-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 28px;
        }
        .arch-card {
            background: #fff;
            border: 1px solid var(--border-light);
            border-radius: var(--radius-lg);
            padding: 32px 26px;
            display: flex;
            gap: 20px;
            transition: all var(--transition);
        }
        .arch-card:hover {
            box-shadow: var(--shadow-lg);
            border-color: transparent;
        }
        .arch-icon {
            font-size: 40px;
            flex-shrink: 0;
        }
        .arch-content h4 {
            font-size: 17px;
            font-weight: 750;
            color: #0b1e33;
            margin-bottom: 8px;
        }
        .arch-content p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
        }
        .footer {
            padding: 44px 0;
            background: #080e16;
            border-top: 1px solid #1e293b;
            color: #64748b;
            font-size: 13.5px;
        }
        .footer-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .footer-links {
            display: flex;
            gap: 22px;
            flex-wrap: wrap;
        }
        .footer-links a {
            color: #94a3b8;
            transition: color var(--transition);
            font-weight: 500;
        }
        .footer-links a:hover {
            color: #cbd5e1;
        }
        @media (max-width: 960px) {
            .protocol-grid,
            .arch-grid {
                grid-template-columns: 1fr;
            }
            .route-grid {
                grid-template-columns: 1fr 1fr;
            }
            .network-hero h1 {
                font-size: 32px;
            }
            .header {
                position: relative;
                height: auto;
                padding: 16px 0;
                background: #fff;
                border-bottom: 1px solid var(--border-light);
            }
            .header-inner {
                flex-direction: column;
                gap: 14px;
            }
            .nav-list {
                gap: 4px;
            }
            .nav-item {
                font-size: 13px;
                padding: 6px 12px;
            }
        }
        @media (max-width: 640px) {
            .route-grid {
                grid-template-columns: 1fr;
            }
            .network-hero h1 {
                font-size: 28px;
            }
        }