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

        :root {
            --bg: #f9f7fb;
            --bg-alt: #f3eff8;
            --ink: #1a102b;
            --ink-soft: #2d2340;
            --muted: #8b7d9e;
            --muted-light: #b8aec8;
            --primary: #7c5ce7;
            --primary-bright: #8b6cf6;
            --accent: #f472b6;
            --accent-soft: #f9a8d4;
            --accent-warm: #fb7185;
            --success: #34d399;
            --warning: #fbbf24;
            --rose: #f87171;
            --glass: rgba(255, 255, 255, .65);
            --glass-hover: rgba(255, 255, 255, .85);
            --line: rgba(124, 92, 231, .1);
            --line-bright: rgba(124, 92, 231, .2);
            --card-hover: rgba(244, 114, 182, .04);
            --glow-primary: rgba(124, 92, 231, .1);
            --glow-accent: rgba(244, 114, 182, .07);
            --shadow-sm: 0 2px 12px rgba(124, 92, 231, .05);
            --shadow-md: 0 8px 30px rgba(124, 92, 231, .08);
            --shadow-lg: 0 18px 50px rgba(124, 92, 231, .1);
            --radius-sm: 8px;
            --radius: 14px;
            --radius-lg: 20px;
            --radius-xl: 24px;
            --ease: cubic-bezier(.22, 1, .36, 1);
            --font-display: 'Syne', sans-serif;
            --font-body: 'Space Grotesk', sans-serif;
            --font-mono: 'DM Mono', monospace;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
            overflow-x: hidden;
            -webkit-text-size-adjust: 100%
        }
        body {
            font-family: var(--font-body);
            background: var(--bg);
            color: var(--ink);
            overflow-x: hidden;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale
        }
        ::selection {
            background: #c4b5fd;
            color: #1a102b
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: all .3s var(--ease)
        }
        ul {
            list-style: none
        }
        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 clamp(20px, 4vw, 60px)
        }
        h1,
        h2,
        h3,
        h4 {
            font-family: var(--font-display);
            font-weight: 800;
            letter-spacing: -.02em
        }
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            background:
                radial-gradient(ellipse 70% 50% at 15% 85%, rgba(139, 108, 246, .04), transparent),
                radial-gradient(ellipse 55% 45% at 85% 15%, rgba(244, 114, 182, .04), transparent),
                radial-gradient(ellipse 40% 35% at 50% 50%, rgba(124, 92, 231, .02), transparent)
        }

        /* 导航栏（与首页一致） */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 999;
            backdrop-filter: blur(16px) saturate(1.3);
            -webkit-backdrop-filter: blur(16px) saturate(1.3);
            border-bottom: 1px solid var(--line);
            background: rgba(249, 247, 251, .78)
        }
        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 60px
        }
        .logo {
            font-family: var(--font-display);
            font-size: 1.35rem;
            font-weight: 800;
            letter-spacing: .05em;
            background: linear-gradient(135deg, #7c5ce7, #8b6cf6, #f472b6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            flex-shrink: 0
        }
        .nav-right {
            display: flex;
            align-items: center;
            gap: 26px
        }
        .nav-right a {
            font-size: .8rem;
            font-weight: 500;
            color: var(--muted);
            position: relative;
            letter-spacing: .02em;
            white-space: nowrap
        }
        .nav-right a:hover {
            color: var(--primary)
        }
        .nav-right a.active {
            color: var(--primary);
            font-weight: 600
        }
        .nav-download {
            padding: 8px 18px;
            border-radius: 6px;
            border: 1px solid rgba(124, 92, 231, .35);
            color: #7c5ce7 !important;
            font-weight: 600;
            font-size: .8rem;
            transition: all .3s ease;
            white-space: nowrap
        }
        .nav-download:hover {
            background: rgba(124, 92, 231, .08);
            box-shadow: 0 0 20px rgba(124, 92, 231, .12)
        }
        .mobile-btn {
            display: none;
            background: none;
            border: none;
            color: var(--ink);
            font-size: 1.4rem;
            cursor: pointer;
            padding: 4px
        }

        /* 面包屑 */
        .breadcrumb {
            position: relative;
            z-index: 1;
            padding: 84px 0 0;
            font-family: var(--font-mono);
            font-size: .78rem;
            color: var(--muted)
        }
        .breadcrumb a {
            color: var(--muted)
        }
        .breadcrumb a:hover {
            color: var(--primary)
        }
        .breadcrumb .sep {
            margin: 0 8px;
            opacity: .4
        }
        .breadcrumb .current {
            color: var(--primary);
            font-weight: 500
        }

        /* 下载Hero */
        .dl-hero {
            position: relative;
            z-index: 1;
            padding: clamp(24px, 4vh, 48px) 0 clamp(50px, 8vh, 100px)
        }
        .dl-hero-inner {
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: clamp(36px, 5vw, 90px);
            align-items: center
        }
        .dl-hero-text .overline {
            font-family: var(--font-mono);
            font-size: .78rem;
            font-weight: 400;
            color: var(--primary);
            letter-spacing: .2em;
            text-transform: uppercase;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 12px
        }
        .dl-hero-text .overline::before {
            content: '';
            width: 32px;
            height: 1px;
            background: var(--primary)
        }
        .dl-hero-text h1 {
            font-size: clamp(2.4rem, 5vw, 4.2rem);
            line-height: 1.05;
            margin-bottom: 20px;
            color: var(--ink-soft)
        }
        .dl-hero-text h1 .grad {
            background: linear-gradient(90deg, #7c5ce7, #8b6cf6, #f472b6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text
        }
        .dl-hero-text p {
            color: var(--muted);
            font-size: 1rem;
            max-width: 440px;
            line-height: 1.8;
            margin-bottom: 36px
        }
        .dl-meta {
            display: flex;
            gap: 28px;
            flex-wrap: wrap
        }
        .dl-meta-item {
            font-family: var(--font-mono);
            font-size: .78rem;
            color: var(--muted);
            display: flex;
            align-items: center;
            gap: 8px
        }
        .dl-meta-item .val {
            color: var(--ink-soft);
            font-weight: 500
        }
        .dl-meta-item .dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--primary)
        }
        .dl-hero-visual {
            position: relative
        }
        .dl-quad {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px
        }
        .dl-quad-card {
            position: relative;
            overflow: hidden;
            border-radius: 16px;
            border: 1px solid var(--line);
            background: #fff;
            padding: clamp(18px, 2.2vw, 28px);
            transition: all .4s var(--ease);
            display: flex;
            flex-direction: column;
            box-shadow: var(--shadow-sm)
        }
        .dl-quad-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at var(--mx, 50%) var(--my, 50%), rgba(124, 92, 231, .04), transparent 50%);
            pointer-events: none;
            opacity: 0;
            transition: opacity .3s ease
        }
        .dl-quad-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            opacity: 0;
            transition: opacity .4s ease
        }
        .dl-quad-card.c-win::after {
            background: linear-gradient(90deg, #7c5ce7, rgba(124, 92, 231, .3))
        }
        .dl-quad-card.c-mac::after {
            background: linear-gradient(90deg, #8b6cf6, rgba(139, 108, 246, .3))
        }
        .dl-quad-card.c-ios::after {
            background: linear-gradient(90deg, #f472b6, rgba(244, 114, 182, .3))
        }
        .dl-quad-card.c-and::after {
            background: linear-gradient(90deg, #34d399, rgba(52, 211, 153, .3))
        }
        .dl-quad-card:hover {
            transform: translateY(-6px);
            border-color: var(--line-bright);
            box-shadow: var(--shadow-lg)
        }
        .dl-quad-card:hover::before,
        .dl-quad-card:hover::after {
            opacity: 1
        }
        .qc-top {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px
        }
        .qc-icon {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(124, 92, 231, .08);
            flex-shrink: 0;
            font-size: 1.15rem
        }
        .qc-icon.i-win {
            background: rgba(124, 92, 231, .08)
        }
        .qc-icon.i-mac {
            background: rgba(139, 108, 246, .08)
        }
        .qc-icon.i-ios {
            background: rgba(244, 114, 182, .08)
        }
        .qc-icon.i-and {
            background: rgba(52, 211, 153, .08)
        }
        .qc-name {
            font-family: var(--font-display);
            font-size: 1rem;
            font-weight: 700;
            color: var(--ink-soft)
        }
        .qc-ver {
            font-family: var(--font-mono);
            font-size: .7rem;
            color: var(--muted);
            margin-top: 2px
        }
        .qc-desc {
            color: var(--muted);
            font-size: .78rem;
            line-height: 1.55;
            margin-bottom: 14px;
            flex: 1
        }
        .qc-meta {
            font-family: var(--font-mono);
            font-size: .7rem;
            color: var(--muted);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 6px
        }
        .qc-meta .dot {
            width: 3px;
            height: 3px;
            border-radius: 50%;
            background: var(--muted-light)
        }
        .qc-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            padding: 10px;
            border-radius: 8px;
            font-weight: 600;
            font-size: .82rem;
            font-family: var(--font-body);
            cursor: pointer;
            border: none;
            transition: all .3s ease
        }
        .qc-btn.b-win {
            background: rgba(124, 92, 231, .06);
            border: 1px solid rgba(124, 92, 231, .2);
            color: #7c5ce7
        }
        .qc-btn.b-win:hover {
            background: rgba(124, 92, 231, .14);
            box-shadow: 0 0 22px rgba(124, 92, 231, .12)
        }
        .qc-btn.b-mac {
            background: rgba(139, 108, 246, .06);
            border: 1px solid rgba(139, 108, 246, .2);
            color: #8b6cf6
        }
        .qc-btn.b-mac:hover {
            background: rgba(139, 108, 246, .14);
            box-shadow: 0 0 22px rgba(139, 108, 246, .12)
        }
        .qc-btn.b-ios {
            background: rgba(244, 114, 182, .06);
            border: 1px solid rgba(244, 114, 182, .2);
            color: #f472b6
        }
        .qc-btn.b-ios:hover {
            background: rgba(244, 114, 182, .14);
            box-shadow: 0 0 22px rgba(244, 114, 182, .12)
        }
        .qc-btn.b-and {
            background: rgba(52, 211, 153, .06);
            border: 1px solid rgba(52, 211, 153, .2);
            color: #34d399
        }
        .qc-btn.b-and:hover {
            background: rgba(52, 211, 153, .14);
            box-shadow: 0 0 22px rgba(52, 211, 153, .12)
        }
        .dl-quad-glow {
            position: absolute;
            inset: -80px;
            z-index: -1;
            background: radial-gradient(ellipse at center, rgba(124, 92, 231, .05), rgba(244, 114, 182, .03), transparent 60%);
            filter: blur(50px);
            animation: orbFloat 8s ease-in-out infinite;
            pointer-events: none
        }
        @keyframes orbFloat {
            0%,
            100% {
                transform: scale(1)
            }
            50% {
                transform: scale(1.12)
            }
        }

        /* 下载统计横幅 */
        .dl-stats-strip {
            position: relative;
            z-index: 1;
            padding: clamp(24px, 3vh, 40px) 0
        }
        .dl-stats-inner {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            justify-content: center
        }
        .dl-stat-badge {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 14px 22px;
            border-radius: 12px;
            border: 1px solid var(--line);
            background: #fff;
            font-family: var(--font-mono);
            font-size: .78rem;
            color: var(--muted);
            letter-spacing: .03em;
            transition: all .3s ease;
            box-shadow: var(--shadow-sm)
        }
        .dl-stat-badge:hover {
            border-color: rgba(124, 92, 231, .18);
            background: rgba(124, 92, 231, .02);
            box-shadow: var(--shadow-md)
        }
        .dl-stat-badge .num {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: -.02em
        }
        .dl-stat-badge .num.c {
            color: #7c5ce7
        }
        .dl-stat-badge .num.v {
            color: #f472b6
        }
        .dl-stat-badge .num.l {
            color: #34d399
        }
        .dl-stat-badge .num.r {
            color: #fb7185
        }

        /* 平台详细区域 */
        .platforms {
            position: relative;
            z-index: 1;
            padding: clamp(50px, 7vh, 100px) 0
        }
        .section-head {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            margin-bottom: clamp(32px, 3.5vw, 50px);
            flex-wrap: wrap;
            gap: 14px
        }
        .section-head h2 {
            font-size: clamp(1.7rem, 3.2vw, 2.6rem);
            line-height: 1.1;
            color: var(--ink-soft)
        }
        .section-head .mono {
            font-family: var(--font-mono);
            font-size: .8rem;
            color: var(--muted)
        }
        .platform-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px
        }
        .plat-card {
            position: relative;
            overflow: hidden;
            border-radius: var(--radius-lg);
            border: 1px solid var(--line);
            background: #fff;
            padding: clamp(22px, 2.2vw, 32px);
            transition: all .4s var(--ease);
            cursor: pointer;
            display: flex;
            flex-direction: column;
            box-shadow: var(--shadow-sm)
        }
        .plat-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at var(--mx, 50%) var(--my, 50%), rgba(124, 92, 231, .04), transparent 50%);
            pointer-events: none;
            opacity: 0;
            transition: opacity .3s ease
        }
        .plat-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #7c5ce7, #f472b6);
            opacity: 0;
            transition: opacity .4s ease
        }
        .plat-card:hover {
            transform: translateY(-7px);
            border-color: rgba(124, 92, 231, .2);
            box-shadow: var(--shadow-lg), 0 0 36px rgba(124, 92, 231, .04)
        }
        .plat-card:hover::before,
        .plat-card:hover::after {
            opacity: 1
        }
        .plat-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
            border: 1px solid rgba(124, 92, 231, .06);
            transition: all .4s ease;
            font-size: 1.4rem
        }
        .plat-card:hover .plat-icon {
            box-shadow: 0 0 18px rgba(124, 92, 231, .1)
        }
        .plat-icon.win {
            background: rgba(124, 92, 231, .07)
        }
        .plat-icon.mac {
            background: rgba(139, 108, 246, .07)
        }
        .plat-icon.ios {
            background: rgba(244, 114, 182, .07)
        }
        .plat-icon.and {
            background: rgba(52, 211, 153, .07)
        }
        .plat-name {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 4px;
            color: var(--ink-soft)
        }
        .plat-ver {
            font-family: var(--font-mono);
            font-size: .73rem;
            color: var(--muted);
            margin-bottom: 14px
        }
        .plat-desc {
            color: var(--muted);
            font-size: .85rem;
            line-height: 1.55;
            margin-bottom: 20px;
            flex: 1
        }
        .plat-size {
            font-family: var(--font-mono);
            font-size: .73rem;
            color: var(--muted);
            margin-bottom: 14px
        }
        .plat-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            padding: 11px;
            border-radius: 10px;
            background: rgba(124, 92, 231, .04);
            border: 1px solid rgba(124, 92, 231, .15);
            color: #7c5ce7;
            font-weight: 600;
            font-size: .85rem;
            font-family: var(--font-body);
            cursor: pointer;
            transition: all .3s ease
        }
        .plat-btn:hover {
            background: rgba(124, 92, 231, .1);
            box-shadow: 0 0 22px rgba(124, 92, 231, .1)
        }

        /* 安装指引微板块 */
        .quick-guide {
            position: relative;
            z-index: 1;
            padding: clamp(50px, 7vh, 90px) 0
        }
        .guide-mini-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 14px
        }
        .guide-mini-card {
            border-radius: var(--radius);
            border: 1px solid var(--line);
            background: #fff;
            padding: clamp(18px, 2vw, 26px);
            text-align: center;
            transition: all .35s var(--ease);
            box-shadow: var(--shadow-sm)
        }
        .guide-mini-card:hover {
            border-color: var(--line-bright);
            transform: translateY(-3px);
            box-shadow: var(--shadow-md)
        }
        .guide-step-num {
            font-family: var(--font-display);
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(180deg, rgba(124, 92, 231, .35), rgba(244, 114, 182, .08));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 8px
        }
        .guide-mini-card h4 {
            font-size: .95rem;
            margin-bottom: 6px;
            color: var(--ink-soft)
        }
        .guide-mini-card p {
            color: var(--muted);
            font-size: .8rem;
            line-height: 1.55
        }

        /* 版本历史 */
        .history {
            position: relative;
            z-index: 1;
            padding: clamp(50px, 7vh, 90px) 0
        }
        .version-timeline {
            position: relative;
            padding-left: 36px
        }
        .version-timeline::before {
            content: '';
            position: absolute;
            left: 10px;
            top: 0;
            bottom: 0;
            width: 1px;
            background: linear-gradient(to bottom, #7c5ce7, #f472b6, transparent);
            opacity: .2
        }
        .version-item {
            position: relative;
            padding: 0 0 36px
        }
        .version-item:last-child {
            padding-bottom: 0
        }
        .version-item::before {
            content: '';
            position: absolute;
            left: -30px;
            top: 5px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            border: 2px solid #7c5ce7;
            background: var(--bg);
            transition: all .3s ease
        }
        .version-item:hover::before {
            background: #7c5ce7;
            box-shadow: 0 0 10px rgba(124, 92, 231, .4)
        }
        .version-head {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 8px
        }
        .version-tag {
            font-family: var(--font-display);
            font-size: 1rem;
            font-weight: 700;
            color: var(--ink-soft)
        }
        .version-date {
            font-family: var(--font-mono);
            font-size: .73rem;
            color: var(--muted)
        }
        .version-badge {
            font-family: var(--font-mono);
            font-size: .66rem;
            padding: 3px 9px;
            border-radius: 4px;
            letter-spacing: .05em
        }
        .version-badge.latest {
            background: rgba(124, 92, 231, .08);
            border: 1px solid rgba(124, 92, 231, .2);
            color: #7c5ce7
        }
        .version-badge.stable {
            background: rgba(139, 108, 246, .04);
            border: 1px solid var(--line);
            color: var(--muted)
        }
        .version-content {
            color: var(--muted);
            font-size: .88rem;
            line-height: 1.75
        }
        .version-content li {
            position: relative;
            padding-left: 14px;
            margin-bottom: 3px
        }
        .version-content li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 9px;
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: #7c5ce7;
            opacity: .5
        }

        /* FAQ CTA */
        .faq-cta {
            position: relative;
            z-index: 1;
            padding: clamp(50px, 7vh, 90px) 0
        }
        .faq-cta-inner {
            border-radius: var(--radius-xl);
            border: 1px solid var(--line);
            background: #fff;
            padding: clamp(36px, 4.5vw, 56px);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 28px;
            flex-wrap: wrap;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-sm)
        }
        .faq-cta-inner::before {
            content: '';
            position: absolute;
            top: -80px;
            left: -80px;
            width: 260px;
            height: 260px;
            background: radial-gradient(circle, rgba(124, 92, 231, .05), transparent 60%);
            pointer-events: none
        }
        .faq-cta-inner h3 {
            font-size: clamp(1.2rem, 2.2vw, 1.7rem);
            line-height: 1.2;
            color: var(--ink-soft)
        }
        .faq-cta-inner p {
            color: var(--muted);
            font-size: .9rem;
            margin-top: 6px
        }
        .faq-cta-actions {
            display: flex;
            gap: 10px;
            flex-shrink: 0
        }
        .btn-glow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 26px;
            border-radius: 8px;
            background: linear-gradient(135deg, #7c5ce7, #8b6cf6);
            color: #fff;
            font-weight: 700;
            font-size: .88rem;
            font-family: var(--font-body);
            border: none;
            cursor: pointer;
            transition: all .3s ease
        }
        .btn-glow:hover {
            background: linear-gradient(135deg, #8b6cf6, #9b7df8);
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(124, 92, 231, .28)
        }
        .btn-ghost {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 26px;
            border-radius: 8px;
            background: transparent;
            border: 1px solid var(--line-bright);
            color: var(--ink);
            font-weight: 600;
            font-size: .88rem;
            font-family: var(--font-body);
            cursor: pointer;
            transition: all .3s ease
        }
        .btn-ghost:hover {
            border-color: rgba(124, 92, 231, .25);
            background: rgba(124, 92, 231, .04);
            transform: translateY(-2px)
        }

        /* 节点覆盖微展示 */
        .node-glance {
            position: relative;
            z-index: 1;
            padding: clamp(40px, 5vh, 70px) 0
        }
        .node-glance-inner {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 8px;
            text-align: center
        }
        .node-dot-group {
            padding: 16px 8px;
            border-radius: var(--radius-sm);
            background: #fff;
            border: 1px solid var(--line);
            transition: all .3s ease;
            box-shadow: var(--shadow-sm)
        }
        .node-dot-group:hover {
            border-color: rgba(124, 92, 231, .18);
            background: rgba(124, 92, 231, .02)
        }
        .node-dot-group .city {
            font-weight: 600;
            font-size: .82rem;
            margin-bottom: 2px;
            color: var(--ink-soft)
        }
        .node-dot-group .ms {
            font-family: var(--font-mono);
            font-size: .7rem;
            color: #7c5ce7
        }
        .node-dot-group .flag-dot {
            display: inline-block;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #34d399;
            margin-right: 4px;
            animation: pulse 2s ease infinite
        }
        @keyframes pulse {
            0%,
            100% {
                opacity: 1
            }
            50% {
                opacity: .35
            }
        }

        /* 页脚（与首页一致） */
        .footer {
            position: relative;
            z-index: 1;
            border-top: 1px solid var(--line);
            padding: 50px 0 24px;
            background: #fff
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2.5fr 1fr 1fr 1fr;
            gap: clamp(20px, 3.5vw, 48px);
            margin-bottom: 36px
        }
        .footer-brand p {
            color: var(--muted);
            font-size: .84rem;
            max-width: 260px;
            line-height: 1.7;
            margin-top: 12px
        }
        .footer-col h4 {
            font-family: var(--font-mono);
            font-size: .72rem;
            font-weight: 500;
            color: var(--ink-soft);
            margin-bottom: 16px;
            letter-spacing: .1em;
            text-transform: uppercase
        }
        .footer-col li {
            margin-bottom: 9px
        }
        .footer-col a {
            color: var(--muted);
            font-size: .84rem;
            transition: all .3s var(--ease)
        }
        .footer-col a:hover {
            color: #7c5ce7;
            padding-left: 3px
        }
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 1px solid rgba(124, 92, 231, .06);
            font-size: .74rem;
            color: var(--muted);
            font-family: var(--font-mono)
        }

        /* 滚动动画 */
        .reveal {
            opacity: 0;
            transform: translateY(36px);
            transition: all .7s var(--ease)
        }
        .reveal.show {
            opacity: 1;
            transform: translateY(0)
        }
        .reveal-d1 {
            transition-delay: .1s
        }
        .reveal-d2 {
            transition-delay: .2s
        }
        .reveal-d3 {
            transition-delay: .3s
        }
        .reveal-d4 {
            transition-delay: .4s
        }
        .reveal-d5 {
            transition-delay: .5s
        }

        /* 响应式 */
        @media(max-width:1024px) {
            .dl-hero-inner {
                grid-template-columns: 1fr
            }
            .dl-quad {
                max-width: 100%
            }
            .platform-grid {
                grid-template-columns: 1fr 1fr
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr
            }
            .version-timeline {
                padding-left: 28px
            }
            .node-glance-inner {
                grid-template-columns: repeat(3, 1fr)
            }
            .guide-mini-grid {
                grid-template-columns: 1fr 1fr
            }
        }
        @media(max-width:768px) {
            .nav-right a:not(.nav-download) {
                display: none
            }
            .mobile-btn {
                display: block
            }
            .dl-quad {
                grid-template-columns: 1fr
            }
            .platform-grid {
                grid-template-columns: 1fr
            }
            .footer-grid {
                grid-template-columns: 1fr
            }
            .footer-bottom {
                flex-direction: column;
                gap: 6px;
                text-align: center
            }
            .faq-cta-inner {
                flex-direction: column;
                text-align: center
            }
            .faq-cta-actions {
                justify-content: center
            }
            .dl-stats-inner {
                flex-direction: column;
                align-items: center
            }
            .version-timeline {
                padding-left: 24px
            }
            .version-item::before {
                left: -22px;
                width: 7px;
                height: 7px
            }
            .node-glance-inner {
                grid-template-columns: repeat(2, 1fr)
            }
            .guide-mini-grid {
                grid-template-columns: 1fr
            }
            .section-head {
                flex-direction: column;
                align-items: flex-start
            }
        }
        @media(max-width:480px) {
            .dl-meta {
                flex-direction: column;
                gap: 10px
            }
            .dl-stat-badge {
                padding: 10px 14px;
                font-size: .7rem
            }
            .dl-stat-badge .num {
                font-size: 1.2rem
            }
            .node-glance-inner {
                grid-template-columns: 1fr 1fr
            }
            .version-timeline {
                padding-left: 20px
            }
        }