:root {
            --primary: #df7ba9;
            --primary-soft: #f8e8f0;
            --rune-color: #4a4a4a;
            --apex-color: #1a1a1a;
            --bg: #ffffff;
            --slab-shadow: 0 10px 30px rgba(0,0,0,0.05);
            --slab-hover: 0 20px 40px rgba(223, 123, 169, 0.12);
        }

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

        body {
            font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
            line-height: 1.8;
            color: var(--rune-color);
            background-color: var(--bg);
            word-break: keep-all;
            overflow-wrap: break-word;
        }

        /* 导航系统 - 复用首页风格 */
        .loft {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #f0f0f0;
        }

        .vault {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .orbit {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }

        .glyph {
            display: flex;
            align-items: center;
        }

        .glyph img {
            height: 32px;
            min-width: 0;
        }

        .tier {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
        }

        .mark {
            text-decoration: none;
            color: var(--rune-color);
            font-weight: 500;
            font-size: 15px;
            transition: color 0.25s ease;
            position: relative;
        }

        .mark:hover, .mark.active {
            color: var(--primary);
        }

        .mark.active::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--primary);
        }

        /* 主容器布局 */
        main {
            padding-top: 80px;
        }

        /* 首屏展示区 - Mural */
        .mural {
            padding: 100px 0 80px;
            background: linear-gradient(135deg, #fff 0%, #fef8fa 100%);
            overflow: hidden;
            position: relative;
        }

        .mural-hull {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 60px;
        }

        .mural-flux {
            flex: 1;
            min-width: 320px;
        }

        .apex-h1 {
            font-size: 52px;
            line-height: 1.2;
            font-weight: 700;
            color: var(--apex-color);
            margin-bottom: 24px;
        }

        .rune-large {
            font-size: 18px;
            color: #666;
            margin-bottom: 40px;
            max-width: 500px;
        }

        .mural-collage {
            flex: 1.2;
            min-width: 320px;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 20px;
            position: relative;
        }

        /* 模拟 Mosaic Collage 的几何图形 */
        .folio-mosaic {
            background: #fff;
            border-radius: 8px;
            padding: 15px;
            box-shadow: var(--slab-shadow);
            border: 1px solid #f0f0f0;
            transition: transform 0.25s ease;
        }

        .folio-mosaic:hover {
            transform: translateY(-5px);
        }

        .lens-mock {
            width: 100%;
            aspect-ratio: 16/10;
            background: linear-gradient(45deg, var(--primary-soft), #fff);
            border-radius: 4px;
            margin-bottom: 12px;
            position: relative;
            overflow: hidden;
        }

        .lens-mock::before {
            content: '';
            position: absolute;
            top: 20%;
            left: 10%;
            width: 60%;
            height: 4px;
            background: rgba(223, 123, 169, 0.2);
            border-radius: 2px;
        }

        /* 不仅仅是模板 - Prime Detail */
        .prime {
            padding: 100px 0;
            background: #fff;
        }

        .prime-apex {
            text-align: center;
            margin-bottom: 60px;
        }

        .apex-h2 {
            font-size: 36px;
            color: var(--apex-color);
            margin-bottom: 16px;
        }

        .clan-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }

        .folio-slab {
            flex: 1;
            min-width: 280px;
            max-width: 380px;
            padding: 40px;
            background: #fff;
            border-radius: 12px;
            border: 1px solid #f0f0f0;
            transition: all 0.25s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .folio-slab:hover {
            box-shadow: var(--slab-hover);
            border-color: var(--primary-soft);
        }

        .trek-penn {
            width: 64px;
            height: 64px;
            background: var(--primary-soft);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            color: var(--primary);
        }

        .apex-h3 {
            font-size: 22px;
            margin-bottom: 12px;
            color: var(--apex-color);
        }

        .urge-etch {
            display: inline-block;
            padding: 12px 28px;
            background: var(--bg);
            border: 1px solid var(--primary);
            color: var(--primary);
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            margin-top: auto;
            transition: all 0.25s ease;
        }

        .urge-etch:hover {
            background: var(--primary);
            color: #fff;
        }

        /* 灵感推荐 - Closing Article */
        .bound {
            padding: 100px 0;
            background: #fafafa;
        }

        .bound-veil {
            background: #fff;
            border-radius: 20px;
            padding: 60px;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            box-shadow: var(--slab-shadow);
        }

        .bound-flux {
            flex: 1;
            min-width: 300px;
        }

        .clan-labels {
            flex: 1.5;
            min-width: 300px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 16px;
        }

        .leaf-tag {
            padding: 16px;
            background: var(--primary-soft);
            color: var(--primary);
            border-radius: 8px;
            text-align: center;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
        }

        .leaf-tag:hover {
            background: var(--primary);
            color: #fff;
            transform: scale(1.05);
        }

        /* 页脚区域 */
        .sole {
            background: #1a1a1a;
            color: #fff;
            padding: 80px 0 40px;
        }

        .trace-hull {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            border-bottom: 1px solid #333;
            padding-bottom: 40px;
            margin-bottom: 40px;
        }

        .trace-clan {
            flex: 1;
            min-width: 200px;
        }

        .apex-sole {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 24px;
            color: #eee;
        }

        .mark-sole {
            display: block;
            color: #999;
            text-decoration: none;
            margin-bottom: 12px;
            font-size: 14px;
            transition: color 0.2s;
        }

        .mark-sole:hover {
            color: var(--primary);
        }

        .seal {
            text-align: center;
            color: #666;
            font-size: 14px;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .apex-h1 { font-size: 36px; }
            .tier { display: none; } /* 移动端简化 */
            .bound-veil { padding: 30px; }
            .mural-collage { grid-template-columns: repeat(2, 1fr); }
        }

.orbit-loft {
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.8;
    word-break: keep-all;
    color: var(--dark);
}
.orbit-loft,
.orbit-loft *,
.orbit-loft *::before,
.orbit-loft *::after {
    box-sizing: border-box;
}

.orbit-loft [role="navigation"],
.orbit-loft div,
.orbit-loft section,
.orbit-loft article,
.orbit-loft aside,
.orbit-loft p,
.orbit-loft h1,
.orbit-loft h2,
.orbit-loft h3,
.orbit-loft h4,
.orbit-loft h5,
.orbit-loft h6,
.orbit-loft a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

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

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

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

.orbit-loft a.orbit-mark {
    --aisite-shell-nav-padding: 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;
}

.orbit-loft a.orbit-mark,
.orbit-loft a.orbit-mark:hover,
.orbit-loft a.orbit-mark:focus,
.orbit-loft a.orbit-mark:active,
.orbit-loft a.orbit-mark.active,
.orbit-loft a.orbit-mark[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);
}

.orbit-loft .orbit-vault{
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 40px;
            width: 100%;
        }

.orbit-loft{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid #eee;
        }

.orbit-loft .orbit-orbit{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }

.orbit-loft .orbit-glyph{
            display: flex;
            align-items: center;
            min-width: 0;
        }

.orbit-loft .orbit-glyph img{
            height: 32px;
            width: auto;
        }

.orbit-loft .orbit-tier{
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            gap: 30px;
        }

.orbit-loft .orbit-mark{
            text-decoration: none;
            color: #1a1a1a;
            font-size: 16px;
            font-weight: 500;
            transition: color 0.25s ease;
            position: relative;
        }

.orbit-loft .orbit-mark:hover, .orbit-loft .orbit-mark.active{
            color: #df7ba9;
        }

.orbit-loft .orbit-mark.active::after{
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #df7ba9;
        }

@media (max-width: 768px){.orbit-loft .orbit-vault{ padding: 0 20px; }

.orbit-loft .orbit-orbit{ height: auto; padding: 20px 0; }

.orbit-loft .orbit-tier{ gap: 15px; margin-top: 15px; width: 100%; justify-content: center; }}

.orbit-loft {
    background: rgb(255, 255, 255);
    background-image: none;
}

.trace-sole {
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.8;
    word-break: keep-all;
    color: var(--dark);
}
.trace-sole,
.trace-sole *,
.trace-sole *::before,
.trace-sole *::after {
    box-sizing: border-box;
}

.trace-sole [role="navigation"],
.trace-sole div,
.trace-sole section,
.trace-sole article,
.trace-sole aside,
.trace-sole p,
.trace-sole h1,
.trace-sole h2,
.trace-sole h3,
.trace-sole h4,
.trace-sole h5,
.trace-sole h6,
.trace-sole a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

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

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

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

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

.trace-sole .trace-vault{
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 40px;
            width: 100%;
        }

.trace-sole{
            background: #f8f8f8;
            padding: 80px 0 40px;
            border-top: 1px solid #eee;
        }

.trace-sole .trace-sole-veil{
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
        }

.trace-sole .trace-seal-brand p{
            margin-top: 20px;
            max-width: 300px;
            color: #888;
        }

.trace-sole .trace-seal-clan h6{
            font-size: 18px;
            margin-bottom: 25px;
            font-weight: 600;
        }

.trace-sole .trace-seal-tier{
            list-style: none;
        }

.trace-sole .trace-seal-tier li{
            margin-bottom: 12px;
        }

.trace-sole .trace-seal-tier a{
            color: #666;
            text-decoration: none;
            transition: color 0.25s ease;
        }

.trace-sole .trace-seal-tier a:hover{
            color: #df7ba9;
        }

.trace-sole .trace-sole-band{
            border-top: 1px solid #eee;
            padding-top: 30px;
            text-align: center;
            color: #999;
            font-size: 14px;
        }

@media (max-width: 1024px){.trace-sole .trace-sole-veil{ grid-template-columns: 1fr 1fr; }}

@media (max-width: 768px){.trace-sole .trace-vault{ padding: 0 20px; }

.trace-sole .trace-sole-veil{ grid-template-columns: 1fr; gap: 30px; }}