:root {
            --primary: #da8069;
            --accent: #f4e8e4;
            --deep: #2d2d2d;
            --mute: #666666;
            --smoke: #f9f9f9;
            --radius: 10px;
            --shadow: 0 12px 40px rgba(0,0,0,0.08);
            --transition: 0.15s ease;
        }

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

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

        /* Navigation - Cipher/Loom */
        .cipher {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

        .vault-ribbon {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
            flex-wrap: wrap;
        }

        .sigil {
            height: 32px;
            min-width: 0;
        }
        .sigil img {
            height: 100%;
            display: block;
        }

        .loom {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            min-width: 0;
        }

        .nexus {
            text-decoration: none;
            color: var(--deep);
            font-size: 15px;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
        }

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

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

        /* Main Container */
        .vault {
            max-width: 100%;
            margin: 0 auto;
        }

        /* Hero - Zenith (Mosaic Collage) */
        .zenith {
            padding: 80px 40px;
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            min-height: 80vh;
        }

        .canopy {
            min-width: 0;
        }

        .pith-mega {
            font-size: clamp(2.5rem, 5vw, 4rem);
            line-height: 1.1;
            margin-bottom: 24px;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: var(--deep);
        }

        .verse-lead {
            font-size: 1.25rem;
            color: var(--mute);
            margin-bottom: 40px;
            max-width: 500px;
            word-break: break-word;
        }

        .flare-primary {
            display: inline-flex;
            align-items: center;
            padding: 18px 42px;
            background: var(--primary);
            color: #fff;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: transform 0.2s, box-shadow 0.2s;
            box-shadow: 0 10px 20px rgba(218, 128, 105, 0.3);
        }

        .flare-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(218, 128, 105, 0.4);
        }

        .vivid-mosaic {
            display: grid;
            grid-template-areas: 
                "a a b"
                "a a c"
                "d e e";
            gap: 15px;
            height: 600px;
            min-width: 0;
        }

        .prism-cover {
            grid-area: a;
            border-radius: var(--radius);
            overflow: hidden;
            background: var(--smoke);
        }
        .prism-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .prism-sub {
            background: var(--accent);
            border-radius: var(--radius);
        }
        .prism-sub:nth-child(2) { grid-area: b; }
        .prism-sub:nth-child(3) { grid-area: c; }
        .prism-sub:nth-child(4) { grid-area: d; background: var(--primary); opacity: 0.1; }
        .prism-sub:nth-child(5) { grid-area: e; background: var(--deep); opacity: 0.05; }

        /* Capability - Ecosystem Grid */
        .mantle-ecosystem {
            padding: 120px 40px;
            background: #fff;
        }

        .cradle-wide {
            max-width: 1300px;
            margin: 0 auto;
        }

        .pith-cradle {
            font-size: 2.5rem;
            margin-bottom: 60px;
            text-align: center;
            font-weight: 700;
        }

        .clump-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }

        .facet-box {
            flex: 1;
            min-width: 300px;
            padding: 50px;
            background: var(--smoke);
            border-radius: 0px; /* Hard corner as requested */
            border-left: 4px solid var(--primary);
            transition: var(--transition);
        }

        .facet-box:hover {
            background: #fff;
            box-shadow: var(--shadow);
            transform: translateY(-5px);
        }

        .glyph-square {
            width: 60px;
            height: 60px;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        }

        .shard-pith {
            font-size: 1.5rem;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .slab-verse {
            color: var(--mute);
            font-size: 1rem;
            margin-bottom: 25px;
        }

        .nexus-prod {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        /* Editorial Channel - Detail */
        .mantle-editorial {
            background: #f4f4f4;
            padding: 140px 40px;
        }

        .cradle-magazine {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 80px;
            align-items: flex-start;
        }

        .veil-prism {
            flex: 1;
            min-width: 350px;
            position: relative;
        }

        .prism-editorial {
            width: 100%;
            height: auto;
            border-radius: 4px;
            box-shadow: 20px 20px 0 var(--accent);
        }

        .veil-verse {
            flex: 1;
            min-width: 350px;
        }

        .grain-pip {
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 12px;
            color: var(--primary);
            margin-bottom: 20px;
            font-weight: 700;
        }

        .pith-editorial {
            font-size: 2.2rem;
            line-height: 1.3;
            margin-bottom: 30px;
        }

        .verse-editorial {
            font-size: 1.1rem;
            color: var(--mute);
            margin-bottom: 35px;
        }

        /* Brand Values - Story */
        .mantle-story {
            padding: 120px 40px;
            background: #fff;
            text-align: center;
        }

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

        .grain-value {
            flex: 1;
            min-width: 260px;
            max-width: 350px;
        }

        .glyph-circle {
            width: 100px;
            height: 100px;
            margin: 0 auto 30px;
            background: linear-gradient(135deg, var(--accent), #fff);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(218, 128, 105, 0.2);
        }

        .pith-value {
            font-size: 1.4rem;
            margin-bottom: 15px;
        }

        /* Footer - Wake/Abyss */
        .wake {
            background: var(--deep);
            color: rgba(255,255,255,0.7);
            padding: 100px 40px 40px;
        }

        .vault-root {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 50px;
        }

        .abyss-brand {
            flex: 1;
            min-width: 250px;
        }

        .pith-brand {
            color: #fff;
            font-size: 1.5rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .verse-brand {
            font-size: 0.95rem;
            max-width: 300px;
        }

        .abyss-links {
            flex: 2;
            display: flex;
            flex-wrap: wrap;
            gap: 60px;
            min-width: 0;
        }

        .grain-clump {
            min-width: 120px;
        }

        .pith-clump {
            color: #fff;
            font-size: 1rem;
            margin-bottom: 25px;
            font-weight: 600;
        }

        .nexus-foot {
            display: block;
            color: rgba(255,255,255,0.5);
            text-decoration: none;
            margin-bottom: 12px;
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .nexus-foot:hover {
            color: var(--primary);
        }

        .root-bottom {
            margin-top: 80px;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            font-size: 0.85rem;
        }

        /* Mobile Responsive */
        @media (max-width: 1024px) {
            .zenith {
                grid-template-columns: 1fr;
                padding-top: 40px;
            }
            .vivid-mosaic {
                height: 400px;
            }
        }

        @media (max-width: 768px) {
            .vault-ribbon {
                height: auto;
                padding: 20px;
                justify-content: center;
                gap: 20px;
            }
            .loom {
                justify-content: center;
                gap: 15px;
            }
            .pith-mega {
                font-size: 2.2rem;
            }
            .facet-box {
                padding: 30px;
            }
            .cradle-magazine {
                gap: 40px;
            }
            .prism-editorial {
                box-shadow: 10px 10px 0 var(--accent);
            }
        }

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

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

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

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

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

.cipher-cipher a.cipher-nexus {
    --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;
}

.cipher-cipher a.cipher-nexus,
.cipher-cipher a.cipher-nexus:hover,
.cipher-cipher a.cipher-nexus:focus,
.cipher-cipher a.cipher-nexus:active,
.cipher-cipher a.cipher-nexus.active,
.cipher-cipher a.cipher-nexus[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);
}

.cipher-cipher{
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }

.cipher-cipher .cipher-vault-ribbon{
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
            flex-wrap: wrap;
        }

.cipher-cipher .cipher-sigil{
            height: 32px;
            min-width: 0;
        }

.cipher-cipher .cipher-sigil img{
            height: 100%;
            display: block;
        }

.cipher-cipher .cipher-loom{
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            min-width: 0;
        }

.cipher-cipher .cipher-nexus{
            text-decoration: none;
            color: #2d2d2d;
            font-size: 15px;
            font-weight: 500;
            transition: 0.15s ease;
            position: relative;
        }

.cipher-cipher .cipher-nexus:hover, .cipher-cipher .cipher-nexus.active{
            color: #da8069;
        }

.cipher-cipher .cipher-nexus.active::after{
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #da8069;
        }

@media (max-width: 768px){.cipher-cipher .cipher-vault-ribbon{
                height: auto;
                padding: 20px;
                justify-content: center;
                gap: 20px;
            }

.cipher-cipher .cipher-loom{
                justify-content: center;
                gap: 15px;
            }}

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

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

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

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

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

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

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

.trace-wake{
            background: #2d2d2d;
            color: rgba(255,255,255,0.7);
            padding: 100px 40px 40px;
        }

.trace-wake .trace-vault-root{
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 50px;
        }

.trace-wake .trace-abyss-brand{
            flex: 1;
            min-width: 250px;
        }

.trace-wake .trace-pith-brand{
            color: #fff;
            font-size: 1.5rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

.trace-wake .trace-verse-brand{
            font-size: 0.95rem;
            max-width: 300px;
        }

.trace-wake .trace-abyss-links{
            flex: 2;
            display: flex;
            flex-wrap: wrap;
            gap: 60px;
            min-width: 0;
        }

.trace-wake .trace-grain-clump{
            min-width: 120px;
        }

.trace-wake .trace-pith-clump{
            color: #fff;
            font-size: 1rem;
            margin-bottom: 25px;
            font-weight: 600;
        }

.trace-wake .trace-nexus-foot{
            display: block;
            color: rgba(255,255,255,0.5);
            text-decoration: none;
            margin-bottom: 12px;
            font-size: 0.9rem;
            transition: 0.15s ease;
        }

.trace-wake .trace-nexus-foot:hover{
            color: #da8069;
        }

.trace-wake .trace-root-bottom{
            margin-top: 80px;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            font-size: 0.85rem;
        }