        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #0a1628;
            --secondary: #1a2a4a;
            --accent: #00e5ff;
            --accent-dim: rgba(0, 229, 255, 0.12);
            --text-primary: #f0f6ff;
            --text-secondary: #b0c8e8;
            --glass-bg: rgba(10, 22, 40, 0.75);
            --border-glow: rgba(0, 229, 255, 0.25);
            --radius: 20px;
            --shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
            --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        body {
            font-family: var(--font);
            background: var(--primary);
            color: var(--text-primary);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: color 0.2s;
        }
        a:hover {
            color: #66f0ff;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .orb {
            position: fixed;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, rgba(0, 229, 255, 0.06), transparent 70%);
            pointer-events: none;
            z-index: 0;
            top: -200px;
            right: -200px;
        }
        .orb-2 {
            position: fixed;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle at 70% 70%, rgba(0, 229, 255, 0.04), transparent 70%);
            pointer-events: none;
            z-index: 0;
            bottom: -150px;
            left: -150px;
        }
        .header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(10, 22, 40, 0.82);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(0, 229, 255, 0.08);
            padding: 14px 0;
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 1.4rem;
            letter-spacing: -0.5px;
        }
        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--accent), #0088cc);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            font-weight: 800;
            color: var(--primary);
        }
        .logo span {
            color: var(--accent);
        }
        .logo-version {
            font-size: 0.7rem;
            background: var(--accent-dim);
            border: 1px solid rgba(0, 229, 255, 0.2);
            padding: 2px 10px;
            border-radius: 40px;
            color: var(--accent);
            font-weight: 500;
            letter-spacing: 0.3px;
            margin-left: 4px;
        }
        .nav {
            display: flex;
            align-items: center;
            gap: 28px;
            flex-wrap: wrap;
        }
        .nav a {
            color: var(--text-secondary);
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
            padding: 4px 0;
            transition: color 0.2s;
        }
        .nav a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.25s;
        }
        .nav a:hover {
            color: #fff;
        }
        .nav a:hover::after {
            width: 100%;
        }
        .nav a.active {
            color: #fff;
        }
        .nav a.active::after {
            width: 100%;
        }
        .nav-badge {
            background: var(--accent-dim);
            border: 1px solid rgba(0, 229, 255, 0.15);
            padding: 4px 14px;
            border-radius: 40px;
            font-size: 0.7rem;
            color: var(--accent);
            font-weight: 600;
            letter-spacing: 0.4px;
            text-transform: uppercase;
        }
        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 6px;
        }
        .mobile-toggle span {
            width: 26px;
            height: 2px;
            background: var(--text-primary);
            border-radius: 4px;
            transition: 0.3s;
        }
        .page-hero {
            position: relative;
            z-index: 1;
            padding: 50px 0 30px;
            border-bottom: 1px solid rgba(0, 229, 255, 0.05);
        }
        .page-hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            margin-bottom: 8px;
        }
        .page-hero h1 .highlight {
            background: linear-gradient(135deg, var(--accent), #66f0ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .page-hero p {
            color: var(--text-secondary);
            font-size: 1.1rem;
            max-width: 680px;
        }
        .page-hero .meta-badge {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-top: 14px;
        }
        .page-hero .meta-badge span {
            background: var(--glass-bg);
            border: 1px solid rgba(0, 229, 255, 0.08);
            padding: 4px 18px;
            border-radius: 40px;
            font-size: 0.8rem;
            color: var(--text-secondary);
        }
        .page-hero .meta-badge strong {
            color: var(--accent);
        }

        /* ===== 30秒快速上手 ===== */
        .quick-start {
            position: relative;
            z-index: 1;
            padding: 50px 0;
            border-bottom: 1px solid rgba(0, 229, 255, 0.05);
        }
        .section-label {
            display: inline-block;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--accent);
            background: var(--accent-dim);
            padding: 4px 18px;
            border-radius: 40px;
            border: 1px solid rgba(0, 229, 255, 0.08);
            margin-bottom: 14px;
            font-weight: 600;
        }
        .section-title {
            font-size: 2.6rem;
            font-weight: 700;
            letter-spacing: -0.5px;
            margin-bottom: 12px;
        }
        .section-title .highlight {
            background: linear-gradient(135deg, var(--accent), #66f0ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .section-desc {
            color: var(--text-secondary);
            font-size: 1.1rem;
            max-width: 680px;
            margin-bottom: 40px;
        }
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 24px;
            margin-top: 28px;
        }
        .step-item {
            background: rgba(10, 22, 40, 0.5);
            border: 1px solid rgba(0, 229, 255, 0.06);
            border-radius: 16px;
            padding: 26px 20px;
            text-align: center;
            transition: 0.3s;
            position: relative;
        }
        .step-item:hover {
            border-color: rgba(0, 229, 255, 0.15);
            transform: translateY(-4px);
        }
        .step-item .step-number {
            position: absolute;
            top: 12px;
            right: 16px;
            font-size: 2rem;
            font-weight: 800;
            color: rgba(0, 229, 255, 0.1);
            line-height: 1;
        }
        .step-item .step-icon {
            font-size: 2.2rem;
            display: block;
            margin-bottom: 10px;
        }
        .step-item h4 {
            font-weight: 600;
            font-size: 1.05rem;
            margin-bottom: 4px;
        }
        .step-item p {
            color: var(--text-secondary);
            font-size: 0.85rem;
        }

        /* ===== 分平台深度教程 ===== */
        .platform-guide {
            position: relative;
            z-index: 1;
            padding: 50px 0;
            border-bottom: 1px solid rgba(0, 229, 255, 0.05);
        }
        .platform-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 36px;
            border-bottom: 1px solid rgba(0, 229, 255, 0.06);
            padding-bottom: 12px;
        }
        .tab-btn {
            background: transparent;
            border: none;
            padding: 10px 24px;
            border-radius: 40px;
            color: var(--text-secondary);
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.25s;
            font-family: var(--font);
            border: 1px solid transparent;
        }
        .tab-btn:hover {
            color: #fff;
            background: rgba(0, 229, 255, 0.05);
        }
        .tab-btn.active {
            background: var(--accent-dim);
            border-color: rgba(0, 229, 255, 0.2);
            color: var(--accent);
        }
        .platform-panel {
            display: none;
            background: rgba(10, 22, 40, 0.5);
            border: 1px solid rgba(0, 229, 255, 0.06);
            border-radius: var(--radius);
            padding: 32px 30px;
            animation: fadeIn 0.3s ease;
        }
        .platform-panel.active {
            display: block;
        }
        @keyframes fadeIn {
            0% { opacity: 0; transform: translateY(6px); }
            100% { opacity: 1; transform: translateY(0); }
        }
        .platform-panel .platform-head {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 16px;
        }
        .platform-head .platform-icon {
            font-size: 2.5rem;
        }
        .platform-head h3 {
            font-size: 1.6rem;
            font-weight: 700;
        }
        .platform-panel .steps-list {
            list-style: none;
            counter-reset: step-counter;
        }
        .platform-panel .steps-list li {
            counter-increment: step-counter;
            margin-bottom: 12px;
            padding-left: 40px;
            position: relative;
            color: var(--text-secondary);
            font-size: 0.95rem;
        }
        .platform-panel .steps-list li::before {
            content: counter(step-counter);
            position: absolute;
            left: 0;
            top: 0;
            width: 26px;
            height: 26px;
            background: var(--accent-dim);
            border: 1px solid rgba(0, 229, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.8rem;
            color: var(--accent);
        }
        .platform-panel .screenshot-placeholder {
            width: 100%;
            aspect-ratio: 16/7;
            background: linear-gradient(145deg, #0d1f3a, #081220);
            border-radius: 12px;
            border: 1px solid rgba(0, 229, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,0.2);
            font-size: 0.9rem;
            margin: 20px 0;
        }

        /* ===== 2026系统适配亮点 ===== */
        .adaptation {
            position: relative;
            z-index: 1;
            padding: 50px 0;
            border-bottom: 1px solid rgba(0, 229, 255, 0.05);
            background: rgba(0, 0, 0, 0.2);
        }
        .adapt-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 24px;
            margin-top: 28px;
        }
        .adapt-card {
            background: rgba(10, 22, 40, 0.6);
            border: 1px solid rgba(0, 229, 255, 0.06);
            border-radius: 16px;
            padding: 24px;
            text-align: center;
            transition: 0.3s;
        }
        .adapt-card:hover {
            border-color: rgba(0, 229, 255, 0.15);
        }
        .adapt-card .os-icon {
            font-size: 2.5rem;
            display: block;
            margin-bottom: 10px;
        }
        .adapt-card h4 {
            font-weight: 600;
            font-size: 1.05rem;
            margin-bottom: 4px;
        }
        .adapt-card p {
            color: var(--text-secondary);
            font-size: 0.85rem;
        }

        /* ===== 连接故障排查 ===== */
        .troubleshoot {
            position: relative;
            z-index: 1;
            padding: 50px 0;
            border-bottom: 1px solid rgba(0, 229, 255, 0.05);
        }
        .trouble-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin-top: 28px;
        }
        .trouble-card {
            background: rgba(10, 22, 40, 0.5);
            border: 1px solid rgba(0, 229, 255, 0.06);
            border-radius: 14px;
            padding: 24px;
            transition: 0.3s;
        }
        .trouble-card:hover {
            border-color: rgba(0, 229, 255, 0.15);
        }
        .trouble-card .trouble-icon {
            font-size: 2rem;
            display: block;
            margin-bottom: 8px;
        }
        .trouble-card h4 {
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 6px;
        }
        .trouble-card p {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        .trouble-card .solution {
            margin-top: 10px;
            background: rgba(0, 229, 255, 0.05);
            padding: 10px 14px;
            border-radius: 8px;
            font-size: 0.85rem;
            color: var(--accent);
        }

        /* ===== 企业级部署选项 ===== */
        .enterprise {
            position: relative;
            z-index: 1;
            padding: 50px 0 60px;
            border-bottom: 1px solid rgba(0, 229, 255, 0.05);
        }
        .enterprise-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 24px;
            margin-top: 28px;
        }
        .enterprise-card {
            background: rgba(10, 22, 40, 0.5);
            border: 1px solid rgba(0, 229, 255, 0.06);
            border-radius: 16px;
            padding: 26px 20px;
            text-align: center;
            transition: 0.3s;
        }
        .enterprise-card:hover {
            border-color: rgba(0, 229, 255, 0.15);
        }
        .enterprise-card .ent-icon {
            font-size: 2.2rem;
            display: block;
            margin-bottom: 10px;
        }
        .enterprise-card h4 {
            font-weight: 600;
            font-size: 1.05rem;
            margin-bottom: 4px;
        }
        .enterprise-card p {
            color: var(--text-secondary);
            font-size: 0.85rem;
        }

        .footer {
            position: relative;
            z-index: 1;
            border-top: 1px solid rgba(0, 229, 255, 0.06);
            padding: 40px 0 32px;
            background: rgba(0, 0, 0, 0.3);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 30px;
        }
        .footer-brand p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            max-width: 360px;
            margin-top: 8px;
        }
        .footer-brand .entity {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.25);
            margin-top: 12px;
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }
        .footer-col h5 {
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 12px;
            color: var(--text-primary);
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
        }
        .footer-col ul li {
            margin-bottom: 8px;
        }
        .footer-col ul li a {
            color: var(--text-secondary);
            font-size: 0.85rem;
            transition: 0.2s;
        }
        .footer-col ul li a:hover {
            color: #fff;
        }
        .footer-bottom {
            border-top: 1px solid rgba(0, 229, 255, 0.05);
            padding-top: 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.25);
        }
        .footer-bottom .meta {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        .footer-bottom .meta span {
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .footer-bottom .meta strong {
            color: rgba(255, 255, 255, 0.4);
        }

        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 768px) {
            .mobile-toggle {
                display: flex;
            }
            .nav {
                display: none;
                width: 100%;
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
                padding: 16px 0 8px;
                border-top: 1px solid rgba(0, 229, 255, 0.06);
                margin-top: 8px;
            }
            .nav.open {
                display: flex;
            }
            .nav a {
                font-size: 1rem;
            }
            .nav-badge {
                align-self: flex-start;
            }
            .page-hero h1 {
                font-size: 2.2rem;
            }
            .section-title {
                font-size: 2rem;
            }
            .platform-panel {
                padding: 24px 18px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .footer-bottom {
                flex-direction: column;
                gap: 12px;
                align-items: flex-start;
            }
            .platform-tabs .tab-btn {
                padding: 6px 14px;
                font-size: 0.85rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 16px;
            }
            .page-hero h1 {
                font-size: 1.8rem;
            }
            .logo {
                font-size: 1.1rem;
            }
            .logo-version {
                font-size: 0.6rem;
                padding: 1px 8px;
            }
            .steps-grid,
            .adapt-grid,
            .trouble-grid,
            .enterprise-grid {
                grid-template-columns: 1fr;
            }
        }