        :root {
            --primary: #0d9488;
            --primary-deep: #0f766e;
            --primary-dark: #115e59;
            --accent: #f97316;
            --accent-glow: #fb923c;
            --surface: #f8fafc;
            --surface-alt: #f0fdfa;
            --text-main: #1e293b;
            --text-soft: #475569;
            --text-muted: #94a3b8;
            --border-light: #e2e8f0;
            --border-subtle: #f1f5f9;
            --white: #ffffff;
            --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.05);
            --shadow-elevated: 0 4px 16px rgba(0, 0, 0, 0.06), 0 16px 40px rgba(0, 0, 0, 0.07);
            --shadow-glow: 0 0 0 4px rgba(13, 148, 136, 0.10);
            --radius-sm: 10px;
            --radius: 16px;
            --radius-lg: 22px;
            --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
            color: var(--text-main);
            background: linear-gradient(170deg, #f0fdfa 0%, #f8fafc 30%, #fff7ed 70%, #fefce8 100%);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            font-size: 15px;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition);
        }
        ul {
            list-style: none;
        }
        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 22px;
        }
        .flex-between {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        /* Header 与首页统一 */
        header {
            background: rgba(255, 255, 255, 0.94);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 1px 0 var(--border-subtle);
            transition: box-shadow var(--transition);
        }
        header.scrolled {
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        }
        .nav-container {
            height: 64px;
        }
        .logo {
            font-size: 1.38rem;
            font-weight: 800;
            color: var(--primary-deep);
            letter-spacing: -0.3px;
            display: flex;
            align-items: center;
            gap: 7px;
            white-space: nowrap;
        }
        .logo .rocket-icon {
            display: inline-block;
            font-size: 1.55rem;
            animation: hover-float 2.8s ease-in-out infinite;
        }
        @keyframes hover-float {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-5px);
            }
        }
        .logo span {
            color: var(--text-main);
            font-weight: 700;
        }
        nav ul {
            display: flex;
            gap: 24px;
            align-items: center;
        }
        nav a {
            font-weight: 500;
            color: var(--text-soft);
            font-size: 0.9rem;
            position: relative;
            padding: 5px 0;
            white-space: nowrap;
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
            transition: width var(--transition);
        }
        nav a:hover::after,
        nav a.active::after {
            width: 100%;
        }
        nav a:hover,
        nav a.active {
            color: var(--primary-deep);
        }
        .nav-cta {
            background: var(--primary);
            color: #fff !important;
            padding: 8px 18px !important;
            border-radius: 22px;
            font-weight: 600 !important;
            font-size: 0.86rem !important;
            transition: background var(--transition), transform var(--transition) !important;
            box-shadow: 0 4px 14px rgba(13, 148, 136, 0.25);
        }
        .nav-cta:hover {
            background: var(--primary-deep);
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(13, 148, 136, 0.35);
        }
        .nav-cta::after {
            display: none !important;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            flex-direction: column;
            gap: 5px;
            z-index: 1001;
        }
        .mobile-menu-btn span {
            display: block;
            width: 24px;
            height: 2.5px;
            background: var(--text-main);
            border-radius: 3px;
            transition: var(--transition);
        }

        /* 主体内容 */
        main {
            flex: 1;
            padding: 130px 0 70px;
        }
        .page-header {
            text-align: center;
            margin-bottom: 50px;
        }
        .page-tag {
            display: inline-block;
            padding: 5px 14px;
            background: #f0fdfa;
            color: var(--primary-deep);
            border-radius: 18px;
            font-size: 0.82rem;
            font-weight: 600;
            margin-bottom: 14px;
            letter-spacing: 0.3px;
        }
        .page-header h1 {
            font-size: 2.5rem;
            font-weight: 850;
            margin-bottom: 14px;
            letter-spacing: -0.6px;
            color: var(--text-main);
        }
        .page-header h1 .gradient-text {
            background: linear-gradient(135deg, #0d9488 0%, #0891b2 35%, #f97316 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .page-subtitle {
            font-size: 1.1rem;
            color: var(--text-soft);
            max-width: 640px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* 设备选择卡片 */
        .device-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
            margin-bottom: 48px;
        }
        .device-card {
            background: #fff;
            border-radius: var(--radius);
            padding: 28px 22px;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--border-subtle);
            transition: all var(--transition);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        .device-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            opacity: 0;
            transition: opacity var(--transition);
        }
        .device-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-elevated);
            border-color: #ccfbf1;
        }
        .device-card:hover::before {
            opacity: 1;
        }
        .device-icon {
            width: 52px;
            height: 52px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            font-size: 1.7rem;
            background: #f0fdfa;
            color: var(--primary);
        }
        .device-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 6px;
            color: var(--text-main);
        }
        .device-card .os-note {
            font-size: 0.82rem;
            color: var(--text-muted);
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .device-card .download-method {
            background: var(--surface-alt);
            border-radius: var(--radius-sm);
            padding: 14px 16px;
            margin-bottom: 18px;
            font-size: 0.9rem;
            color: var(--text-soft);
            line-height: 1.6;
            flex: 1;
        }
        .device-card .download-method strong {
            color: var(--primary-deep);
        }
        .btn-group-card {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: auto;
        }
        .btn {
            padding: 12px 22px;
            border-radius: 26px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border: none;
            white-space: nowrap;
            text-decoration: none;
        }
        .btn-primary {
            background: var(--primary);
            color: #fff;
            box-shadow: 0 8px 22px -6px rgba(13, 148, 136, 0.35);
        }
        .btn-primary:hover {
            background: var(--primary-deep);
            transform: translateY(-2px);
            box-shadow: 0 14px 30px -4px rgba(13, 148, 136, 0.45);
        }
        .btn-outline-dark {
            background: #1e293b;
            color: #fff;
            border: 2px solid #1e293b;
        }
        .btn-outline-dark:hover {
            background: #0f172a;
        }
        .github-link {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            font-weight: 500;
            font-size: 0.85rem;
            color: var(--text-soft);
            background: #f8fafc;
            border-radius: 26px;
            padding: 10px 18px;
            border: 1px solid var(--border-light);
            transition: all var(--transition);
        }
        .github-link:hover {
            border-color: var(--primary);
            color: var(--primary-deep);
            background: #f0fdfa;
        }

        /* 安装步骤时间线 */
        .steps-section {
            margin: 60px 0 50px;
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 45px 28px;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--border-subtle);
        }
        .section-header {
            text-align: center;
            max-width: 660px;
            margin: 0 auto 42px;
        }
        .section-tag {
            display: inline-block;
            padding: 5px 14px;
            background: #f0fdfa;
            color: var(--primary-deep);
            border-radius: 18px;
            font-size: 0.82rem;
            font-weight: 600;
            margin-bottom: 13px;
            letter-spacing: 0.3px;
        }
        .section-header h2 {
            font-size: 2rem;
            font-weight: 750;
            margin-bottom: 10px;
            color: var(--text-main);
        }
        .section-header p {
            color: var(--text-soft);
            font-size: 0.96rem;
            line-height: 1.65;
        }
        .timeline {
            display: flex;
            flex-direction: column;
            gap: 28px;
            max-width: 720px;
            margin: 0 auto;
            position: relative;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 24px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: #ccfbf1;
            z-index: 0;
        }
        .timeline-item {
            display: flex;
            gap: 18px;
            position: relative;
            z-index: 1;
        }
        .timeline-marker {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: #fff;
            border: 3px solid var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--primary-deep);
            flex-shrink: 0;
            box-shadow: 0 0 0 6px rgba(13, 148, 136, 0.06);
        }
        .timeline-content {
            background: var(--surface);
            border-radius: var(--radius);
            padding: 18px 20px;
            flex: 1;
            border: 1px solid var(--border-subtle);
            transition: all var(--transition);
        }
        .timeline-content:hover {
            border-color: #ccfbf1;
            box-shadow: var(--shadow-card);
        }
        .timeline-content h4 {
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 6px;
            color: var(--text-main);
        }
        .timeline-content p {
            font-size: 0.88rem;
            color: var(--text-soft);
            line-height: 1.6;
        }
        .timeline-content code {
            background: #e6fffa;
            padding: 2px 6px;
            border-radius: 4px;
            font-size: 0.85rem;
            color: var(--primary-dark);
        }

        /* 常见问题手风琴 */
        .faq-section {
            margin: 60px 0;
        }
        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 20px;
        }
        .faq-card {
            background: #fff;
            border-radius: var(--radius);
            padding: 22px 20px;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--border-subtle);
            transition: var(--transition);
            cursor: pointer;
        }
        .faq-card:hover {
            border-color: #ccfbf1;
            box-shadow: var(--shadow-elevated);
        }
        .faq-card h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text-main);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .faq-card p {
            font-size: 0.88rem;
            color: var(--text-soft);
            line-height: 1.6;
            display: none;
        }
        .faq-card.open p {
            display: block;
        }
        .faq-card .faq-icon {
            transition: transform 0.3s ease;
            font-size: 1.2rem;
            color: var(--primary);
        }
        .faq-card.open .faq-icon {
            transform: rotate(45deg);
        }

        /* 提示框 */
        .alert-info {
            background: #f0fdfa;
            border: 1px solid #99f6e4;
            color: #0f766e;
            padding: 16px 22px;
            border-radius: var(--radius-sm);
            font-size: 0.93rem;
            text-align: center;
            margin-top: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        /* 页脚 与首页保持一致 */
        footer {
            background: #0f172a;
            color: #94a3b8;
            padding: 50px 0 18px;
            margin-top: auto;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 34px;
            margin-bottom: 34px;
            border-bottom: 1px solid #1e293b;
            padding-bottom: 34px;
        }
        .footer-brand h3 {
            color: #fff;
            font-size: 1.3rem;
            margin-bottom: 10px;
            font-weight: 700;
        }
        .footer-brand p {
            line-height: 1.68;
            font-size: 0.87rem;
            max-width: 270px;
            color: #94a3b8;
        }
        .footer-col h4 {
            color: #e2e8f0;
            margin-bottom: 14px;
            font-size: 0.95rem;
            font-weight: 600;
        }
        .footer-col ul li {
            margin-bottom: 8px;
        }
        .footer-col a {
            font-size: 0.86rem;
            color: #94a3b8;
            transition: color var(--transition);
        }
        .footer-col a:hover {
            color: #fff;
        }
        .copyright {
            text-align: center;
            font-size: 0.82rem;
            color: #64748b;
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: flex;
            }
            nav ul {
                position: fixed;
                top: 0;
                right: -100%;
                width: 260px;
                height: 100vh;
                background: #fff;
                flex-direction: column;
                padding: 78px 28px 28px;
                gap: 18px;
                box-shadow: var(--shadow-elevated);
                transition: right var(--transition);
                z-index: 999;
            }
            nav ul.open {
                right: 0;
            }
            .page-header h1 {
                font-size: 2rem;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 22px;
            }
            .timeline::before {
                left: 18px;
            }
            .timeline-marker {
                width: 40px;
                height: 40px;
                font-size: 0.9rem;
            }
            .faq-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .page-header h1 {
                font-size: 1.7rem;
            }
            .device-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .btn {
                padding: 10px 18px;
                font-size: 0.85rem;
            }
        }