:root {
            --primary: #df7ba9;
            --primary-soft: #f8e8f0;
            --dark: #1a1a1a;
            --rune-color: #4a4a4a;
            --bg: #ffffff;
            --slab-shadow: 0 10px 30px rgba(0,0,0,0.05);
            --vault-max: 1280px;
        }

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

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

        /* Layout Components */
        .vault {
            max-width: var(--vault-max);
            margin: 0 auto;
            padding: 0 40px;
            width: 100%;
        }

        /* Loft - Header Area */
        .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 {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }

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

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

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

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

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

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

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

        .prime-veil {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            align-items: center;
        }

        .prime-veil {
            min-width: 0;
        }

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

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

        .clan-urge {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        .urge-primary {
            background-color: var(--primary);
            color: white;
            padding: 16px 40px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            box-shadow: 0 4px 15px rgba(223, 123, 169, 0.3);
        }

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

        /* Mosaic Collage Grid */
        .mosaic-hull {
            display: grid;
            grid-template-areas: 
                "a a b"
                "a a c"
                "d e c";
            grid-template-columns: 1fr 1fr 1fr;
            grid-template-rows: 200px 100px 200px;
            gap: 15px;
        }

        .mosaic-leaf {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--slab-shadow);
            position: relative;
        }

        .mosaic-leaf.area-a { grid-area: a; }
        .mosaic-leaf.area-b { grid-area: b; }
        .mosaic-leaf.area-c { grid-area: c; }
        .mosaic-leaf.area-d { grid-area: d; }
        .mosaic-leaf.area-e { grid-area: e; }

        .mosaic-leaf img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .mosaic-leaf:hover img {
            transform: scale(1.05);
        }

        .mosaic-leaf.deco-svg {
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(45deg, var(--primary-soft), #fff);
        }

        /* Section Styling */
        .bound-bound {
            padding: 100px 0;
        }

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

        /* Capability - Multitask */
        .capability-veil {
            display: flex;
            flex-wrap: wrap;
            gap: 80px;
            align-items: center;
            margin-bottom: 120px;
        }

        .capability-lens {
            flex: 1;
            min-width: 300px;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        }

        .capability-lens img {
            width: 100%;
            display: block;
            border-radius: 20px;
        }

        .capability-rune {
            flex: 0.8;
            min-width: 300px;
        }

        .capability-rune h3 {
            font-size: 32px;
            margin-bottom: 24px;
            color: var(--dark);
        }

        /* Folio/Slab - Feature Matrix */
        .clan-folio {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .folio-slab {
            padding: 40px;
            border-radius: 12px;
            background: #fff;
            border: 1px solid #f0f0f0;
            transition: all 0.3s ease;
        }

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

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

        /* Proof - Brand Trust */
        .proof-hull {
            background: var(--dark);
            color: white;
            padding: 100px 0;
            text-align: center;
        }

        .clan-stats {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 80px;
            margin-top: 60px;
        }

        .stat-leaf h4 {
            font-size: 56px;
            color: var(--primary);
            margin-bottom: 10px;
            font-weight: 700;
        }

        .stat-leaf p {
            font-size: 18px;
            opacity: 0.8;
        }

        /* Pathway - Site Paths */
        .pathway-vault {
            background: #fdfdfd;
            padding: 100px 0;
        }

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

        .path-leaf {
            padding: 30px;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.03);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .path-leaf h5 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .path-leaf p {
            font-size: 15px;
            color: var(--rune-color);
            margin-bottom: 25px;
        }

        .etch-mark {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }

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

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

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

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

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

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

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

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

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

        /* Responsive */
        @media (max-width: 1024px) {
            .prime-veil { grid-template-columns: 1fr; }
            .mosaic-hull { margin-top: 40px; }
            .sole-veil { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 768px) {
            .apex-h1 { font-size: 40px; }
            .vault { padding: 0 20px; }
            .orbit { height: auto; padding: 20px 0; }
            .tier { gap: 15px; margin-top: 15px; width: 100%; justify-content: center; }
            .capability-veil { gap: 40px; }
            .clan-stats { gap: 40px; }
            .sole-veil { grid-template-columns: 1fr; gap: 30px; }
            .mosaic-hull { grid-template-rows: 150px 80px 150px; }
        }

.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; }}