/* 基础变量与重置 */
        :root {
            --aura-primary: #df72aa;
            --aura-primary-hover: #c95a92;
            --aura-primary-light: rgba(223, 114, 170, 0.1);
            --aura-primary-subtle: rgba(223, 114, 170, 0.05);
            --aura-bg: #fcfcfd;
            --aura-surface: #ffffff;
            --aura-surface-alt: #f8f9fa;
            --aura-text-main: #1d1d1f;
            --aura-text-muted: #86868b;
            --aura-border: rgba(0, 0, 0, 0.08);
            --aura-radius: 14px;
            --aura-radius-lg: 24px;
            --aura-radius-full: 999px;
            --aura-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
            --aura-shadow-hover: 0 12px 32px rgba(223, 114, 170, 0.15);
            --aura-transition: all 0.25s ease;
        }

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

        body {
            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;
            word-break: break-word;
            overflow-wrap: break-word;
        }

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

        /* 强制复用导航栏样式 */
        .apex {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(252, 252, 253, 0.85);
            backdrop-filter: saturate(180%) blur(20px);
            border-bottom: 1px solid var(--aura-border);
            padding: 1rem 0;
        }

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

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

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

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

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

        .wire.active {
            opacity: 1;
            color: var(--aura-primary);
            font-weight: 600;
        }

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

        /* 主体布局与容器 */
        .tunnel {
            display: flex;
            flex-direction: column;
            width: 100%;
        }

        .veil {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            width: 100%;
        }

        /* 公共排版语法 */
        .crest {
            font-weight: 700;
            letter-spacing: -0.02em;
            color: var(--aura-text-main);
            white-space: normal;
        }

        .cipher {
            color: var(--aura-text-muted);
            font-size: 1.125rem;
            word-break: keep-all;
        }

        /* 按钮/行动入口语法 */
        .warp {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2.5rem;
            font-weight: 600;
            font-size: 1.05rem;
            color: var(--aura-surface);
            background-color: var(--aura-primary);
            border-radius: var(--aura-radius-full);
            box-shadow: 0 4px 15px rgba(223, 114, 170, 0.3);
            border: 2px solid transparent;
            cursor: pointer;
            text-align: center;
            white-space: normal;
        }

        .warp:hover {
            background-color: var(--aura-primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(223, 114, 170, 0.4);
        }

        .warp.orbit {
            background-color: transparent;
            color: var(--aura-text-main);
            border-color: var(--aura-border);
            box-shadow: none;
        }

        .warp.orbit:hover {
            border-color: var(--aura-primary);
            color: var(--aura-primary);
            background-color: var(--aura-primary-subtle);
        }

        /* -----------------------------------
           Section 1: 突破界限，主宰全场 (Hero / Portal)
        ----------------------------------- */
        .portal {
            width: 100%;
            padding: 100px 0 120px;
            background: radial-gradient(circle at 85% 15%, var(--aura-primary-light), transparent 50%),
                        radial-gradient(circle at 15% 85%, rgba(223, 114, 170, 0.05), transparent 50%),
                        linear-gradient(135deg, var(--aura-bg) 0%, var(--aura-surface) 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }

        .portal .veil {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 4rem;
        }

        .portal-cipher {
            flex: 1 1 500px;
            display: flex;
            flex-direction: column;
            gap: 2rem;
            z-index: 2;
        }

        .portal .crest {
            font-size: clamp(2.5rem, 4.5vw, 4.2rem);
            line-height: 1.15;
        }

        .portal .cipher {
            font-size: 1.25rem;
            max-width: 540px;
        }

        .portal-pool {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .portal-lens {
            flex: 1 1 400px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        /* 纯 CSS/SVG 视觉焦点 */
        .glyph-portal {
            width: 100%;
            max-width: 500px;
            height: auto;
            filter: drop-shadow(0 20px 40px rgba(223, 114, 170, 0.15));
        }

        .glyph-portal circle.pulse {
            animation: auraPulse 3s infinite cubic-bezier(0.4, 0, 0.6, 1);
        }

        @keyframes auraPulse {
            0% { transform: scale(0.95); opacity: 0.8; }
            50% { transform: scale(1.05); opacity: 1; }
            100% { transform: scale(0.95); opacity: 0.8; }
        }

        /* -----------------------------------
           Section 2: 告别延迟，拒绝缓冲 (Benefits / Nexus)
        ----------------------------------- */
        .nexus {
            padding: 100px 0;
            background-color: var(--aura-surface);
            border-top: 1px solid var(--aura-border);
            display: flex;
            flex-wrap: wrap;
        }

        .nexus-apex {
            text-align: center;
            margin-bottom: 4rem;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .nexus .crest {
            font-size: clamp(2rem, 3vw, 2.8rem);
        }

        .nexus .cipher {
            max-width: 600px;
        }

        .pool-vaults {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: center;
        }

        .vault {
            flex: 1 1 300px;
            background: var(--aura-surface);
            padding: 3rem 2.5rem;
            border-radius: var(--aura-radius-lg);
            border: 1px solid var(--aura-border);
            box-shadow: var(--aura-shadow);
            transition: var(--aura-transition);
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            position: relative;
            overflow: hidden;
        }

        .vault:hover {
            transform: translateY(-8px);
            box-shadow: var(--aura-shadow-hover);
            border-color: var(--aura-primary-light);
        }

        .vault::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--aura-primary), transparent);
            opacity: 0;
            transition: var(--aura-transition);
        }

        .vault:hover::before {
            opacity: 1;
        }

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

        .vault-glyph svg {
            width: 28px;
            height: 28px;
            fill: currentColor;
        }

        .vault .crest {
            font-size: 1.4rem;
            font-weight: 600;
        }

        .vault .cipher {
            font-size: 1rem;
            margin: 0;
        }

        /* -----------------------------------
           Section 3: 多维度的极致网络场景 (Scenarios / Cloak)
        ----------------------------------- */
        .cloak {
            padding: 100px 0;
            background-color: var(--aura-surface-alt);
            display: flex;
            flex-wrap: wrap;
        }

        .cloak-apex {
            margin-bottom: 4rem;
            width: 100%;
        }

        .cloak .crest {
            font-size: clamp(2rem, 3vw, 2.8rem);
        }

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

        .pod {
            background: var(--aura-surface);
            border-radius: var(--aura-radius-lg);
            padding: 2.5rem;
            border: 1px solid var(--aura-border);
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            transition: var(--aura-transition);
        }

        .pod:hover {
            box-shadow: var(--aura-shadow);
            background-color: var(--aura-surface);
        }

        .pod-beam {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .pod-glyph {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--aura-bg);
            border: 1px solid var(--aura-border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--aura-text-main);
        }

        .pod-glyph svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        .pod .crest {
            font-size: 1.25rem;
            font-weight: 600;
            margin: 0;
        }

        .pod .cipher {
            font-size: 1rem;
            margin: 0;
        }

        /* -----------------------------------
           页脚 (Footer / Root)
        ----------------------------------- */
        .root {
            background-color: var(--aura-surface);
            border-top: 1px solid var(--aura-border);
            padding: 4rem 0 2rem;
            margin-top: auto;
            display: flex;
            flex-wrap: wrap;
        }

        .anchor {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: flex-start;
            gap: 3rem;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .anchor-brand {
            flex: 1 1 240px;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .anchor-brand .crest {
            font-size: 1.5rem;
            color: var(--aura-text-main);
        }

        .anchor-brand .cipher {
            font-size: 0.95rem;
        }

        .anchor-mesh {
            flex: 2 1 500px;
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
            justify-content: flex-end;
        }

        .anchor-pool {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            min-width: 120px;
        }

        .anchor-pool .crest {
            font-size: 1rem;
            font-weight: 600;
            color: var(--aura-text-main);
        }

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

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

        .anchor-base {
            width: 100%;
            text-align: center;
            padding-top: 3rem;
            margin-top: 3rem;
            border-top: 1px solid var(--aura-border);
            color: var(--aura-text-muted);
            font-size: 0.9rem;
        }

        /* 响应式断点 */
        @media (max-width: 1024px) {
            .portal .veil {
                flex-direction: column;
                text-align: center;
            }
            .portal-cipher {
                align-items: center;
            }
            .portal-pool {
                justify-content: center;
            }
            .anchor-mesh {
                justify-content: flex-start;
            }
        }

        @media (max-width: 768px) {
            .radar {
                flex-direction: column;
                gap: 1rem;
                padding: 0 1.5rem;
            }
            .path {
                width: 100%;
                justify-content: center;
                gap: 1.5rem;
            }
            .portal {
                padding: 60px 0 80px;
            }
            .pool-vaults {
                flex-direction: column;
            }
            .mesh-pods {
                grid-template-columns: 1fr;
            }
            .anchor {
                flex-direction: column;
            }
        }

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