/* CSS Variables - Visual Contract Inheritance */
        :root {
            --aura-primary: #df72aa;
            --aura-primary-hover: #c95a92;
            --aura-primary-light: rgba(223, 114, 170, 0.12);
            --aura-bg: #fcfcfd;
            --aura-surface: #ffffff;
            --aura-text-main: #1d1d1f;
            --aura-text-muted: #86868b;
            --aura-radius: 14px;
            --aura-radius-lg: 24px;
            --aura-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
            --aura-shadow-hover: 0 12px 32px rgba(0, 0, 0, 0.08);
            --aura-transition: all 0.25s ease;
            --aura-max-width: 1200px;
        }

        /* Global Reset & Base */
        *, *::before, *::after {
            box-sizing: border-box;
            min-width: 0; /* Flexbox constraint */
        }

        body {
            margin: 0;
            padding: 0;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            background-color: var(--aura-bg);
            color: var(--aura-text-main);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        /* Typography Text Wrap Constraints */
        h1, h2, h3, p, span, a {
            word-break: break-word;
            overflow-wrap: break-word;
            white-space: normal;
        }
        
        p {
            word-break: keep-all; /* Better for Chinese */
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--aura-transition);
        }

        /* =========================================
           Mandatory Navigation Styles 
           ========================================= */
        .apex {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(252, 252, 253, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            z-index: 100;
        }

        .radar {
            max-width: var(--aura-max-width);
            margin: 0 auto;
            padding: 0 2rem;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

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

        .sigil img {
            height: 28px;
            width: auto;
            display: block;
        }

        .path {
            display: flex;
            gap: 2rem;
            align-items: center;
            flex-wrap: wrap;
        }

        .wire {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--aura-text-main);
            opacity: 0.8;
        }

        .wire:hover {
            opacity: 1;
            color: var(--aura-primary);
        }

        .wire.active {
            opacity: 1;
            color: var(--aura-primary);
            position: relative;
        }

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

        /* =========================================
           Main Content Area
           ========================================= */
        main {
            padding-top: 70px; /* Offset for fixed header */
            display: flex;
            flex-direction: column;
        }

        /* Section 1: Hero / Intro (Semantic: section) 
           Creative Seed: fullbleed_overlay variant for inner page
        */
        .portal {
            width: 100%;
            min-height: 70vh;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            padding: 6rem 2rem 5rem;
            position: relative;
            overflow: hidden;
            background: 
                radial-gradient(circle at 80% 20%, var(--aura-primary-light), transparent 40%),
                radial-gradient(circle at 20% 80%, rgba(223, 114, 170, 0.05), transparent 40%),
                linear-gradient(180deg, var(--aura-bg) 0%, #f4f5f7 100%);
        }

        .tunnel {
            max-width: 900px;
            width: 100%;
            text-align: center;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .tunnel .crest {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            letter-spacing: -0.02em;
            line-height: 1.15;
            margin-bottom: 1.5rem;
            color: var(--aura-text-main);
        }

        .tunnel .cipher {
            font-size: clamp(1.1rem, 2vw, 1.25rem);
            color: var(--aura-text-muted);
            max-width: 700px;
            line-height: 1.6;
            margin-bottom: 4rem;
        }

        /* Stats Pool */
        .pool {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 3rem;
            width: 100%;
            background: var(--aura-surface);
            padding: 2.5rem;
            border-radius: var(--aura-radius-lg);
            box-shadow: var(--aura-shadow);
            border: 1px solid rgba(0, 0, 0, 0.04);
        }

        .pod {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            min-width: 120px;
            position: relative;
        }

        .pod:not(:last-child)::after {
            content: '';
            position: absolute;
            right: -1.5rem;
            top: 15%;
            height: 70%;
            width: 1px;
            background: rgba(0, 0, 0, 0.08);
        }

        .pod-crest {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--aura-primary);
            line-height: 1;
            margin-bottom: 0.5rem;
            font-family: ui-rounded, "Hiragino Maru Gothic ProN", sans-serif;
        }

        .pod-cipher {
            font-size: 0.95rem;
            color: var(--aura-text-muted);
            font-weight: 500;
        }

        /* Section 2: Regions Detail (Semantic: div) */
        .nexus {
            width: 100%;
            padding: 6rem 2rem;
            background-color: var(--aura-bg);
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .nexus > .crest {
            font-size: 2.25rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 1rem;
            color: var(--aura-text-main);
        }

        .nexus > .cipher {
            text-align: center;
            color: var(--aura-text-muted);
            font-size: 1.1rem;
            margin-bottom: 4rem;
            max-width: 600px;
        }

        .mesh {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            width: 100%;
            max-width: var(--aura-max-width);
        }

        .vault {
            background: var(--aura-surface);
            border-radius: var(--aura-radius-lg);
            padding: 3rem 2.5rem;
            box-shadow: var(--aura-shadow);
            border: 1px solid rgba(0, 0, 0, 0.04);
            transition: var(--aura-transition);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .vault:hover {
            transform: translateY(-5px);
            box-shadow: var(--aura-shadow-hover);
            border-color: rgba(223, 114, 170, 0.2);
        }

        .glyph {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: var(--aura-primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--aura-primary);
        }

        .vault .crest {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--aura-text-main);
        }

        .vault .cipher {
            font-size: 0.95rem;
            color: var(--aura-text-muted);
            line-height: 1.6;
        }

        .veil {
            margin-top: auto;
            padding-top: 1.5rem;
            width: 100%;
        }

        .step {
            display: flex;
            align-items: center;
            font-size: 0.9rem;
            color: var(--aura-text-main);
            margin-bottom: 0.5rem;
        }

        .step::before {
            content: '';
            display: inline-block;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background-color: var(--aura-primary);
            margin-right: 12px;
            opacity: 0.6;
        }

        /* Section 3: Smart Routing Closing (Semantic: div) */
        .cloak {
            width: 100%;
            padding: 6rem 2rem;
            background-color: var(--aura-surface);
            border-top: 1px solid rgba(0, 0, 0, 0.04);
            display: flex;
            justify-content: center;
        }

        .armor {
            max-width: 1000px;
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            gap: 4rem;
            align-items: center;
        }

        .armor-left, .armor-right {
            flex: 1 1 400px;
            min-width: 0;
            display: flex;
            flex-direction: column;
        }

        .armor-left .crest {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: var(--aura-text-main);
        }

        .armor-left .cipher {
            font-size: 1.1rem;
            color: var(--aura-primary);
            font-weight: 500;
        }

        .armor-right .cipher {
            font-size: 1.05rem;
            color: var(--aura-text-muted);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .armor-right .cipher:last-child {
            margin-bottom: 0;
        }

        /* Footer */
        .root {
            background-color: var(--aura-bg);
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            padding: 4rem 2rem 2rem;
            width: 100%;
            display: flex;
            justify-content: center;
        }

        .anchor {
            max-width: var(--aura-max-width);
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .anchor-top {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            width: 100%;
            margin-bottom: 3rem;
            gap: 2rem;
        }

        .brand-cipher {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--aura-text-main);
            letter-spacing: -0.02em;
        }

        .anchor-links {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .anchor .wire {
            color: var(--aura-text-muted);
            font-size: 0.95rem;
        }

        .anchor .wire:hover {
            color: var(--aura-primary);
        }

        .anchor-bottom {
            width: 100%;
            text-align: center;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            padding-top: 2rem;
        }

        .anchor-bottom .cipher {
            color: var(--aura-text-muted);
            font-size: 0.85rem;
        }

        /* Responsive Breakpoints */
        @media (max-width: 1024px) {
            .pod:not(:last-child)::after {
                display: none;
            }
            .pool {
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .radar {
                flex-direction: column;
                height: auto;
                padding: 1rem 2rem;
                gap: 1rem;
            }
            .path {
                gap: 1.5rem;
                justify-content: center;
            }
            .wire.active::after {
                bottom: -8px;
            }
            main {
                padding-top: 110px;
            }
            .portal {
                padding: 3rem 1.5rem;
            }
            .tunnel .crest {
                font-size: 2.2rem;
            }
            .armor {
                gap: 2rem;
            }
            .anchor-top {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .anchor-links {
                justify-content: center;
            }
        }

.route-apex {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.7;
    color: var(--aura-text-main);
}
.route-apex,
.route-apex *,
.route-apex *::before,
.route-apex *::after {
    box-sizing: border-box;
}

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

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

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

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

.route-apex a.route-wire {
    --aisite-shell-nav-padding: 0.5rem 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;
}

.route-apex a.route-wire,
.route-apex a.route-wire:hover,
.route-apex a.route-wire:focus,
.route-apex a.route-wire:active,
.route-apex a.route-wire.active,
.route-apex a.route-wire[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);
}

.route-apex{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: saturate(180%) blur(20px);
            -webkit-backdrop-filter: saturate(180%) blur(20px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        }

.route-apex .route-radar{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            max-width: 1280px;
            margin: 0 auto;
            padding: 1rem 2rem;
            min-width: 0;
        }

.route-apex .route-sigil{
            display: flex;
            align-items: center;
            min-width: 0;
        }

.route-apex .route-sigil img{
            height: 32px;
            width: auto;
            display: block;
        }

.route-apex .route-path{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
            min-width: 0;
        }

.route-apex .route-wire{
            font-size: 0.95rem;
            font-weight: 500;
            color: #1d1d1f;
            position: relative;
            padding: 0.5rem 0;
            min-width: 0;
        }

.route-apex .route-wire:hover{
            color: #df72aa;
        }

.route-apex .route-wire.active{
            color: #df72aa;
        }

.route-apex .route-wire.active::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #df72aa;
            border-radius: 2px;
        }

@media (max-width: 768px){.route-apex .route-radar{
                flex-direction: column;
                padding: 1rem;
                gap: 1rem;
            }

.route-apex .route-path{
                justify-content: center;
                gap: 1rem;
            }}

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

.crypt-root {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.7;
    color: var(--aura-text-main);
}
.crypt-root,
.crypt-root *,
.crypt-root *::before,
.crypt-root *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.crypt-root .crypt-path{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
            min-width: 0;
        }

.crypt-root .crypt-wire{
            font-size: 0.95rem;
            font-weight: 500;
            color: #1d1d1f;
            position: relative;
            padding: 0.5rem 0;
            min-width: 0;
        }

.crypt-root .crypt-wire:hover{
            color: #df72aa;
        }

.crypt-root .crypt-wire.active{
            color: #df72aa;
        }

.crypt-root .crypt-wire.active::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #df72aa;
            border-radius: 2px;
        }

.crypt-root{
            background-color: #ffffff;
            padding: 4rem 2rem;
            border-top: 1px solid rgba(0, 0, 0, 0.08);
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }

.crypt-root .crypt-crypt{
            max-width: 1280px;
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
            min-width: 0;
        }

.crypt-root .crypt-anchor{
            font-size: 1.25rem;
            font-weight: 700;
            color: #1d1d1f;
            letter-spacing: -0.02em;
        }

.crypt-root .crypt-cipher{
            font-size: 0.875rem;
            margin: 0;
        }

.crypt-root .crypt-path{
            gap: 1.5rem;
        }

.crypt-root .crypt-wire{
            font-size: 0.875rem;
            color: #86868b;
        }

@media (max-width: 768px){.crypt-root .crypt-path{
                justify-content: center;
                gap: 1rem;
            }

.crypt-root .crypt-crypt{
                flex-direction: column;
                text-align: center;
            }}