/* 基础变量与重置 */
        :root {
            --primary: #0060df;
            --primary-light: #66a3e4;
            --secondary: #ff9400;
            --accent-gradient: linear-gradient(135deg, #66a3e4 0%, #0060df 100%);
            --text-dark: #1d1d1f;
            --text-gray: #515154;
            --bg-light: #fcfcfd;
            --bg-soft: #f5f7fa;
            --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.02);
            --shadow-md: 0 12px 36px rgba(0, 0, 0, 0.04);
            --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.06);
            --radius: 8px;
            --transition: all 0.35s ease;
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans CJK SC", sans-serif;
            background-color: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }

        /* 隐藏的 SEO H1 */
        .seo-crown {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
        }

        /* 复用首页导航栏样式 */
        .brow {
            background-color: rgba(252, 252, 253, 0.8);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 100;
            width: 100%;
        }

        .brow-grove {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            height: 72px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

        .crest {
            display: flex;
            align-items: center;
            min-width: 0;
        }

        .crest img {
            height: 40px;
            width: auto;
            display: block;
        }

        .orbit {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 8px;
            min-width: 0;
        }

        .path {
            color: var(--text-gray);
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: var(--radius);
            transition: var(--transition);
            word-break: keep-all;
        }

        .path:hover {
            color: var(--primary);
            background-color: var(--bg-soft);
        }

        .path.active,
        .path.active {
            color: var(--primary);
            background-color: rgba(0, 96, 223, 0.08);
            font-weight: 600;
        }

        /* 主容器 */
        .fur {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 24px 80px;
        }

        /* 第一区段 (addons_hero) - 角色: intro */
        .blaze {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 48px;
            padding: 60px 0;
            align-items: center;
        }

        .grove {
            min-width: 0;
        }

        .crown-primary {
            font-size: 42px;
            line-height: 1.25;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 20px;
            word-break: keep-all;
            white-space: normal;
        }

        .crown-primary span {
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .whisper-lead {
            font-size: 18px;
            color: var(--text-gray);
            margin-bottom: 32px;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        /* 推荐扩展计划介绍与安全审查 */
        .clutch-info {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            margin-bottom: 40px;
        }

        .ember-info {
            flex: 1;
            min-width: 240px;
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: var(--radius);
            padding: 24px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        .ember-info:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-4px);
        }

        .glint-box {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(0, 96, 223, 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            color: var(--primary);
        }

        .crown-sub {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 12px;
        }

        .whisper-sub {
            font-size: 14px;
            color: var(--text-gray);
            line-height: 1.6;
        }

        /* 右侧 Data UI 视觉承载 */
        .flare-visual {
            background: var(--bg-soft);
            border-radius: 12px;
            padding: 40px;
            border: 1px solid rgba(0, 0, 0, 0.03);
            box-shadow: var(--shadow-sm);
            display: flex;
            flex-direction: column;
            gap: 20px;
            position: relative;
            overflow: hidden;
            min-width: 0;
        }

        .flare-visual::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(102, 163, 228, 0.15) 0%, transparent 70%);
            pointer-events: none;
        }

        .visual-beam {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: var(--radius);
            padding: 16px 20px;
            display: flex;
            align-items: center;
            gap: 16px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        .visual-beam:hover {
            transform: translateX(6px);
            border-color: var(--primary-light);
        }

        .visual-status {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #10b981;
            box-shadow: 0 0 8px #10b981;
        }

        .visual-status.warning {
            background: var(--secondary);
            box-shadow: 0 0 8px var(--secondary);
        }

        .visual-whisper {
            flex: 1;
            min-width: 0;
        }

        .visual-crown {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-dark);
        }

        .visual-desc {
            font-size: 12px;
            color: var(--text-gray);
        }

        /* 第二区段 (category_grid) - 角色: acquire */
        .pounce {
            padding: 80px 0;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
        }

        .pounce-brow {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 50px;
        }

        .crown-grove {
            font-size: 32px;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 16px;
        }

        .whisper-grove {
            font-size: 16px;
            color: var(--text-gray);
        }

        .clutch-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
        }

        .ember-ember {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: var(--radius);
            padding: 32px 24px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .ember-ember:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-6px);
            border-color: rgba(0, 96, 223, 0.15);
        }

        .ember-ember .glint-box {
            background: rgba(102, 163, 228, 0.1);
            color: var(--primary-light);
            margin-bottom: 24px;
            transition: var(--transition);
        }

        .ember-ember:hover .glint-box {
            background: var(--primary);
            color: #ffffff;
            transform: scale(1.05);
        }

        .ember-ember .crown-sub {
            font-size: 20px;
            margin-bottom: 14px;
        }

        .ember-ember .whisper-sub {
            font-size: 14px;
            color: var(--text-gray);
            line-height: 1.6;
            margin-bottom: 24px;
            flex-grow: 1;
        }

        .spark {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 20px;
            border-radius: var(--radius);
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            width: 100%;
            text-align: center;
            border: 1px solid transparent;
        }

        .spark-primary {
            background-color: var(--primary);
            color: #ffffff;
            box-shadow: 0 4px 12px rgba(0, 96, 223, 0.15);
        }

        .spark-primary:hover {
            background-color: #004bb0;
            box-shadow: 0 6px 18px rgba(0, 96, 223, 0.25);
        }

        .spark-secondary {
            background-color: transparent;
            border-color: #e2e8f0;
            color: var(--text-dark);
        }

        .spark-secondary:hover {
            background-color: var(--bg-soft);
            border-color: rgba(0, 96, 223, 0.2);
            color: var(--primary);
        }

        /* 第三区段 (developer_entrance) - 角色: pathway */
        .flare-dev {
            background: linear-gradient(135deg, #1d1d1f 0%, #0c0c0e 100%);
            border-radius: 12px;
            padding: 60px 48px;
            color: #ffffff;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            margin-top: 40px;
        }

        .flare-dev::before {
            content: '';
            position: absolute;
            bottom: -50%;
            left: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(0, 96, 223, 0.15) 0%, transparent 75%);
            pointer-events: none;
        }

        .canopy-dev {
            position: relative;
            z-index: 2;
            max-width: 680px;
        }

        .crown-dev {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 16px;
            color: #ffffff;
        }

        .whisper-dev {
            font-size: 16px;
            color: #a1a1a6;
            margin-bottom: 32px;
        }

        .clutch-dev-links {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        .ignite {
            display: inline-flex;
            align-items: center;
            padding: 14px 28px;
            border-radius: var(--radius);
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
        }

        .ignite-primary {
            background: var(--accent-gradient);
            color: #ffffff;
            box-shadow: 0 4px 14px rgba(102, 163, 228, 0.3);
        }

        .ignite-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(102, 163, 228, 0.4);
        }

        .ignite-secondary {
            background: rgba(255, 255, 255, 0.08);
            color: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .ignite-secondary:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.3);
        }

        /* 页脚区域 */
        .sole {
            background-color: var(--bg-soft);
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            padding: 60px 24px;
            margin-top: 80px;
        }

        .hearth {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 24px;
        }

        .hearth-brand {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-dark);
        }

        .hearth-brand span {
            color: var(--secondary);
        }

        .hearth-pack {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
        }

        .hearth-path {
            color: var(--text-gray);
            text-decoration: none;
            font-size: 14px;
            transition: var(--transition);
        }

        .hearth-path:hover {
            color: var(--primary);
        }

        .hearth-whisper {
            width: 100%;
            text-align: center;
            margin-top: 40px;
            font-size: 13px;
            color: #86868b;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            padding-top: 24px;
        }

        /* 响应式媒体查询 */
        @media (max-width: 1024px) {
            .blaze {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .flare-visual {
                max-width: 600px;
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            .brow-grove {
                height: auto;
                padding: 16px 20px;
                flex-direction: column;
                gap: 16px;
            }
            .orbit {
                justify-content: center;
                width: 100%;
            }
            .blaze {
                padding: 30px 0;
            }
            .crown-primary {
                font-size: 32px;
            }
            .flare-dev {
                padding: 40px 24px;
            }
            .crown-dev {
                font-size: 26px;
            }
            .hearth {
                flex-direction: column;
                text-align: center;
            }
            .hearth-pack {
                justify-content: center;
            }
        }

.trail-brow {
    font-family: var(--font);
    line-height: 1.7;
    word-break: break-word;
    color: var(--text-dark);
}
.trail-brow,
.trail-brow *,
.trail-brow *::before,
.trail-brow *::after {
    box-sizing: border-box;
}

.trail-brow nav,
.trail-brow div,
.trail-brow section,
.trail-brow article,
.trail-brow aside,
.trail-brow p,
.trail-brow h1,
.trail-brow h2,
.trail-brow h3,
.trail-brow h4,
.trail-brow h5,
.trail-brow h6,
.trail-brow a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.trail-brow p,
.trail-brow h1,
.trail-brow h2,
.trail-brow h3,
.trail-brow h4,
.trail-brow h5,
.trail-brow h6 {
    text-decoration: none;
}

.trail-brow img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.trail-brow {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.trail-brow a.trail-path.trail-active,
.trail-brow a.trail-path {
    --aisite-shell-nav-padding: 6px 0;
    --aisite-shell-nav-margin: 0;
    --aisite-shell-nav-line-height: normal;
    --aisite-shell-nav-display: inline;
    --aisite-shell-nav-height: auto;
    --aisite-shell-nav-min-height: auto;
}

.trail-brow a.trail-path.trail-active,
.trail-brow a.trail-path.trail-active:hover,
.trail-brow a.trail-path.trail-active:focus,
.trail-brow a.trail-path.trail-active:active,
.trail-brow a.trail-path.trail-active.active,
.trail-brow a.trail-path.trail-active[aria-current="page"],
.trail-brow a.trail-path,
.trail-brow a.trail-path:hover,
.trail-brow a.trail-path:focus,
.trail-brow a.trail-path:active,
.trail-brow a.trail-path.active,
.trail-brow a.trail-path[aria-current="page"] {
    background: transparent;
    border: none;
    border-bottom: none;
    box-shadow: none;
    outline: none;
    text-decoration: none;
    padding: var(--aisite-shell-nav-padding, 0);
    margin: var(--aisite-shell-nav-margin, 0);
    line-height: var(--aisite-shell-nav-line-height, normal);
    display: var(--aisite-shell-nav-display, inline);
    height: var(--aisite-shell-nav-height, auto);
    min-height: var(--aisite-shell-nav-min-height, auto);
}

.trail-brow{
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(252, 252, 253, 0.9);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(226, 232, 240, 0.8);
            padding: 16px 0;
            transition: background 0.35s ease;
        }

.trail-brow .trail-brow-grove{
            max-width: 1160px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

.trail-brow .trail-crest{
            display: flex;
            align-items: center;
            min-width: 0;
        }

.trail-brow .trail-crest img{
            height: 36px;
            width: auto;
            display: block;
        }

.trail-brow .trail-orbit{
            display: flex;
            flex-wrap: wrap;
            gap: 28px;
            align-items: center;
        }

.trail-brow .trail-path{
            font-size: 14px;
            font-weight: 500;
            color: #515154;
            text-decoration: none;
            transition: color 0.35s ease;
            position: relative;
            padding: 6px 0;
        }

.trail-brow .trail-path:hover, .trail-brow .trail-path.trail-active{
            color: #0060df;
        }

.trail-brow .trail-path.trail-active::after{
            content: "";
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 0;
            height: 2px;
            background: #0060df;
            border-radius: 2px;
        }

@media (max-width: 768px){.trail-brow .trail-brow-grove{
                flex-direction: column;
                gap: 16px;
            }

.trail-brow .trail-orbit{
                justify-content: center;
                gap: 16px;
            }}

.trail-brow {
    background: rgb(252, 252, 253);
    background-image: none;
}

.tail-sole {
    font-family: var(--font);
    line-height: 1.7;
    word-break: break-word;
    color: var(--text-dark);
}
.tail-sole,
.tail-sole *,
.tail-sole *::before,
.tail-sole *::after {
    box-sizing: border-box;
}

.tail-sole nav,
.tail-sole div,
.tail-sole section,
.tail-sole article,
.tail-sole aside,
.tail-sole p,
.tail-sole h1,
.tail-sole h2,
.tail-sole h3,
.tail-sole h4,
.tail-sole h5,
.tail-sole h6,
.tail-sole a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.tail-sole p,
.tail-sole h1,
.tail-sole h2,
.tail-sole h3,
.tail-sole h4,
.tail-sole h5,
.tail-sole h6 {
    text-decoration: none;
}

.tail-sole img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.tail-sole {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.tail-sole a,
.tail-sole a:hover,
.tail-sole a:focus,
.tail-sole a:active {
    background: transparent;
    box-shadow: none;
    outline: none;
    text-decoration: none;
}

.tail-sole{
            background-color: #f5f7fa;
            border-top: 1px solid #e2e8f0;
            padding: 60px 0 40px;
        }

.tail-sole .tail-sole-grove{
            max-width: 1160px;
            margin: 0 auto;
            padding: 0 24px;
        }

.tail-sole .tail-sole-top{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #e2e8f0;
            padding-bottom: 30px;
            margin-bottom: 30px;
        }

.tail-sole .tail-sole-brand{
            font-size: 24px;
            font-weight: 800;
            color: #1d1d1f;
            letter-spacing: -0.5px;
        }

.tail-sole .tail-sole-beam{
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
        }

.tail-sole .tail-sole-path{
            font-size: 13.5px;
            color: #515154;
            text-decoration: none;
            transition: color 0.35s ease;
        }

.tail-sole .tail-sole-path:hover{
            color: #0060df;
        }

.tail-sole .tail-sole-bottom{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
        }

.tail-sole .tail-sole-whisper{
            font-size: 13px;
            color: #515154;
        }

@media (max-width: 768px){.tail-sole .tail-sole-top{
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

.tail-sole .tail-sole-beam{
                justify-content: center;
            }

.tail-sole .tail-sole-bottom{
                flex-direction: column;
                text-align: center;
            }}