        :root {
            --bg-deep: #020617;
            --bg-surface: #0a0f1f;
            --bg-glass: rgba(10, 16, 34, 0.7);
            --border-subtle: rgba(56, 189, 248, 0.18);
            --border-glow: rgba(56, 189, 248, 0.45);
            --accent-sky: #38bdf8;
            --accent-violet: #818cf8;
            --accent-emerald: #34d399;
            --accent-amber: #fbbf24;
            --accent-rose: #fb7185;
            --text-head: #f1f5f9;
            --text-body: #b0bec5;
            --text-muted: #64748b;
            --radius-sm: 10px;
            --radius-md: 16px;
            --radius-lg: 22px;
            --radius-xl: 28px;
            --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "PingFang SC", "Hiragino Sans GB", "Segoe UI", -apple-system, BlinkMacSystemFont, "Microsoft YaHei", sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background: var(--bg-deep);
            color: var(--text-body);
            line-height: 1.65;
            overflow-x: hidden;
            position: relative;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* 动态网格背景 */
        .mesh-bg {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: -3;
            background-image:
                linear-gradient(to right, rgba(56, 189, 248, 0.04) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(56, 189, 248, 0.04) 1px, transparent 1px);
            background-size: 44px 44px;
            mask-image: radial-gradient(ellipse 70% 60% at 50% 35%, black 20%, transparent 75%);
            -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 35%, black 20%, transparent 75%);
        }

        /* 呼吸光晕 */
        .ambient-glow-top {
            position: fixed;
            top: -280px;
            left: 50%;
            transform: translateX(-50%);
            width: 900px;
            height: 650px;
            background: radial-gradient(circle, rgba(129, 140, 248, 0.12) 0%, rgba(56, 189, 248, 0.06) 35%, transparent 70%);
            filter: blur(90px);
            pointer-events: none;
            z-index: -2;
            animation: breatheGlow 7s ease-in-out infinite;
        }

        .ambient-glow-bottom {
            position: fixed;
            bottom: -200px;
            right: -150px;
            width: 600px;
            height: 500px;
            background: radial-gradient(circle, rgba(52, 211, 153, 0.08) 0%, transparent 70%);
            filter: blur(80px);
            pointer-events: none;
            z-index: -2;
            animation: breatheGlow 9s ease-in-out infinite reverse;
        }

        @keyframes breatheGlow {
            0%,
            100% {
                opacity: 0.7;
            }
            50% {
                opacity: 1;
            }
        }

        /* ==================== 导航栏 ==================== */
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(2, 6, 23, 0.75);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            transition: var(--transition-smooth);
        }

        .nav-container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0.9rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
        }

        .brand-logo {
            display: flex;
            align-items: center;
            gap: 0.7rem;
            text-decoration: none;
            flex-shrink: 0;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--accent-sky), var(--accent-violet));
            border-radius: 11px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 18px rgba(56, 189, 248, 0.45);
            transition: var(--transition-smooth);
        }

        .brand-logo:hover .logo-icon {
            box-shadow: 0 0 28px rgba(129, 140, 248, 0.7);
            transform: scale(1.04);
        }

        .logo-text {
            font-size: 1.35rem;
            font-weight: 900;
            letter-spacing: -0.4px;
            background: linear-gradient(90deg, #f1f5f9, #cbd5e1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            gap: 1.6rem;
            list-style: none;
            flex-wrap: wrap;
            justify-content: center;
        }

        .nav-links a {
            color: var(--text-body);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            padding: 0.4rem 0.6rem;
            border-radius: 6px;
            transition: var(--transition-fast);
            white-space: nowrap;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 60%;
            height: 2px;
            background: var(--accent-sky);
            border-radius: 2px;
            transition: transform var(--transition-smooth);
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--accent-sky);
        }
        .nav-links a:hover::after,
        .nav-links a.active::after {
            transform: translateX(-50%) scaleX(1);
        }

        .nav-actions .btn-neon {
            background: linear-gradient(135deg, var(--accent-sky), var(--accent-violet));
            color: #fff;
            padding: 0.55rem 1.3rem;
            border-radius: 25px;
            text-decoration: none;
            font-size: 0.88rem;
            font-weight: 600;
            box-shadow: 0 0 22px rgba(56, 189, 248, 0.35);
            transition: var(--transition-smooth);
            border: 1px solid rgba(255, 255, 255, 0.18);
            white-space: nowrap;
            letter-spacing: 0.3px;
        }
        .nav-actions .btn-neon:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 32px rgba(129, 140, 248, 0.55);
        }

        /* ==================== Hero 区域 ==================== */
        .hero-section {
            max-width: 1320px;
            margin: 3.5rem auto 5rem;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 3rem;
            align-items: center;
        }

        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.55rem;
            background: rgba(52, 211, 153, 0.08);
            border: 1px solid rgba(52, 211, 153, 0.3);
            color: var(--accent-emerald);
            padding: 0.35rem 1.1rem;
            border-radius: 99px;
            font-size: 0.84rem;
            font-weight: 600;
            margin-bottom: 1.4rem;
            letter-spacing: 0.3px;
        }
        .hero-tag .pulse-dot {
            width: 9px;
            height: 9px;
            background: var(--accent-emerald);
            border-radius: 50%;
            animation: pulseDot 1.8s ease-in-out infinite;
        }
        @keyframes pulseDot {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.7);
            }
            50% {
                box-shadow: 0 0 0 14px rgba(52, 211, 153, 0);
            }
        }

        .hero-title {
            font-size: 3.1rem;
            font-weight: 900;
            line-height: 1.18;
            color: var(--text-head);
            margin-bottom: 1.1rem;
            letter-spacing: -0.6px;
        }
        .hero-title .gradient-span {
            background: linear-gradient(135deg, var(--accent-sky) 0%, var(--accent-violet) 55%, var(--accent-rose) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-desc {
            font-size: 1.1rem;
            color: var(--text-body);
            margin-bottom: 2rem;
            max-width: 540px;
            line-height: 1.7;
        }

        .hero-btns {
            display: flex;
            gap: 1.1rem;
            align-items: center;
            flex-wrap: wrap;
        }
        .btn-secondary-glass {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.14);
            color: #fff;
            padding: 0.75rem 1.7rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            backdrop-filter: blur(8px);
            transition: var(--transition-smooth);
            font-size: 0.9rem;
        }
        .btn-secondary-glass:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--accent-sky);
            box-shadow: 0 0 20px rgba(56, 189, 248, 0.2);
        }

        /* 实时延迟面板 */
        .latency-panel {
            background: var(--bg-glass);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-xl);
            padding: 2rem 1.8rem;
            backdrop-filter: blur(18px);
            box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
            position: relative;
            overflow: hidden;
        }
        .latency-panel::before {
            content: '';
            position: absolute;
            top: -40px;
            right: -40px;
            width: 120px;
            height: 120px;
            background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .latency-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.3rem;
            padding-bottom: 0.7rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        }
        .latency-title-row {
            display: flex;
            align-items: center;
            gap: 0.55rem;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            color: var(--accent-sky);
        }
        .latency-badge {
            font-size: 0.75rem;
            color: var(--accent-emerald);
            background: rgba(52, 211, 153, 0.1);
            padding: 0.2rem 0.7rem;
            border-radius: 99px;
            font-weight: 600;
        }
        .node-row {
            background: rgba(2, 6, 23, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.04);
            padding: 0.75rem 1.1rem;
            border-radius: var(--radius-sm);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.88rem;
            margin-bottom: 0.55rem;
            transition: var(--transition-fast);
        }
        .node-row:hover {
            border-color: var(--border-glow);
            background: rgba(56, 189, 248, 0.04);
        }
        .node-loc {
            color: #e2e8f0;
            display: flex;
            align-items: center;
            gap: 0.55rem;
        }
        .node-loc .flag-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            display: inline-block;
            flex-shrink: 0;
        }
        .flag-hk {
            background: #ff6b6b;
            box-shadow: 0 0 6px #ff6b6b;
        }
        .flag-jp {
            background: #fbbf24;
            box-shadow: 0 0 6px #fbbf24;
        }
        .flag-us {
            background: #38bdf8;
            box-shadow: 0 0 6px #38bdf8;
        }
        .flag-sg {
            background: #34d399;
            box-shadow: 0 0 6px #34d399;
        }
        .ping-tag {
            color: var(--accent-emerald);
            font-weight: 700;
            font-family: 'SF Mono', 'JetBrains Mono', 'Courier New', monospace;
            background: rgba(52, 211, 153, 0.08);
            padding: 0.2rem 0.65rem;
            border-radius: 6px;
            font-size: 0.82rem;
            letter-spacing: 0.5px;
        }

        /* ==================== 通用区块 ==================== */
        .section-container {
            max-width: 1320px;
            margin: 0 auto 5.5rem;
            padding: 0 2rem;
        }
        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        .section-title {
            font-size: 2.1rem;
            color: #fff;
            font-weight: 800;
            margin-bottom: 0.7rem;
            letter-spacing: -0.3px;
        }
        .section-subtitle {
            color: var(--text-body);
            max-width: 620px;
            margin: 0 auto;
            font-size: 0.95rem;
        }

        /* ==================== 创意版块：延迟对比仪表盘 ==================== */
        .compare-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            background: var(--bg-glass);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-xl);
            padding: 2.5rem 2rem;
            backdrop-filter: blur(14px);
            align-items: center;
        }
        .compare-visual {
            display: flex;
            flex-direction: column;
            gap: 1.4rem;
        }
        .compare-bar-wrap {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .compare-label {
            width: 100px;
            font-size: 0.85rem;
            color: #cbd5e1;
            font-weight: 600;
            text-align: right;
            flex-shrink: 0;
        }
        .compare-track {
            flex: 1;
            height: 18px;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 99px;
            overflow: hidden;
            position: relative;
        }
        .compare-fill {
            height: 100%;
            border-radius: 99px;
            transition: width 0.6s ease;
            position: relative;
        }
        .compare-fill.quickq {
            background: linear-gradient(90deg, var(--accent-sky), var(--accent-violet));
            box-shadow: 0 0 12px rgba(56, 189, 248, 0.4);
        }
        .compare-fill.others {
            background: rgba(251, 113, 133, 0.5);
        }
        .compare-val {
            font-weight: 700;
            font-size: 0.85rem;
            color: #fff;
            min-width: 55px;
            text-align: left;
            font-family: 'SF Mono', 'JetBrains Mono', monospace;
        }
        .compare-highlight {
            text-align: center;
            background: rgba(2, 6, 23, 0.7);
            border-radius: var(--radius-md);
            padding: 2rem 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }
        .compare-highlight .big-num {
            font-size: 4.5rem;
            font-weight: 900;
            color: var(--accent-emerald);
            font-family: 'SF Mono', 'JetBrains Mono', monospace;
            line-height: 1;
        }
        .compare-highlight .big-num-sub {
            font-size: 1rem;
            color: var(--text-muted);
            margin-top: 0.4rem;
        }

        /* ==================== 创意版块：场景加速卡片 ==================== */
        .scene-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.4rem;
        }
        .scene-card {
            background: var(--bg-glass);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 1.8rem 1.4rem;
            text-align: center;
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }
        .scene-card:hover {
            transform: translateY(-6px);
            border-color: var(--border-glow);
            box-shadow: 0 14px 35px rgba(56, 189, 248, 0.15);
        }
        .scene-card .scene-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: rgba(56, 189, 248, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            transition: var(--transition-smooth);
        }
        .scene-card:hover .scene-icon {
            background: rgba(56, 189, 248, 0.18);
            box-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
        }
        .scene-card h3 {
            color: #fff;
            font-size: 1.05rem;
            margin-bottom: 0.5rem;
        }
        .scene-card p {
            font-size: 0.84rem;
            color: var(--text-body);
            line-height: 1.55;
        }
        .scene-tag {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 0.2rem 0.7rem;
            border-radius: 99px;
            margin-top: 0.8rem;
            background: rgba(52, 211, 153, 0.1);
            color: var(--accent-emerald);
            border: 1px solid rgba(52, 211, 153, 0.3);
        }

        /* ==================== 四维技术引擎 ==================== */
        .grid-4 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }
        .card-feature {
            background: var(--bg-glass);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-lg);
            padding: 2rem 1.4rem;
            transition: var(--transition-smooth);
        }
        .card-feature:hover {
            transform: translateY(-5px);
            border-color: var(--border-glow);
            box-shadow: 0 12px 32px rgba(129, 140, 248, 0.18);
        }
        .feature-icon {
            width: 46px;
            height: 46px;
            border-radius: 12px;
            background: rgba(56, 189, 248, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.1rem;
            transition: var(--transition-smooth);
        }
        .card-feature:hover .feature-icon {
            background: rgba(56, 189, 248, 0.2);
            box-shadow: 0 0 16px rgba(56, 189, 248, 0.25);
        }
        .card-feature h3 {
            color: #fff;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }
        .card-feature p {
            font-size: 0.86rem;
            color: var(--text-body);
            line-height: 1.55;
        }

        /* ==================== 智能分流 ==================== */
        .smart-route-box {
            background: var(--bg-glass);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-xl);
            padding: 2.5rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
            align-items: center;
            backdrop-filter: blur(14px);
        }
        .route-visual-card {
            background: rgba(2, 6, 23, 0.6);
            border: 1px dashed rgba(56, 189, 248, 0.35);
            border-radius: var(--radius-lg);
            padding: 2rem 1.5rem;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 220px;
        }
        .route-visual-card .route-icon-large {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: rgba(56, 189, 248, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
        }
        .route-visual-card p {
            color: var(--text-body);
            font-size: 0.9rem;
            max-width: 300px;
        }
        .speed-showcase {
            text-align: center;
            background: rgba(2, 6, 23, 0.7);
            border-radius: var(--radius-md);
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }
        .speed-showcase .speed-num {
            font-size: 3.5rem;
            font-weight: 900;
            color: var(--accent-emerald);
            font-family: 'SF Mono', 'JetBrains Mono', monospace;
            line-height: 1;
        }
        .speed-showcase .speed-unit {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-top: 0.4rem;
        }

        /* ==================== 价格方案 ==================== */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 2.5rem;
        }
        .pricing-card {
            background: var(--bg-glass);
            border: 1px solid var(--border-subtle);
            border-radius: var(--radius-xl);
            padding: 2.5rem 1.8rem;
            text-align: center;
            position: relative;
            transition: var(--transition-smooth);
        }
        .pricing-card.popular {
            border-color: var(--accent-violet);
            background: linear-gradient(180deg, rgba(129, 140, 248, 0.12), rgba(10, 16, 34, 0.8));
            box-shadow: 0 0 35px rgba(129, 140, 248, 0.2);
        }
        .popular-badge {
            position: absolute;
            top: -13px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(90deg, var(--accent-violet), var(--accent-rose));
            color: #fff;
            padding: 0.25rem 1.1rem;
            border-radius: 99px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.6px;
        }
        .price-val {
            font-size: 2.7rem;
            font-weight: 900;
            color: #fff;
            margin: 0.8rem 0;
        }
        .price-val span {
            font-size: 0.95rem;
            color: var(--text-muted);
            font-weight: 400;
        }
        .plan-features {
            list-style: none;
            margin: 1.4rem 0 2rem;
            text-align: left;
            font-size: 0.87rem;
        }
        .plan-features li {
            margin-bottom: 0.7rem;
            display: flex;
            align-items: center;
            gap: 0.55rem;
            color: var(--text-body);
        }
        .plan-features svg {
            stroke: var(--accent-emerald);
            flex-shrink: 0;
        }

        /* ==================== Footer ==================== */
        footer {
            background: #01040e;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding: 4rem 2rem 2rem;
        }
        .footer-wrap {
            max-width: 1320px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr repeat(3, 1fr);
            gap: 3rem;
            margin-bottom: 3rem;
        }
        .footer-brand p {
            font-size: 0.87rem;
            color: var(--text-muted);
            margin-top: 1rem;
            max-width: 320px;
        }
        .footer-col h4 {
            color: #fff;
            font-size: 0.9rem;
            margin-bottom: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 0.6px;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col li {
            margin-bottom: 0.6rem;
        }
        .footer-col a {
            color: var(--text-body);
            text-decoration: none;
            font-size: 0.86rem;
            transition: color var(--transition-fast);
        }
        .footer-col a:hover {
            color: var(--accent-sky);
        }
        .footer-bottom {
            max-width: 1320px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            display: flex;
            justify-content: space-between;
            font-size: 0.82rem;
            color: var(--text-muted);
            flex-wrap: wrap;
            gap: 0.8rem;
        }

        /* ==================== 响应式 ==================== */
        @media (max-width: 1100px) {
            .hero-section {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
            .grid-4 {
                grid-template-columns: repeat(2, 1fr);
            }
            .scene-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .pricing-grid {
                grid-template-columns: 1fr 1fr;
            }
            .smart-route-box,
            .compare-grid {
                grid-template-columns: 1fr;
            }
            .footer-wrap {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 680px) {
            .hero-title {
                font-size: 2rem;
            }
            .grid-4 {
                grid-template-columns: 1fr;
            }
            .scene-grid {
                grid-template-columns: 1fr;
            }
            .pricing-grid {
                grid-template-columns: 1fr;
            }
            .footer-wrap {
                grid-template-columns: 1fr;
            }
            .nav-links {
                gap: 0.8rem;
                font-size: 0.78rem;
            }
            .nav-container {
                flex-wrap: wrap;
                gap: 0.8rem;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }