:root {
            --emI-prime: #43cad4;
            --emI-deep: #0a0c10;
            --emI-mute: #1a1e26;
            --emI-text: #e0e6ed;
            --emI-text-dim: #94a3b8;
            --emI-radius: 11px;
            --emI-gap: 2rem;
            --emI-transition: 0.15s ease;
        }

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

        body {
            background-color: var(--emI-deep);
            color: var(--emI-text);
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            line-height: 1.7;
            overflow-x: hidden;
            word-break: keep-all;
            overflow-wrap: break-word;
        }

        /* 导航区域: orbit, nexus */
        .emI-orbit {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(10, 12, 16, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(67, 202, 212, 0.1);
        }

        .emI-halo {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 1.5rem;
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

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

        .emI-logo img {
            height: 32px;
            width: auto;
        }

        .emI-nexus {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            min-width: 0;
        }

        .emI-nexus a {
            text-decoration: none;
            color: var(--emI-text-dim);
            font-size: 0.95rem;
            font-weight: 500;
            transition: var(--emI-transition);
        }

        .emI-nexus a:hover, .emI-nexus a.active {
            color: var(--emI-prime);
        }

        /* 容器组件: matrix */
        .emI-matrix {
            max-width: 1100px;
            margin: 0 auto;
            padding: 120px 1.5rem 60px;
        }

        /* 展示区域: apex, pulsar, flare (Vertical Stack Hero) */
        .emI-apex {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 4rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            margin-bottom: 4rem;
        }

        .emI-pulsar {
            font-size: clamp(2.5rem, 8vw, 4.5rem);
            line-height: 1.1;
            font-weight: 800;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #fff 0%, var(--emI-prime) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -0.02em;
        }

        .emI-flare {
            max-width: 700px;
            font-size: 1.25rem;
            color: var(--emI-text-dim);
            margin-bottom: 2.5rem;
        }

        .emI-bolt {
            display: inline-flex;
            align-items: center;
            background: var(--emI-prime);
            color: var(--emI-deep);
            padding: 12px 32px;
            border-radius: var(--emI-radius);
            font-weight: 700;
            text-decoration: none;
            transition: var(--emI-transition);
            box-shadow: 0 10px 20px -5px rgba(67, 202, 212, 0.3);
        }

        .emI-bolt:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 30px -5px rgba(67, 202, 212, 0.4);
        }

        /* 容器组件: vault, shard, glyph */
        .emI-vault {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin-top: 3rem;
        }

        .emI-shard {
            flex: 1;
            min-width: 300px;
            background: var(--emI-mute);
            padding: 2.5rem;
            border-radius: var(--emI-radius);
            border: 1px solid rgba(255,255,255,0.03);
            transition: var(--emI-transition);
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .emI-shard:hover {
            border-color: rgba(67, 202, 212, 0.3);
            background: rgba(26, 30, 38, 0.8);
        }

        .emI-glyph {
            width: 56px;
            height: 56px;
            background: rgba(67, 202, 212, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            color: var(--emI-prime);
        }

        .emI-shard h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #fff;
        }

        .emI-shard p {
            color: var(--emI-text-dim);
            font-size: 1rem;
            line-height: 1.6;
        }

        /* 文字区块增强 */
        .emI-zest {
            margin-top: 6rem;
            padding: 4rem;
            background: linear-gradient(to bottom right, #1a1e26, #0a0c10);
            border-radius: var(--emI-radius);
            border-left: 4px solid var(--emI-prime);
        }

        .emI-zest h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: #fff;
        }

        .emI-zest ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
        }

        .emI-zest li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            color: var(--emI-text-dim);
        }

        .emI-zest li::before {
            content: "•";
            color: var(--emI-prime);
            font-weight: bold;
        }

        /* 页脚区域: abyss, echo */
        .emI-abyss {
            background: #050608;
            padding: 80px 0 40px;
            margin-top: 100px;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        .emI-echo {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .emI-echo .brand {
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: 1px;
            color: #fff;
        }

        .emI-echo .links {
            display: flex;
            gap: 2rem;
        }

        .emI-echo a {
            color: var(--emI-text-dim);
            text-decoration: none;
            font-size: 0.85rem;
            transition: var(--emI-transition);
        }

        .emI-echo a:hover {
            color: var(--emI-prime);
        }

        .emI-echo .copy {
            width: 100%;
            text-align: center;
            margin-top: 40px;
            color: #4b5563;
            font-size: 0.8rem;
            border-top: 1px solid rgba(255,255,255,0.03);
            padding-top: 20px;
        }

        /* 响应式适配 */
        @media (max-width: 768px) {
            .emI-halo {
                height: auto;
                padding: 1rem;
            }
            .emI-nexus {
                width: 100%;
                margin-top: 1rem;
                justify-content: center;
                gap: 0.75rem;
            }
            .emI-nexus a {
                font-size: 0.85rem;
            }
            .emI-matrix {
                padding-top: 140px;
            }
            .emI-shard {
                min-width: 100%;
            }
            .emI-zest {
                padding: 2rem;
            }
        }

.emI-hdr-orbit {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    word-break: keep-all;
    color: var(--emI-text-main);
}
.emI-hdr-orbit,
.emI-hdr-orbit *,
.emI-hdr-orbit *::before,
.emI-hdr-orbit *::after {
    box-sizing: border-box;
}

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

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

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

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

.emI-hdr-orbit a[href="index.html"],
.emI-hdr-orbit a[href="get.html"],
.emI-hdr-orbit a[href="link.html"],
.emI-hdr-orbit a[href="safe.html"],
.emI-hdr-orbit a[href="tool.html"] {
    --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;
}

.emI-hdr-orbit a[href="index.html"],
.emI-hdr-orbit a[href="index.html"]:hover,
.emI-hdr-orbit a[href="index.html"]:focus,
.emI-hdr-orbit a[href="index.html"]:active,
.emI-hdr-orbit a[href="index.html"].active,
.emI-hdr-orbit a[href="index.html"][aria-current="page"],
.emI-hdr-orbit a[href="get.html"],
.emI-hdr-orbit a[href="get.html"]:hover,
.emI-hdr-orbit a[href="get.html"]:focus,
.emI-hdr-orbit a[href="get.html"]:active,
.emI-hdr-orbit a[href="get.html"].active,
.emI-hdr-orbit a[href="get.html"][aria-current="page"],
.emI-hdr-orbit a[href="link.html"],
.emI-hdr-orbit a[href="link.html"]:hover,
.emI-hdr-orbit a[href="link.html"]:focus,
.emI-hdr-orbit a[href="link.html"]:active,
.emI-hdr-orbit a[href="link.html"].active,
.emI-hdr-orbit a[href="link.html"][aria-current="page"],
.emI-hdr-orbit a[href="safe.html"],
.emI-hdr-orbit a[href="safe.html"]:hover,
.emI-hdr-orbit a[href="safe.html"]:focus,
.emI-hdr-orbit a[href="safe.html"]:active,
.emI-hdr-orbit a[href="safe.html"].active,
.emI-hdr-orbit a[href="safe.html"][aria-current="page"],
.emI-hdr-orbit a[href="tool.html"],
.emI-hdr-orbit a[href="tool.html"]:hover,
.emI-hdr-orbit a[href="tool.html"]:focus,
.emI-hdr-orbit a[href="tool.html"]:active,
.emI-hdr-orbit a[href="tool.html"].active,
.emI-hdr-orbit a[href="tool.html"][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);
}

.emI-hdr-orbit{
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(15, 23, 42, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

.emI-hdr-orbit .emI-hdr-halo{
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5vw;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }

.emI-hdr-orbit .emI-hdr-logo{
            flex: 0 0 auto;
        }

.emI-hdr-orbit .emI-hdr-logo img{
            height: 36px;
        }

.emI-hdr-orbit .emI-hdr-nexus{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            min-width: 0;
        }

.emI-hdr-orbit .emI-hdr-nexus a{
            font-size: 1rem;
            font-weight: 500;
            color: #94a3b8;
            padding: 0.5rem 0;
            position: relative;
        }

.emI-hdr-orbit .emI-hdr-nexus a:hover, .emI-hdr-orbit .emI-hdr-nexus a.active{
            color: #43cad4;
        }

.emI-hdr-orbit .emI-hdr-nexus a.active::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: #43cad4;
        }

@media (max-width: 768px){.emI-hdr-orbit .emI-hdr-halo{ height: auto; padding: 1.5rem 5vw; flex-direction: column; gap: 1.5rem; }

.emI-hdr-orbit .emI-hdr-nexus{ justify-content: center; gap: 1rem; }}

.emI-hdr-orbit {
    background: rgb(15, 23, 42);
    background-image: none;
}

.emI-ftr-abyss {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    word-break: keep-all;
    color: var(--emI-text-main);
}
.emI-ftr-abyss,
.emI-ftr-abyss *,
.emI-ftr-abyss *::before,
.emI-ftr-abyss *::after {
    box-sizing: border-box;
}

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

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

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

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

.emI-ftr-abyss a,
.emI-ftr-abyss a:hover,
.emI-ftr-abyss a:focus,
.emI-ftr-abyss a:active {
    background: transparent;
    box-shadow: none;
    outline: none;
    text-decoration: none;
}

.emI-ftr-abyss{
            padding: 8rem 5vw 4rem;
            background: #080c14;
            position: relative;
            overflow: hidden;
        }

.emI-ftr-abyss .emI-ftr-abyss-accent{
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.05;
            object-fit: cover;
            pointer-events: none;
        }

.emI-ftr-abyss .emI-ftr-abyss-matrix{
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 4rem;
        }

.emI-ftr-abyss .emI-ftr-echo-brand{
            flex: 1 1 300px;
        }

.emI-ftr-abyss .emI-ftr-echo-brand h2{
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            letter-spacing: 1px;
        }

.emI-ftr-abyss .emI-ftr-echo-brand p{
            color: #94a3b8;
            max-width: 300px;
        }

.emI-ftr-abyss .emI-ftr-echo-links{
            display: flex;
            flex-wrap: wrap;
            gap: 4rem;
        }

.emI-ftr-abyss .emI-ftr-echo-group h5{
            font-size: 1rem;
            margin-bottom: 1.5rem;
            color: #fff;
        }

.emI-ftr-abyss .emI-ftr-echo-group ul{
            list-style: none;
        }

.emI-ftr-abyss .emI-ftr-echo-group li{
            margin-bottom: 0.75rem;
        }

.emI-ftr-abyss .emI-ftr-echo-group a{
            color: #94a3b8;
            font-size: 0.9rem;
        }

.emI-ftr-abyss .emI-ftr-echo-group a:hover{
            color: #43cad4;
        }

.emI-ftr-abyss .emI-ftr-echo-bottom{
            max-width: 1400px;
            margin: 4rem auto 0;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            color: #94a3b8;
            font-size: 0.85rem;
        }

@media (max-width: 768px){.emI-ftr-abyss .emI-ftr-echo-links{ gap: 2rem; }

.emI-ftr-abyss .emI-ftr-echo-bottom{ flex-direction: column; gap: 1rem; text-align: center; }}