        :root {
            --bg: #fef9f2;
            --surface: #ffffff;
            --text: #1e1e1e;
            --text-secondary: #5f5f5f;
            --brand: #f59e0b;
            --brand-dark: #d97706;
            --safe: #10b981;
            --border: #e5e7eb;
            --radius: 16px;
            --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "SF Pro Display", Helvetica, Arial, sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }
        header {
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            background: rgba(254, 249, 242, 0.9);
            backdrop-filter: blur(16px);
            z-index: 100;
        }
        .nav-wrapper {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 24px;
        }
        .brand-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }
        .brand-logo svg {
            width: 32px;
            height: 32px;
            fill: var(--brand);
        }
        .brand-name {
            font-size: 20px;
            font-weight: 800;
            color: var(--text);
            letter-spacing: -0.5px;
        }
        .brand-badge {
            font-size: 11px;
            font-weight: 700;
            background: #fef3c7;
            color: #b45309;
            padding: 2px 8px;
            border-radius: 4px;
        }
        nav {
            display: flex;
            gap: 36px;
        }
        nav a {
            text-decoration: none;
            color: var(--text-secondary);
            font-weight: 600;
            font-size: 14px;
            transition: color 0.2s;
        }
        nav a:hover,
        nav a.active {
            color: var(--brand-dark);
        }
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* 页面标题 */
        .page-hero {
            text-align: center;
            padding: 80px 0 40px;
        }
        .page-hero h1 {
            font-size: 44px;
            font-weight: 900;
            letter-spacing: -1.5px;
            margin-bottom: 20px;
        }
        .page-hero h1 span {
            color: var(--brand);
        }
        .page-hero p {
            font-size: 18px;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* 步骤引导卡片 */
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin: 60px 0 80px;
        }
        @media (max-width: 900px) { .steps-grid { grid-template-columns: 1fr; } }
        .step-block {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 40px 32px;
            position: relative;
            transition: all 0.25s;
            display: flex;
            flex-direction: column;
        }
        .step-block:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 32px rgba(0,0,0,0.04);
            border-color: var(--brand);
        }
        .step-num {
            font-family: var(--mono);
            font-size: 56px;
            font-weight: 900;
            color: #fde68a;
            line-height: 1;
            margin-bottom: 16px;
        }
        .step-block h3 {
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }
        .step-block p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 20px;
            flex: 1;
        }
        .step-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: auto;
        }
        .step-meta span {
            background: #f3f4f6;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            color: var(--text-secondary);
        }

        /* 配置指南手风琴 */
        .config-section {
            margin-bottom: 80px;
        }
        .config-section h2 {
            font-size: 36px;
            font-weight: 900;
            margin-bottom: 40px;
            text-align: center;
            letter-spacing: -1px;
        }
        .accordion-grid {
            display: flex;
            flex-direction: column;
            gap: 16px;
            max-width: 900px;
            margin: 0 auto;
        }
        details.config-item {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 24px 28px;
            transition: border-color 0.2s;
        }
        details.config-item[open] {
            border-color: var(--brand);
            background: #fffdf7;
        }
        summary {
            font-weight: 700;
            font-size: 18px;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
        }
        summary::-webkit-details-marker { display: none; }
        summary::after {
            content: "›";
            font-size: 28px;
            color: var(--brand);
            transform: rotate(90deg);
            transition: transform 0.2s;
        }
        details[open] summary::after {
            transform: rotate(-90deg);
        }
        .config-body {
            margin-top: 20px;
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .config-body ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .config-body ul li {
            background: #f3f4f6;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
        }

        /* 安全提示横幅 */
        .safety-banner {
            background: #1e1e1e;
            color: #fbbf24;
            border-radius: 24px;
            padding: 48px;
            margin-bottom: 80px;
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            align-items: center;
            justify-content: space-between;
        }
        .safety-banner h3 {
            font-size: 28px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 12px;
        }
        .safety-banner p {
            color: #d1d5db;
            max-width: 500px;
            line-height: 1.6;
        }
        .btn-safety {
            background: #f59e0b;
            color: #1e1e1e;
            padding: 14px 32px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 800;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: background 0.2s;
        }
        .btn-safety:hover {
            background: #fbbf24;
        }

        /* FAQ 双列 */
        .faq-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin-bottom: 80px;
        }
        @media (max-width: 700px) { .faq-grid { grid-template-columns: 1fr; } }
        details.faq-item {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 20px 24px;
            cursor: pointer;
            transition: border-color 0.2s;
        }
        details.faq-item[open] { border-color: var(--brand); }
        summary.faq-q {
            font-weight: 700;
            font-size: 16px;
            list-style: none;
            display: flex;
            justify-content: space-between;
        }
        summary.faq-q::after { content: "+"; font-size: 22px; color: var(--brand); }
        details[open] summary.faq-q::after { content: "−"; }
        .faq-a {
            margin-top: 16px;
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* 页脚 */
        footer {
            background: #fff;
            border-top: 1px solid var(--border);
            padding: 60px 24px 40px;
        }
        .footer-grid {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.5fr repeat(3, 1fr);
            gap: 40px;
            padding-bottom: 40px;
        }
        @media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
        .footer-col h5 {
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #9ca3af;
            margin-bottom: 20px;
        }
        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 10px; }
        .footer-col a { color: var(--text-secondary); text-decoration: none; font-size: 14px; }
        .footer-col a:hover { color: var(--brand-dark); }
        .footer-bottom {
            max-width: 1300px;
            margin: 0 auto;
            border-top: 1px solid var(--border);
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            font-size: 13px;
            color: var(--text-secondary);
            flex-wrap: wrap;
            gap: 16px;
        }
        .footer-bottom a { color: var(--text-secondary); text-decoration: none; margin-left: 20px; }