:root {
            --primary: #df7ba9;
            --primary-soft: #f8e8f0;
            --rune-color: #4a4a4a;
            --bg: #ffffff;
            --slab-shadow: 0 10px 30px rgba(0,0,0,0.05);
            --radius: 12px;
            --bound-width: 1200px;
        }

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

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

        a {
            text-decoration: none;
            transition: all 0.25s ease;
        }

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

        .vault {
            max-width: var(--bound-width);
            margin: 0 auto;
            padding: 0 24px;
        }

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

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

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

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

        .mark {
            font-size: 16px;
            font-weight: 500;
            color: #4a4a4a;
            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);
        }

        /* 主内容区域 */
        .hull {
            padding-top: 72px;
        }

        /* Hero / Intro Section */
        .mural-prime {
            padding: 140px 0 80px;
            background: linear-gradient(135deg, #fff 0%, #fdf5f8 100%);
            overflow: hidden;
        }

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

        .prime-rune-clan {
            flex: 1;
            min-width: 320px;
        }

        .apex-h1 {
            font-size: 56px;
            line-height: 1.2;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 24px;
            word-break: break-word;
        }

        .rune-intro {
            font-size: 20px;
            color: var(--rune-color);
            margin-bottom: 40px;
            max-width: 540px;
        }

        .urge-primary {
            display: inline-block;
            background-color: var(--primary);
            color: white;
            padding: 16px 40px;
            border-radius: 8px;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(223, 123, 169, 0.3);
            cursor: pointer;
        }

        .urge-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(223, 123, 169, 0.4);
        }

        .prime-lens-veil {
            flex: 1;
            min-width: 320px;
            position: relative;
        }

        .lens-showcase {
            width: 100%;
            border-radius: var(--radius);
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
            transition: transform 0.5s ease;
        }

        /* Capability Section */
        .slab-capability {
            padding: 100px 0;
            background: #ffffff;
        }

        .apex-h2 {
            font-size: 36px;
            text-align: center;
            margin-bottom: 16px;
            font-weight: 700;
        }

        .rune-sub {
            text-align: center;
            color: #666;
            margin-bottom: 60px;
            font-size: 18px;
        }

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

        .leaf-folio {
            padding: 40px;
            border-radius: 12px;
            background: #fff;
            border: 1px solid #f0f0f0;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .leaf-folio:hover {
            transform: translateY(-10px);
            box-shadow: var(--slab-shadow);
            border-color: var(--primary-soft);
        }

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

        .apex-h3 {
            font-size: 22px;
            margin-bottom: 16px;
            color: #1a1a1a;
        }

        .rune-detail {
            font-size: 15px;
            color: #666;
            line-height: 1.6;
        }

        /* Integration Section */
        .closing-bound {
            padding: 100px 0;
            background-color: #fcfcfc;
            border-top: 1px solid #f0f0f0;
        }

        .hull-integration {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .band-accent {
            display: inline-block;
            padding: 6px 16px;
            background: var(--primary-soft);
            color: var(--primary);
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 24px;
        }

        .rune-closing {
            font-size: 22px;
            color: #333;
            margin-top: 24px;
            font-weight: 400;
        }

        /* Footer */
        .sole-trace {
            padding: 80px 0 40px;
            border-top: 1px solid #f0f0f0;
            background: #fff;
        }

        .trace-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .seal-apex {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 24px;
            color: #1a1a1a;
        }

        .seal-mark {
            display: block;
            color: #666;
            margin-bottom: 12px;
            font-size: 14px;
        }

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

        .trace-bottom {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid #f5f5f5;
            color: #999;
            font-size: 13px;
        }

        /* 响应式适配 */
        @media (max-width: 1024px) {
            .apex-h1 { font-size: 44px; }
            .bound-flex { gap: 40px; }
        }

        @media (max-width: 768px) {
            .orbit { height: auto; padding: 15px 0; }
            .tier { gap: 15px; width: 100%; margin-top: 15px; }
            .mark { font-size: 14px; }
            .mural-prime { padding: 80px 0 60px; text-align: center; }
            .bound-flex { flex-direction: column; }
            .prime-rune-clan { min-width: 100%; }
            .rune-intro { margin-left: auto; margin-right: auto; }
            .apex-h1 { font-size: 32px; }
            .folio-clan { grid-template-columns: 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; }}