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

        /* 深空暗夜 + 极光青蓝 — 与首页保持完全一致 */
        :root {
            --bg: #0a0d14;
            --bg-soft: #0f131c;
            --ink: #f1f5f9;
            --ink-soft: #cbd5e6;
            --muted: #7e8aa8;
            --accent: #06b6d4;
            --accent-light: rgba(6, 182, 212, 0.12);
            --coral: #ff7b5c;
            --coral-light: rgba(255, 123, 92, 0.1);
            --mint: #2dd4bf;
            --mint-light: rgba(45, 212, 191, 0.1);
            --amber: #fbbf24;
            --amber-light: rgba(251, 191, 36, 0.1);
            --violet: #a78bfa;
            --violet-light: rgba(167, 139, 250, 0.1);
            --line: rgba(203, 213, 230, 0.08);
            --line-dark: rgba(203, 213, 230, 0.14);
            --card: #11161f;
            --card-hover: #18202c;
            --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.35);
            --shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
            --shadow-lg: 0 24px 56px rgba(0, 0, 0, 0.55);
            --radius-sm: 12px;
            --radius: 18px;
            --radius-lg: 26px;
            --radius-xl: 34px;
            --ease: cubic-bezier(0.2, 0.9, 0.4, 1.1);
            --ease-bounce: cubic-bezier(0.34, 1.2, 0.64, 1);
        }

        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--bg);
            color: var(--ink);
            overflow-x: hidden;
            line-height: 1.55;
            -webkit-font-smoothing: antialiased;
        }

        ::selection {
            background: var(--accent);
            color: #0a0d14;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.25s var(--ease);
        }

        ul {
            list-style: none;
        }

        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 clamp(20px, 3vw, 48px);
        }

        h1, h2, h3, h4 {
            font-family: 'Instrument Serif', serif;
            font-weight: 400;
            letter-spacing: -0.02em;
        }

        /* 导航 (与首页完全一致) */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 999;
            backdrop-filter: blur(20px) saturate(1.6);
            background: rgba(10, 13, 20, 0.78);
            border-bottom: 1px solid var(--line);
            transition: all 0.3s ease;
        }
        nav.scrolled {
            background: rgba(10, 13, 20, 0.92);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
        }
        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 66px;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: 'Instrument Serif', serif;
            font-size: 1.45rem;
            font-weight: 500;
            letter-spacing: -0.01em;
        }
        .logo-icon {
            background: linear-gradient(135deg, var(--accent), #0891b2);
            width: 34px;
            height: 34px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
        }
        .logo-icon svg {
            width: 18px;
            height: 18px;
        }
        .nav-right {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .nav-right a {
            padding: 8px 16px;
            border-radius: 40px;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--ink-soft);
        }
        .nav-right a:hover, .nav-right a.active {
            background: var(--accent-light);
            color: var(--accent);
        }
        .mobile-btn {
            display: none;
            background: none;
            border: none;
            color: var(--ink);
            font-size: 1.7rem;
            cursor: pointer;
        }

        /* 移动端菜单 */
        .mobile-menu {
            position: fixed;
            top: 66px;
            left: 0;
            right: 0;
            background: rgba(10, 13, 20, 0.96);
            backdrop-filter: blur(28px);
            border-bottom: 1px solid var(--line);
            padding: 20px;
            display: none;
            flex-direction: column;
            gap: 14px;
            z-index: 998;
            transform: translateY(-100%);
            transition: transform 0.3s var(--ease);
        }
        .mobile-menu.show {
            transform: translateY(0);
            display: flex;
        }
        .mobile-menu a {
            font-size: 1rem;
            padding: 10px 0;
            border-bottom: 1px solid var(--line);
            color: var(--ink-soft);
        }
        .mobile-menu a.active {
            color: var(--accent);
        }

        /* 面包屑 + 通用 */
        .breadcrumb {
            padding: 20px 0 6px;
            font-size: 0.75rem;
            color: var(--muted);
        }
        .breadcrumb a:hover { color: var(--accent); }
        .section-head {
            text-align: center;
            margin-bottom: 48px;
        }
        .section-tag {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.7rem;
            letter-spacing: 0.12em;
            color: var(--accent);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 14px;
        }
        .section-tag::before, .section-tag::after {
            content: '';
            width: 24px;
            height: 1px;
            background: var(--accent);
            opacity: 0.5;
        }
        .section-head h2 {
            font-size: clamp(2rem, 4vw, 3rem);
        }
        .section-head p {
            color: var(--muted);
            max-width: 520px;
            margin: 10px auto 0;
        }

        /* reveal 动画 */
        .reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: all 0.7s var(--ease);
        }
        .reveal.show {
            opacity: 1;
            transform: translateY(0);
        }

        /* 下载区 Hero */
        .download-hero {
            padding-top: 110px;
            padding-bottom: 60px;
        }
        .hero-download-content {
            text-align: center;
            max-width: 780px;
            margin: 0 auto;
        }
        .badge-download {
            background: var(--card);
            border: 1px solid var(--line);
            border-radius: 100px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 4px 12px 4px 6px;
            font-size: 0.8rem;
            margin-bottom: 22px;
        }
        .badge-dot {
            width: 8px;
            height: 8px;
            background: var(--accent);
            border-radius: 50%;
            box-shadow: 0 0 8px var(--accent);
            animation: dotPulse 1.8s infinite;
        }
        @keyframes dotPulse {
            0%, 100% { opacity: 1; transform: scale(1);}
            50% { opacity: 0.5; transform: scale(1.3);}
        }
        .download-hero h1 {
            font-size: clamp(2.6rem, 5vw, 4.2rem);
            line-height: 1.15;
            margin-bottom: 18px;
        }
        .download-hero h1 em {
            background: linear-gradient(135deg, var(--accent), #2dd4bf);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .hero-desc {
            color: var(--muted);
            font-size: 1.05rem;
            margin-bottom: 32px;
        }

        /* 平台下载卡片网格 */
        .platform-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 24px;
            margin-top: 20px;
        }
        .download-card {
            background: var(--card);
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            padding: 28px 20px;
            text-align: center;
            transition: all 0.3s var(--ease);
            backdrop-filter: blur(2px);
        }
        .download-card:hover {
            transform: translateY(-6px);
            border-color: var(--accent);
            background: var(--card-hover);
            box-shadow: var(--shadow);
        }
        .platform-icon {
            font-size: 3rem;
            margin-bottom: 12px;
        }
        .download-card h3 {
            font-family: 'DM Sans', sans-serif;
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 6px;
        }
        .download-card .version {
            font-size: 0.7rem;
            color: var(--muted);
            margin-bottom: 14px;
            font-family: monospace;
        }
        .btn-download {
            background: var(--accent-light);
            border: 1px solid var(--accent);
            padding: 10px 20px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.85rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: 0.25s;
            margin-top: 8px;
            color: var(--accent);
        }
        .btn-download:hover {
            background: var(--accent);
            color: #0a0d14;
            box-shadow: 0 4px 14px rgba(6,182,212,0.4);
        }

        /* 全球节点动态数据块 (速度与覆盖) */
        .node-stats {
            background: var(--card);
            border-radius: var(--radius-xl);
            padding: 44px 32px;
            margin: 40px 0;
            border: 1px solid var(--line);
        }
        .stats-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 28px;
            text-align: center;
        }
        .stat-item {
            flex: 1;
            min-width: 140px;
        }
        .stat-number {
            font-family: 'Instrument Serif', serif;
            font-size: 2.8rem;
            color: var(--accent);
            line-height: 1;
        }
        .stat-label {
            font-size: 0.85rem;
            color: var(--muted);
            margin-top: 8px;
        }

        /* 特性卡片 (差异化亮点) */
        .feature-download-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin: 50px 0;
        }
        .mini-feature {
            background: var(--card);
            padding: 24px;
            border-radius: var(--radius);
            border: 1px solid var(--line);
            transition: 0.2s;
        }
        .mini-feature:hover { background: var(--card-hover); transform: translateY(-3px);}
        .mini-feature .emoji { font-size: 2rem; margin-bottom: 12px;}

        /* 安装引导 CTA */
        .install-tip {
            background: linear-gradient(125deg, #11161f, #0b1018);
            border-radius: var(--radius-xl);
            padding: 48px 32px;
            text-align: center;
            margin-bottom: 40px;
            border: 1px solid rgba(6,182,212,0.2);
        }

        /* 页脚 */
        .footer {
            border-top: 1px solid var(--line);
            margin-top: 30px;
            padding: 50px 0 28px;
            background: var(--bg-soft);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
        }
        .footer-col h4 { font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; letter-spacing: 0.1em; margin-bottom: 16px; }
        .footer-col li { margin-bottom: 10px; }
        .footer-col a { color: var(--muted); font-size: 0.85rem; }
        .footer-col a:hover { color: var(--accent); }
        .footer-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 0.7rem; color: var(--muted); }

        @media (max-width: 1024px) {
            .feature-download-grid { grid-template-columns: 1fr 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 780px) {
            .nav-right a:not(.active) { display: none; }
            .mobile-btn { display: block; }
            .feature-download-grid { grid-template-columns: 1fr; }
            .stats-grid { flex-direction: column; align-items: center; }
            .footer-grid { grid-template-columns: 1fr; }
            .download-card { margin: 0 8px; }
        }
        @media (max-width: 480px) {
            .platform-grid { gap: 16px; }
        }