        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --primary: #6366F1;
            --primary-deep: #4F46E5;
            --accent: #14B8A6;
            --bg: #F9FAFB;
            --surface: #FFFFFF;
            --text: #1E293B;
            --text-secondary: #64748B;
            --text-muted: #94A3B8;
            --border: #E2E8F0;
            --border-light: #F1F5F9;
            --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
            --shadow: 0 4px 12px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
            --shadow-lg: 0 12px 32px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
            --radius-sm: 8px;
            --radius: 12px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --transition: 0.2s cubic-bezier(0.4,0,0.2,1);
            --font-mono: 'SF Mono', 'Cascadia Code', 'Consolas', monospace;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Noto Sans SC', sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
        }

        header {
            background: rgba(255,255,255,0.88);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: var(--shadow-sm);
        }
        .header-box {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 24px;
            height: 60px;
            gap: 20px;
        }
        .brand-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: var(--text);
            font-weight: 700;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .brand-logo:hover { color: var(--primary); }
        .brand-logo img {
            width: 34px;
            height: 34px;
            border-radius: 8px;
            object-fit: contain;
        }
        .brand-dot {
            width: 7px;
            height: 7px;
            background: var(--accent);
            border-radius: 50%;
            margin: 0 2px;
            animation: pulse-dot 2s infinite;
            display: inline-block;
        }
        @keyframes pulse-dot {
            0%,100% { opacity:1; transform:scale(1); }
            50% { opacity:0.4; transform:scale(1.6); }
        }
        nav { display: flex; gap: 4px; flex-wrap: wrap; }
        nav a {
            text-decoration: none;
            color: var(--text-secondary);
            font-weight: 500;
            font-size: 0.9rem;
            padding: 8px 14px;
            border-radius: 8px;
            transition: var(--transition);
            white-space: nowrap;
        }
        nav a:hover { color: var(--primary); background: #EEF2FF; }
        nav a.current-tab { color: var(--primary); background: #EEF2FF; font-weight: 600; }
        .nav-accent { background: linear-gradient(135deg, #EEF2FF, #E0F2FE); color: var(--primary-deep) !important; font-weight: 600 !important; }

        main { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
        .section-inner { max-width: 1100px; margin: 0 auto; padding: 60px 0; }
        section h2 {
            font-size: 2rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            text-align: center;
            margin-bottom: 12px;
        }
        .section-lead {
            text-align: center;
            color: var(--text-secondary);
            font-size: 1.05rem;
            max-width: 700px;
            margin: 0 auto 40px;
            line-height: 1.8;
        }

        .page-hero {
            padding: 48px 0 40px;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        .badge {
            display: inline-block;
            background: #EEF2FF;
            color: var(--primary-deep);
            font-weight: 600;
            font-size: 0.85rem;
            padding: 6px 16px;
            border-radius: 20px;
            margin-bottom: 16px;
            border: 1px solid #C7D2FE;
        }
        .gradient-text {
            background: linear-gradient(135deg, #6366F1, #14B8A6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .page-hero h1 {
            font-size: 2.6rem;
            font-weight: 900;
            letter-spacing: -1px;
            line-height: 1.25;
            margin-bottom: 16px;
        }
        .desc {
            font-size: 1.05rem;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 24px;
        }

        /* 案例卡片 */
        .case-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
            margin-top: 24px;
        }
        .case-card {
            background: var(--surface);
            border-radius: var(--radius-xl);
            padding: 28px 24px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border: 1px solid var(--border-light);
            display: flex;
            flex-direction: column;
        }
        .case-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
            border-color: #C7D2FE;
        }
        .case-icon {
            font-size: 2.4rem;
            margin-bottom: 12px;
        }
        .case-card h3 {
            font-size: 1.3rem;
            font-weight: 800;
            margin-bottom: 8px;
        }
        .case-goal {
            color: var(--primary-deep);
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 12px;
            background: #EEF2FF;
            display: inline-block;
            padding: 2px 10px;
            border-radius: 12px;
            align-self: flex-start;
        }
        .case-card .config-snippet {
            background: #F8FAFC;
            border-radius: 8px;
            padding: 12px 14px;
            font-family: var(--font-mono);
            font-size: 0.75rem;
            color: var(--text-secondary);
            margin: 14px 0;
            overflow-x: auto;
            white-space: pre-wrap;
            border: 1px solid var(--border-light);
        }
        .case-card .tuning {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-top: auto;
            padding-top: 12px;
            border-top: 1px dashed var(--border);
        }

        /* 速配向导 */
        .wizard-box {
            background: linear-gradient(135deg, #EEF2FF, #FFFFFF);
            border-radius: var(--radius-xl);
            padding: 36px 32px;
            box-shadow: var(--shadow);
            text-align: center;
        }
        .wizard-steps {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            margin-top: 28px;
        }
        .wizard-step {
            background: white;
            border-radius: var(--radius);
            padding: 20px;
            flex: 1 1 180px;
            border: 1px solid var(--border);
        }
        .wizard-step .step-letter {
            font-weight: 900;
            font-size: 2rem;
            color: #C7D2FE;
        }

        /* 效果对比表 */
        .compare-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--surface);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .compare-table th {
            background: #F8FAFC;
            text-align: left;
            padding: 14px 18px;
            font-weight: 700;
            border-bottom: 2px solid var(--border);
        }
        .compare-table td {
            padding: 12px 18px;
            border-bottom: 1px solid var(--border-light);
            color: var(--text-secondary);
        }
        .compare-table tr:last-child td {
            border-bottom: none;
        }
        .badge-win {
            background: #DCFCE7;
            color: #166534;
            padding: 2px 10px;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        /* 模板下载卡片 */
        .template-download {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }
        .template-item {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 20px 24px;
            text-align: center;
            min-width: 180px;
            transition: var(--transition);
        }
        .template-item:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow);
        }
        .btn-outline-sm {
            display: inline-block;
            margin-top: 12px;
            background: var(--surface);
            color: var(--primary-deep);
            font-weight: 600;
            padding: 8px 20px;
            border-radius: 20px;
            text-decoration: none;
            border: 2px solid #C7D2FE;
            transition: var(--transition);
        }
        .btn-outline-sm:hover {
            background: #EEF2FF;
            border-color: var(--primary);
        }

        footer {
            background: #1E293B;
            color: #CBD5E1;
            margin-top: 32px;
            padding: 48px 24px 32px;
        }
        .footer-wrapper {
            max-width: 1280px;
            margin: 0 auto;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 28px;
            margin-bottom: 32px;
        }
        .footer-section h5 {
            font-size: 0.95rem;
            font-weight: 700;
            color: #F1F5F9;
            margin-bottom: 12px;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section ul li {
            margin-bottom: 6px;
        }
        .footer-section ul li a {
            color: #94A3B8;
            text-decoration: none;
            font-size: 0.85rem;
        }
        .footer-section ul li a:hover {
            color: #E2E8F0;
            text-decoration: underline;
        }
        .footer-legal {
            border-top: 1px solid #334155;
            padding-top: 20px;
            text-align: center;
            font-size: 0.8rem;
            color: #64748B;
            line-height: 1.8;
        }

        @media (max-width: 768px) {
            .header-box {
                flex-direction: column;
                height: auto;
                padding: 12px 16px;
            }
            .page-hero h1 {
                font-size: 1.9rem;
            }
            section h2 {
                font-size: 1.5rem;
            }
            .section-inner {
                padding: 36px 16px;
            }
        }