        :root {
            --violet-50: #f5f2ff;
            --violet-100: #ede7ff;
            --violet-400: #a78bfa;
            --violet-500: #7c3aed;
            --violet-600: #6d28d9;
            --violet-700: #4f46e5;
            --indigo-600: #4f46e5;
            --indigo-700: #4338ca;
            --slate-900: #1a142b;
            --slate-700: #3a3450;
            --slate-500: #6b6480;
            --slate-400: #7a748a;
            --slate-300: #b0aac0;
            --white-soft: #faf8ff;
            --white-pure: #ffffff;
            --radius-xl: 32px;
            --radius-lg: 24px;
            --radius-full: 60px;
            --shadow-card: 0 4px 20px rgba(79, 70, 229, 0.06);
            --shadow-hover: 0 14px 36px rgba(124, 58, 237, 0.12);
            --shadow-btn: 0 8px 26px rgba(79, 70, 229, 0.28);
            --blur-bg: rgba(255, 255, 255, 0.55);
            --border-subtle: rgba(124, 58, 237, 0.07);
            --border-medium: rgba(124, 58, 237, 0.16);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans SC', Roboto, sans-serif;
            background: var(--violet-50);
            color: var(--slate-900);
            line-height: 1.55;
            -webkit-font-smoothing: antialiased;
        }
        a { text-decoration: none; color: inherit; transition: color 0.22s ease; }
        ul { list-style: none; padding: 0; margin: 0; }
        .container { max-width: 1220px; margin: 0 auto; padding: 0 28px; }

        /* Header (保持一致) */
        .header {
            background: var(--blur-bg);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.45);
            padding: 13px 0;
            position: sticky;
            top: 0;
            z-index: 60;
        }
        .header-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
        .logo { display: flex; align-items: center; gap: 10px; font-weight: 750; font-size: 23px; letter-spacing: -0.4px; }
        .logo svg { display: block; }
        .logo .brand {
            background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .logo .year-tag {
            font-size: 12px; font-weight: 550; color: #7c7a8a;
            background: rgba(124, 58, 237, 0.1); padding: 3px 13px;
            border-radius: 40px; -webkit-text-fill-color: #6b6480; letter-spacing: 0.2px;
        }
        .nav { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
        .nav>li { position: relative; list-style: none; }
        .nav>li>a, .nav>li>.nav-label {
            display: inline-flex; align-items: center; gap: 5px; font-size: 14.5px;
            font-weight: 530; color: var(--slate-700); padding: 8px 14px;
            border-radius: 40px; cursor: pointer; transition: 0.22s; letter-spacing: 0.1px;
            white-space: nowrap; background: transparent; border: none; font-family: inherit;
        }
        .nav>li>a:hover, .nav>li>.nav-label:hover { color: var(--indigo-600); background: rgba(124, 58, 237, 0.06); }
        .nav>li>a.active {
            color: var(--indigo-600); font-weight: 650;
            background: rgba(124, 58, 237, 0.08); box-shadow: 0 0 0 1px rgba(124, 58, 237, 0.12);
        }
        .nav .pill-link {
            background: var(--indigo-600); color: #fff !important; font-size: 12.5px;
            padding: 9px 18px; border-radius: 40px; font-weight: 620;
            box-shadow: 0 4px 14px rgba(79, 70, 229, 0.24); letter-spacing: 0.2px; margin-left: 8px;
        }
        .nav .pill-link:hover { background: #7c3aed; box-shadow: 0 7px 22px rgba(124, 58, 237, 0.34); }
        .nav .arrow-icon { width: 14px; height: 14px; transition: transform 0.25s; opacity: 0.5; }
        .nav>li:hover>.nav-label .arrow-icon { transform: rotate(180deg); opacity: 1; }
        .nav .dropdown {
            position: absolute; top: calc(100% + 8px); left: 0; min-width: 210px;
            background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(20px);
            border-radius: 20px; padding: 8px; box-shadow: 0 20px 48px rgba(79, 70, 229, 0.14);
            border: 1px solid rgba(124, 58, 237, 0.1); opacity: 0; visibility: hidden;
            transform: translateY(8px); transition: 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            z-index: 70; display: flex; flex-direction: column;
        }
        .nav>li:hover>.dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
        .nav .dropdown li a {
            display: flex; align-items: center; gap: 8px; padding: 10px 14px;
            border-radius: 14px; font-size: 13.5px; font-weight: 500; color: var(--slate-700);
            transition: 0.2s; white-space: nowrap;
        }
        .nav .dropdown li a:hover { background: rgba(124, 58, 237, 0.07); color: var(--indigo-600); font-weight: 600; }
        .mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; }
        .mobile-toggle span { display: block; width: 27px; height: 2.6px; background: var(--slate-900); border-radius: 4px; }

        /* Hero */
        .page-hero {
            padding: 56px 0 38px;
            background: linear-gradient(150deg, #ede7ff 0%, #f5f2ff 60%, #faf8ff 100%);
            border-bottom: 1px solid rgba(124, 58, 237, 0.07);
        }
        .hero-flex { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 24px; }
        .hero-flex h1 { font-size: 44px; font-weight: 820; letter-spacing: -0.03em; max-width: 600px; line-height: 1.15; }
        .hero-flex h1 .accent {
            background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
        }
        .hero-flex .sub { font-size: 17px; color: #4a4460; margin-top: 10px; max-width: 520px; }
        .hero-meta-badge {
            display: flex; flex-wrap: wrap; gap: 16px; font-size: 13.5px; color: #6b6480;
            background: rgba(255,255,255,0.55); padding: 10px 22px; border-radius: 60px;
            backdrop-filter: blur(6px); white-space: nowrap;
        }
        .hero-meta-badge strong { color: var(--slate-900); font-weight: 630; }

        .stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 30px; }
        .stat-card {
            background: rgba(255,255,255,0.65); backdrop-filter: blur(5px);
            padding: 20px 24px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.7); text-align: center;
        }
        .stat-card .num { font-size: 30px; font-weight: 800; background: linear-gradient(135deg, #7c3aed, #4f46e5); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: block; }
        .stat-card .label { font-size: 14px; color: #4a4460; font-weight: 500; margin-top: 2px; }

        /* Guide Body */
        .guide-body { padding: 44px 0 56px; background: var(--white-pure); }
        .guide-wrapper { display: grid; grid-template-columns: 260px 1fr; gap: 44px; align-items: start; }
        .guide-nav {
            position: sticky; top: 90px; background: var(--white-soft);
            border-radius: 28px; padding: 20px 16px; border: 1px solid var(--border-subtle);
        }
        .guide-nav .nav-title {
            font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px;
            color: #7c7a8a; font-weight: 600; padding: 0 8px 12px;
            border-bottom: 1px solid rgba(124,58,237,0.06); margin-bottom: 12px;
        }
        .guide-nav .step-link {
            display: flex; align-items: center; gap: 12px; padding: 10px 12px;
            border-radius: 14px; cursor: pointer; transition: 0.2s; font-weight: 500;
            font-size: 15px; color: var(--slate-700); border: none; background: transparent;
            width: 100%; text-align: left;
        }
        .guide-nav .step-link:hover { background: rgba(124, 58, 237, 0.06); color: var(--indigo-600); }
        .guide-nav .step-link.active {
            background: linear-gradient(135deg, rgba(124,58,237,0.10), rgba(79,70,229,0.06));
            color: var(--indigo-600); font-weight: 600;
        }
        .guide-nav .step-link .num {
            display: inline-flex; align-items: center; justify-content: center;
            width: 26px; height: 26px; border-radius: 40px; background: rgba(124,58,237,0.08);
            font-size: 13px; font-weight: 700; color: var(--indigo-600); flex-shrink: 0;
        }
        .guide-nav .step-link.active .num { background: linear-gradient(135deg, #7c3aed, #4f46e5); color: #fff; }

        .guide-content { padding-top: 4px; }
        .guide-panel { display: none; animation: fadeUp 0.3s ease; }
        .guide-panel.active { display: block; }
        @keyframes fadeUp { 0% { opacity: 0; transform: translateY(12px); } 100% { opacity: 1; transform: translateY(0); } }
        .guide-panel .panel-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
        .guide-panel .panel-header .big-num {
            font-size: 42px; font-weight: 800; background: linear-gradient(135deg, #7c3aed, #4f46e5);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1;
        }
        .guide-panel .panel-header h2 { font-size: 28px; font-weight: 700; }
        .guide-panel .panel-desc { font-size: 16px; color: #4a4460; margin-bottom: 20px; max-width: 680px; }
        .code-block {
            background: #1a142b; color: #e8e3f0; padding: 16px 20px; border-radius: 14px;
            font-family: 'SF Mono', 'Fira Code', monospace; font-size: 14px; overflow-x: auto;
            margin: 14px 0 10px; white-space: pre-wrap; word-break: break-all;
            border: 1px solid rgba(255,255,255,0.06);
        }
        .code-block .comment { color: #7a748a; }
        .inline-code {
            background: rgba(124,58,237,0.06); padding: 2px 12px; border-radius: 6px;
            font-size: 14px; color: #1a142b; font-family: 'SF Mono', monospace;
        }
        .tag-group { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
        .tag-group .tag {
            font-size: 12px; background: rgba(124,58,237,0.08); padding: 4px 16px;
            border-radius: 40px; font-weight: 500; color: var(--indigo-600);
        }
        .tip-box {
            background: #ede7ff; border-radius: 16px; padding: 16px 20px;
            margin: 16px 0 8px; border-left: 4px solid #7c3aed;
        }
        .tip-box strong { color: var(--slate-900); }
        .tip-box p { font-size: 15px; color: #3a3450; margin: 0; }
        .guide-panel ul { margin: 12px 0; }
        .guide-panel ul li {
            padding: 5px 0; font-size: 15px; color: #3a3450;
            display: flex; align-items: center; gap: 10px;
        }
        .guide-panel ul li::before { content: "▸"; color: #7c3aed; font-weight: 700; }

        /* 创意版块：对比表格 */
        .compare-table {
            width: 100%; border-collapse: separate; border-spacing: 0 8px; margin: 12px 0 20px;
        }
        .compare-table th { text-align: left; font-size: 13px; font-weight: 600; color: #5a5470; padding: 0 12px 4px; }
        .compare-table td {
            background: var(--white-soft); padding: 12px 16px; font-size: 14px; border-radius: 12px;
        }
        .compare-table tr td:first-child { border-radius: 12px 0 0 12px; }
        .compare-table tr td:last-child { border-radius: 0 12px 12px 0; }
        .highlight-cell { background: #ede7ff; font-weight: 600; }

        /* 优化前后对比条 */
        .comparison-bars { margin: 20px 0; }
        .bar-item { margin-bottom: 16px; }
        .bar-label { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
        .bar-container { display: flex; align-items: center; gap: 12px; }
        .bar { height: 10px; border-radius: 10px; background: rgba(124,58,237,0.12); position: relative; flex: 1; }
        .bar-fill { height: 100%; border-radius: 10px; background: linear-gradient(90deg, #7c3aed, #4f46e5); width: 0%; }
        .bar-value { font-size: 13px; font-weight: 600; color: #4f46e5; min-width: 50px; }

        /* FAQ 折叠 */
        .faq-section { margin-top: 24px; }
        .faq-item { border-bottom: 1px solid rgba(124,58,237,0.08); }
        .faq-question {
            width: 100%; text-align: left; padding: 14px 0; font-size: 16px; font-weight: 600;
            background: none; border: none; cursor: pointer; display: flex; justify-content: space-between;
            align-items: center; color: var(--slate-900);
        }
        .faq-question:hover { color: #4f46e5; }
        .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; font-size: 15px; color: #3a3450; padding-left: 4px; }
        .faq-item.open .faq-answer { max-height: 300px; padding-bottom: 12px; }
        .faq-arrow { transition: transform 0.3s; }
        .faq-item.open .faq-arrow { transform: rotate(180deg); }

        /* Footer */
        .footer {
            background: #1a142b; color: #b0aac0; padding: 44px 0 26px;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
        }
        .footer-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(155px, 1fr)); gap: 30px; }
        .footer-col h5 { color: #e8e3f0; font-size: 15.5px; font-weight: 620; margin-bottom: 11px; }
        .footer-col p, .footer-col li { font-size: 13.5px; line-height: 1.85; color: #b0aac0; }
        .footer-col ul li { margin-bottom: 1px; }
        .footer-col a { color: #b0aac0; transition: 0.2s; }
        .footer-col a:hover { color: #d0c8e8; }
        .footer-bottom {
            margin-top: 26px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.04);
            display: flex; flex-wrap: wrap; justify-content: space-between; font-size: 12.5px; color: #7a748a; gap: 10px;
        }
        .footer-bottom .meta-group { display: flex; flex-wrap: wrap; gap: 16px; }

        @media (max-width: 960px) {
            .guide-wrapper { grid-template-columns: 1fr; }
            .guide-nav { position: relative; top: 0; display: flex; flex-wrap: wrap; gap: 6px; padding: 14px 16px; }
            .guide-nav .nav-title { width: 100%; }
            .guide-nav .step-link { flex: 1 0 auto; width: auto; padding: 8px 14px; font-size: 14px; border-radius: 40px; }
            .guide-nav .step-link .num { width: 22px; height: 22px; font-size: 12px; }
            .page-hero h1 { font-size: 34px; }
            .stats-row { grid-template-columns: 1fr 1fr 1fr; }
        }
        @media (max-width: 720px) {
            .nav { display: none; width: 100%; flex-direction: column; gap: 2px; padding: 12px 0; border-top: 1px solid rgba(124,58,237,0.1); }
            .nav.open { display: flex; }
            .mobile-toggle { display: flex; }
            .header-inner { flex-wrap: wrap; }
            .hero-flex { flex-direction: column; }
            .stats-row { grid-template-columns: 1fr 1fr; }
            .guide-panel .panel-header h2 { font-size: 22px; }
            .footer-inner { grid-template-columns: 1fr 1fr; }
            .footer-bottom { flex-direction: column; }
        }
        @media (max-width: 480px) {
            .container { padding: 0 15px; }
            .page-hero h1 { font-size: 26px; }
            .stats-row { grid-template-columns: 1fr; }
            .footer-inner { grid-template-columns: 1fr; }
        }