        :root {
            --bg: #ffffff;
            --surface: #f8fafc;
            --surface-alt: #f1f5f9;
            --text: #0f172a;
            --text-secondary: #475569;
            --text-muted: #64748b;
            --accent: #2563eb;
            --accent-light: #3b82f6;
            --accent-glow: rgba(37, 99, 235, 0.08);
            --border: #e2e8f0;
            --border-light: #f1f5f9;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
            --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.08);
            --shadow-xl: 0 32px 64px rgba(0, 0, 0, 0.1);
            --radius-sm: 12px;
            --radius: 20px;
            --radius-lg: 28px;
            --radius-xl: 36px;
            --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
            --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            --gradient-hero: linear-gradient(135deg, #2563eb 0%, #06b6d4 50%, #3b82f6 100%);
            --gradient-cta: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
            --gradient-card: linear-gradient(160deg, #ffffff 0%, #f8fafc 100%);
            --color-success: #10b981;
            --color-warning: #f59e0b;
            --color-danger: #ef4444;
            --color-info: #3b82f6;
        }

        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
            text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-sans);
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-rendering: optimizeLegibility;
        }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }
        .container {
            max-width: 1220px;
            margin: 0 auto;
            padding: 0 28px;
        }

        /* HEADER — 与首页完全一致 */
        header {
            background: rgba(255, 255, 255, 0.88);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(0, 0, 0, 0.04);
            transition: var(--transition);
        }
        header.scrolled {
            box-shadow: var(--shadow-md);
            background: rgba(255, 255, 255, 0.95);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 0;
            flex-wrap: wrap;
            gap: 14px;
        }

        .logo {
            font-size: 1.75rem;
            font-weight: 800;
            letter-spacing: -0.025em;
            background: var(--gradient-hero);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            flex-shrink: 0;
            white-space: nowrap;
        }

        .nav-links {
            display: flex;
            gap: 28px;
            align-items: center;
            flex-wrap: wrap;
            list-style: none;
        }
        .nav-links a {
            text-decoration: none;
            font-weight: 500;
            color: var(--text-secondary);
            transition: var(--transition);
            font-size: 0.95rem;
            position: relative;
            padding: 4px 0;
            white-space: nowrap;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            border-radius: 2px;
            transition: width var(--transition);
        }
        .nav-links a:hover {
            color: var(--accent);
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .nav-links a.active {
            color: var(--accent);
            font-weight: 600;
        }
        .nav-links a.active::after {
            width: 100%;
        }

        /* PAGE HERO */
        .page-hero {
            padding: 72px 0 56px;
            background: radial-gradient(ellipse at 80% 5%, rgba(37, 99, 235, 0.04) 0%, #ffffff 55%),
                radial-gradient(ellipse at 20% 90%, rgba(6, 182, 212, 0.03) 0%, #ffffff 55%);
            text-align: center;
        }
        .page-hero .badge {
            background: #eef2ff;
            color: #1e40af;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 7px 18px;
            border-radius: 40px;
            font-size: 0.82rem;
            font-weight: 600;
            margin-bottom: 16px;
            letter-spacing: 0.01em;
            border: 1px solid rgba(37, 99, 235, 0.12);
        }
        .page-hero h1 {
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-weight: 800;
            letter-spacing: -0.025em;
            margin-bottom: 16px;
            color: #0a0c10;
            line-height: 1.2;
        }
        .page-hero .hero-gradient-text {
            background: var(--gradient-hero);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .page-hero .subtitle {
            font-size: 1.05rem;
            color: var(--text-secondary);
            max-width: 680px;
            margin: 0 auto 8px;
            line-height: 1.5;
        }

        /* SECTION TITLES */
        .section-title-v2 {
            text-align: center;
            font-size: clamp(1.6rem, 3vw, 2rem);
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text);
            letter-spacing: -0.02em;
        }
        .section-subtitle {
            text-align: center;
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 44px;
            max-width: 620px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.5;
        }

        /* INSTALL & BASE */
        .install-base-section {
            padding: 64px 0;
            background: var(--surface);
        }
        .base-card {
            background: #ffffff;
            border-radius: var(--radius-xl);
            padding: 36px 32px;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border-light);
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
            align-items: flex-start;
        }
        .base-card .base-text {
            flex: 1;
            min-width: 250px;
        }
        .base-card h3 {
            font-size: 1.4rem;
            margin-bottom: 12px;
            color: var(--text);
        }
        .base-card p {
            color: var(--text-secondary);
            margin-bottom: 10px;
            line-height: 1.6;
        }
        .base-card .check-list {
            list-style: none;
            margin-top: 12px;
        }
        .base-card .check-list li {
            margin-bottom: 8px;
            display: flex;
            gap: 8px;
            align-items: baseline;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        .base-card .check-list .check-icon {
            color: var(--color-success);
            font-weight: 800;
        }
        .base-card .base-visual {
            flex: 0.8;
            min-width: 220px;
            background: #f0f4ff;
            border-radius: 24px;
            padding: 28px 22px;
            text-align: center;
            border: 1px dashed rgba(37, 99, 235, 0.2);
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 10px;
        }
        .base-visual .ios-icon {
            font-size: 2.8rem;
        }
        .base-visual .version-tag {
            font-weight: 700;
            color: var(--accent);
        }

        /* NODE IMPORT METHODS */
        .import-section {
            padding: 70px 0;
            background: #ffffff;
        }
        .method-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 24px;
        }
        .method-card {
            background: #ffffff;
            border-radius: var(--radius-lg);
            padding: 30px 22px;
            text-align: center;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            position: relative;
        }
        .method-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-xl);
            border-color: rgba(37, 99, 235, 0.2);
        }
        .method-card .method-icon {
            font-size: 2.8rem;
            display: block;
            margin-bottom: 14px;
        }
        .method-card h4 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text);
        }
        .method-card p {
            font-size: 0.88rem;
            color: var(--text-muted);
            line-height: 1.5;
            margin-bottom: 14px;
        }
        .method-card .btn-method {
            background: var(--surface);
            padding: 8px 18px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--text-secondary);
            display: inline-block;
            text-decoration: none;
            border: 1px solid var(--border);
            transition: var(--transition);
        }
        .method-card .btn-method:hover {
            background: var(--accent);
            color: #fff;
            border-color: var(--accent);
        }
        .method-card.featured {
            border: 2px solid rgba(37, 99, 235, 0.18);
            box-shadow: var(--shadow-lg);
        }
        .method-card.featured::before {
            content: '👍 推荐';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gradient-hero);
            color: #fff;
            padding: 4px 16px;
            border-radius: 20px;
            font-size: 0.72rem;
            font-weight: 700;
        }

        /* RULE CONFIG FLOW */
        .rule-config-section {
            padding: 70px 0;
            background: var(--surface);
        }
        .config-steps {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            align-items: flex-start;
        }
        .config-step {
            flex: 1;
            min-width: 200px;
            max-width: 260px;
            background: #ffffff;
            border-radius: var(--radius-lg);
            padding: 28px 20px;
            text-align: center;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            position: relative;
        }
        .config-step:hover {
            box-shadow: var(--shadow-lg);
            border-color: rgba(37, 99, 235, 0.18);
            transform: translateY(-5px);
        }
        .config-step .step-circle {
            width: 44px;
            height: 44px;
            background: var(--gradient-hero);
            border-radius: 50%;
            color: #fff;
            font-weight: 800;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 14px;
        }
        .config-step h4 {
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text);
        }
        .config-step p {
            font-size: 0.82rem;
            color: var(--text-muted);
            line-height: 1.5;
        }
        .config-arrow {
            display: flex;
            align-items: center;
            font-size: 1.5rem;
            color: var(--accent);
            flex-shrink: 0;
            align-self: center;
            margin-top: 20px;
        }

        /* PERFORMANCE TIPS */
        .perf-section {
            padding: 70px 0;
            background: #ffffff;
        }
        .perf-tips {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        .perf-tip {
            flex: 1;
            min-width: 250px;
            background: #f8fafc;
            border-radius: var(--radius);
            padding: 24px 22px;
            border: 1px solid var(--border-light);
            display: flex;
            gap: 14px;
            align-items: flex-start;
            transition: var(--transition);
        }
        .perf-tip:hover {
            background: #ffffff;
            box-shadow: var(--shadow-md);
            border-color: rgba(37, 99, 235, 0.15);
        }
        .perf-tip .tip-icon {
            font-size: 2rem;
            flex-shrink: 0;
        }
        .perf-tip h4 {
            font-size: 1rem;
            margin-bottom: 4px;
            color: var(--text);
        }
        .perf-tip p {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        /* TROUBLESHOOT */
        .troubleshoot-section {
            padding: 70px 0;
            background: var(--surface);
        }
        .trouble-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 16px;
            max-width: 900px;
            margin: 0 auto;
        }
        .trouble-item {
            background: #fff;
            border-radius: var(--radius);
            padding: 20px 22px;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }
        .trouble-item:hover {
            box-shadow: var(--shadow-md);
            border-color: rgba(37, 99, 235, 0.15);
        }
        .trouble-item h4 {
            font-size: 0.95rem;
            margin-bottom: 6px;
            color: var(--text);
        }
        .trouble-item p {
            font-size: 0.85rem;
            color: var(--text-muted);
        }
        .trouble-item .trouble-status {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 700;
            margin-right: 6px;
        }
        .status-warning { background: #fef3c7; color: #92400e; }
        .status-error { background: #fee2e2; color: #991b1b; }
        .status-info { background: #dbeafe; color: #1e40af; }

        /* QUICK LINKS */
        .quick-links-section {
            padding: 56px 0;
            background: #ffffff;
        }
        .quick-links-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            justify-content: center;
        }
        .quick-link-card {
            background: #ffffff;
            border-radius: var(--radius);
            padding: 18px 22px;
            border: 1px solid var(--border-light);
            text-decoration: none;
            color: var(--text);
            font-weight: 600;
            font-size: 0.9rem;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: var(--shadow-sm);
            flex: 1;
            min-width: 170px;
            max-width: 220px;
            justify-content: center;
        }
        .quick-link-card:hover {
            border-color: var(--accent);
            color: var(--accent);
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
        }

        /* CTA */
        .cta-v2 {
            background: var(--gradient-cta);
            color: #ffffff;
            padding: 64px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-v2::before {
            content: '';
            position: absolute;
            top: -40%;
            left: -20%;
            width: 140%;
            height: 180%;
            background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
            pointer-events: none;
        }
        .btn-cta-light {
            background: #ffffff;
            color: #0f172a;
            padding: 14px 42px;
            border-radius: 60px;
            font-weight: 700;
            text-decoration: none;
            display: inline-block;
            margin-top: 24px;
            transition: var(--transition);
            position: relative;
            z-index: 1;
            font-size: 0.95rem;
        }
        .btn-cta-light:hover {
            background: #e2e8f0;
            transform: scale(1.03);
        }
        .cta-extra {
            margin-top: 20px;
            font-size: 0.78rem;
            opacity: 0.7;
            position: relative;
            z-index: 1;
        }

        /* FOOTER */
        footer {
            background: #020617;
            color: #94a3b8;
            padding: 52px 0 28px;
        }
        .footer-grid {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 36px;
            margin-bottom: 40px;
        }
        .footer-grid>div {
            min-width: 150px;
        }
        .footer-grid h4 {
            color: #ffffff;
            font-size: 0.95rem;
            margin-bottom: 8px;
        }
        .footer-grid ul {
            list-style: none;
        }
        .footer-grid ul li {
            margin-bottom: 6px;
        }
        .footer-grid a {
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.85rem;
            transition: var(--transition);
        }
        .footer-grid a:hover {
            color: #ffffff;
        }
        .footer-bottom {
            border-top: 1px solid #1e293b;
            padding-top: 24px;
            text-align: center;
            font-size: 0.78rem;
            color: #64748b;
        }

        @media (max-width: 900px) {
            .page-hero h1 { font-size: 1.7rem; }
            .config-steps { flex-direction: column; align-items: center; }
            .config-arrow { transform: rotate(90deg); }
            .nav-links { gap: 14px; }
            .nav-links a { font-size: 0.82rem; }
            .container { padding: 0 16px; }
        }
        @media (max-width: 600px) {
            nav { flex-direction: column; align-items: flex-start; gap: 10px; }
        }