        :root {
            --bg: #fafbf8;
            --surface: #ffffff;
            --text: #1a221e;
            --text-secondary: #445a4c;
            --text-muted: #6b7d6f;
            --accent: #1a6b4c;
            --accent-dark: #0f4d35;
            --accent-light: #edf7f2;
            --accent-glow: rgba(26, 107, 76, 0.10);
            --teal: #1a6b4c;
            --teal-light: #edf7f2;
            --border: #dce5de;
            --border-light: #eef3ef;
            --warm-highlight: #fdf6ed;
            --amber-accent: #c47a1a;
            --amber-light: #fef9f2;
            --shadow-sm: 0 1px 4px rgba(26, 34, 30, 0.04);
            --shadow-md: 0 6px 20px rgba(26, 34, 30, 0.05);
            --shadow-lg: 0 16px 36px rgba(26, 34, 30, 0.08);
            --shadow-xl: 0 24px 48px rgba(26, 34, 30, 0.10);
            --radius-sm: 14px;
            --radius-md: 22px;
            --radius-lg: 34px;
            --radius-xl: 46px;
            --radius-full: 999px;
            --transition: 0.20s cubic-bezier(0.4, 0, 0.2, 1);
            --font-stack: 'Inter', system-ui, -apple-system, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-stack);
            background: var(--bg);
            color: var(--text);
            line-height: 1.65;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            background-image:
                radial-gradient(ellipse at 12% 8%, rgba(26, 107, 76, 0.025) 0%, transparent 55%),
                radial-gradient(ellipse at 80% 55%, rgba(26, 107, 76, 0.018) 0%, transparent 48%),
                radial-gradient(ellipse at 35% 82%, rgba(196, 122, 26, 0.015) 0%, transparent 42%);
            background-attachment: fixed;
        }

        .container {
            max-width: 1220px;
            margin: 0 auto;
            padding: 0 26px;
        }

        /* ── HEADER ────────────────────── */
        header {
            background: rgba(255, 255, 255, 0.84);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            position: sticky;
            top: 0;
            z-index: 120;
            border-bottom: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
        }
        .nav-bar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 15px 0;
            gap: 12px;
        }
        .logo-area {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            flex-shrink: 0;
        }
        .logo-icon {
            width: 40px;
            height: 40px;
            background: var(--accent);
            border-radius: 11px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 800;
            font-size: 1.2rem;
            letter-spacing: -0.5px;
            box-shadow: 0 4px 14px rgba(26, 107, 76, 0.28);
        }
        .logo-text {
            font-weight: 780;
            font-size: 1.3rem;
            color: var(--text);
            letter-spacing: -0.35px;
        }
        .logo-text span {
            color: var(--accent);
        }
        .nav-links {
            display: flex;
            gap: 8px;
            align-items: center;
            flex-wrap: wrap;
            font-size: 0.91rem;
        }
        .nav-links a {
            text-decoration: none;
            font-weight: 530;
            color: var(--text-secondary);
            transition: var(--transition);
            padding: 7px 15px;
            border-radius: var(--radius-full);
            white-space: nowrap;
            position: relative;
        }
        .nav-links a:hover,
        .nav-links a.active {
            color: var(--accent);
            background: var(--accent-light);
        }
        .btn-download-nav {
            background: var(--accent) !important;
            color: #fff !important;
            padding: 9px 21px !important;
            border-radius: var(--radius-full) !important;
            font-weight: 600 !important;
            box-shadow: 0 3px 12px rgba(26, 107, 76, 0.24);
            transition: var(--transition) !important;
        }
        .btn-download-nav:hover {
            background: var(--accent-dark) !important;
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(26, 107, 76, 0.32);
        }

        /* ── 教程页头 ────────────────── */
        .guide-hero {
            text-align: center;
            padding: 50px 0 30px;
        }
        .guide-hero h1 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 850;
            letter-spacing: -0.5px;
            margin-bottom: 14px;
        }
        .guide-hero h1 .accent {
            color: var(--accent);
            position: relative;
            display: inline-block;
        }
        .guide-hero h1 .accent::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 0;
            width: 100%;
            height: 7px;
            background: rgba(26, 107, 76, 0.16);
            border-radius: 3px;
            z-index: -1;
        }
        .guide-hero .sub {
            font-size: 1.07rem;
            color: var(--text-secondary);
            max-width: 640px;
            margin: 0 auto 24px;
            line-height: 1.6;
        }

        /* ── 流程步骤 ─────────────── */
        .steps-flow {
            display: flex;
            flex-wrap: wrap;
            gap: 0;
            justify-content: center;
            align-items: flex-start;
            margin: 30px 0 48px;
            position: relative;
        }
        .step-card {
            background: var(--surface);
            border-radius: var(--radius-md);
            padding: 32px 20px 26px;
            text-align: center;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
            flex: 1 1 200px;
            max-width: 260px;
            position: relative;
            transition: var(--transition);
            margin: 0 6px 20px;
        }
        .step-card:hover {
            border-color: var(--accent);
            box-shadow: var(--shadow-md);
            transform: translateY(-4px);
        }
        .step-num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            background: var(--accent);
            color: #fff;
            border-radius: 50%;
            font-weight: 800;
            font-size: 1.3rem;
            margin-bottom: 16px;
            box-shadow: 0 6px 18px rgba(26, 107, 76, 0.28);
        }
        .step-card h3 {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text);
        }
        .step-card p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.55;
        }

        /* ── 概念卡片 ─────────────── */
        .concept-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 22px;
            margin: 32px 0 44px;
        }
        .concept-item {
            background: var(--surface);
            border-radius: var(--radius-md);
            padding: 30px 22px;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .concept-item:hover {
            border-color: var(--accent);
            box-shadow: var(--shadow-lg);
        }
        .concept-icon {
            font-size: 2.3rem;
            line-height: 1;
        }
        .concept-item h4 {
            font-size: 1.22rem;
            font-weight: 700;
            color: var(--text);
            letter-spacing: -0.15px;
        }
        .concept-item p {
            font-size: 0.91rem;
            color: var(--text-secondary);
            line-height: 1.6;
            flex: 1;
        }

        /* ── 使用路径大卡片 ────────── */
        .path-card {
            background: var(--surface);
            border-radius: var(--radius-lg);
            padding: 36px 30px;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-md);
            display: flex;
            align-items: center;
            gap: 24px;
            flex-wrap: wrap;
            margin: 36px 0;
            position: relative;
            overflow: hidden;
        }
        .path-card::before {
            content: '';
            position: absolute;
            top: -30px;
            right: -30px;
            width: 120px;
            height: 120px;
            background: radial-gradient(circle, rgba(26, 107, 76, 0.06) 0%, transparent 70%);
            border-radius: 50%;
        }
        .path-left {
            flex: 1;
            min-width: 220px;
        }
        .path-left h2 {
            font-size: 1.4rem;
            font-weight: 750;
            margin-bottom: 12px;
            letter-spacing: -0.3px;
        }
        .path-left p {
            color: var(--text-secondary);
            font-size: 0.93rem;
            line-height: 1.6;
            margin-bottom: 10px;
        }
        .path-arrow {
            font-size: 2.5rem;
            color: var(--accent);
            font-weight: 300;
            display: none;
        }
        @media (min-width: 600px) {
            .path-arrow {
                display: block;
            }
        }

        /* ── 误区列表 ─────────────── */
        .myth-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
            max-width: 860px;
            margin: 30px auto 40px;
        }
        .myth-item {
            background: var(--surface);
            border-radius: var(--radius-md);
            border: 1px solid var(--border-light);
            padding: 20px 24px;
            box-shadow: var(--shadow-sm);
            display: flex;
            align-items: flex-start;
            gap: 16px;
            transition: var(--transition);
        }
        .myth-item:hover {
            border-color: var(--accent);
            box-shadow: var(--shadow-md);
        }
        .myth-icon {
            font-size: 1.8rem;
            flex-shrink: 0;
            width: 44px;
            height: 44px;
            background: var(--teal-light);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
        }
        .myth-content h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 6px;
        }
        .myth-content p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.55;
        }

        /* ── 提示框 ─────────────── */
        .insight-box {
            background: var(--teal-light);
            border-radius: 16px;
            padding: 20px 26px;
            margin: 28px 0;
            border-left: 4px solid var(--teal);
            color: #1a3d2a;
            font-size: 0.94rem;
            line-height: 1.6;
        }
		.btn-outline-guide {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 40px;
    padding: 12px 28px;
    text-decoration: none;
    color: var(--text);
    font-weight: 520;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.btn-outline-guide:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-light);
}
.btn-primary-guide {
    background: var(--accent);
    color: #fff;
    border-radius: 40px;
    padding: 12px 32px;
    text-decoration: none;
    font-weight: 620;
    box-shadow: 0 6px 16px rgba(26,107,76,0.22);
    transition: var(--transition);
}
.btn-primary-guide:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(26,107,76,0.30);
}

        /* ── FOOTER ────────────────── */
        .footer {
            background: #172418;
            color: #b8c9bb;
            padding: 40px 0 22px;
            border-radius: var(--radius-lg) var(--radius-lg) 0 0;
            margin-top: 40px;
        }
        .footer-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
        }
        .footer-col h4 {
            color: #fff;
            margin-bottom: 11px;
            font-size: 0.93rem;
            letter-spacing: -0.12px;
        }
        .footer-col a {
            color: #b8c9bb;
            text-decoration: none;
            display: block;
            margin-bottom: 6px;
            font-size: 0.85rem;
            transition: var(--transition);
        }
        .footer-col a:hover {
            color: #fff;
            text-decoration: underline;
            text-underline-offset: 3px;
        }
        .footer-copyright {
            text-align: center;
            padding-top: 28px;
            font-size: 0.8rem;
            border-top: 1px solid #2d402f;
            margin-top: 22px;
            color: #8a9a8c;
        }
        .footer-disclaimer {
            text-align: center;
            font-size: 0.74rem;
            color: #6d7e6f;
            margin-top: 10px;
            line-height: 1.5;
        }

        @media (max-width: 900px) {
            .nav-bar {
                flex-direction: column;
                align-items: stretch;
            }
            .nav-links {
                gap: 5px;
                font-size: 0.82rem;
            }
            .path-card {
                flex-direction: column;
                text-align: center;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
        }