:root {
            --emI-accent: #43cad4;
            --emI-bg: #0f172a;
            --emI-surface: #1e293b;
            --emI-text-main: #f8fafc;
            --emI-text-muted: #94a3b8;
            --emI-radius: 11px;
            --emI-transition: 0.15s ease;
        }

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

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

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

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* Orbit & Nexus - Navigation Area */
        .emI-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-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-logo {
            flex: 0 0 auto;
        }

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

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

        .emI-nexus a {
            font-size: 1rem;
            font-weight: 500;
            color: var(--emI-text-muted);
            padding: 0.5rem 0;
            position: relative;
        }

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

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

        /* Flare & Apex & Pulsar - Hero Area */
        .emI-flare {
            padding: 6rem 5vw 4rem;
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            flex-direction: column; /* vertical_stack blueprint */
            align-items: center;
            text-align: center;
        }

        .emI-apex {
            width: 100%;
            max-width: 900px;
            margin-bottom: 4rem;
        }

        .emI-apex h1 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            line-height: 1.1;
            margin-bottom: 2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #fff 0%, var(--emI-accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            word-break: break-word;
        }

        .emI-apex p {
            font-size: 1.25rem;
            color: var(--emI-text-muted);
            margin-bottom: 3rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .emI-zest-group {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            justify-content: center;
        }

        .emI-bolt {
            padding: 1rem 2.5rem;
            border-radius: var(--emI-radius);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            cursor: pointer;
        }

        .emI-bolt-primary {
            background: var(--emI-accent);
            color: #000;
        }

        .emI-bolt-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(67, 202, 212, 0.2);
        }

        .emI-bolt-secondary {
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.03);
        }

        .emI-bolt-secondary:hover {
            background: rgba(255, 255, 255, 0.08);
        }

        .emI-pulsar {
            width: 100%;
            border-radius: var(--emI-radius);
            overflow: hidden;
            box-shadow: 0 40px 100px rgba(0,0,0,0.5);
            background: var(--emI-surface);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .emI-pulsar img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        /* Matrix & Vault & Shard - Main Sections */
        .emI-matrix {
            padding: 6rem 5vw;
            max-width: 1400px;
            margin: 0 auto;
        }

        .emI-vault-title {
            margin-bottom: 4rem;
            text-align: center;
        }

        .emI-vault-title h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .emI-vault-title p {
            color: var(--emI-text-muted);
            max-width: 600px;
            margin: 0 auto;
        }

        .emI-matrix-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .emI-shard {
            background: var(--emI-surface);
            padding: 3rem;
            border-radius: var(--emI-radius);
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: var(--emI-transition);
            min-width: 0;
            position: relative;
            overflow: hidden;
        }

        .emI-shard:hover {
            border-color: var(--emI-accent);
            transform: translateY(-5px);
        }

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

        .emI-shard h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .emI-shard p {
            color: var(--emI-text-muted);
            font-size: 1rem;
        }

        /* Narrative Showcase - Scene Layout */
        .emI-narrative {
            display: flex;
            flex-wrap: wrap;
            gap: 4rem;
            align-items: center;
            margin-top: 8rem;
        }

        .emI-narrative-visual {
            flex: 1 1 500px;
            min-width: 0;
        }

        .emI-narrative-visual img {
            border-radius: var(--emI-radius);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

        .emI-narrative-text {
            flex: 1 1 400px;
            min-width: 0;
        }

        .emI-narrative-text h2 {
            font-size: 2.25rem;
            margin-bottom: 2rem;
            line-height: 1.3;
        }

        .emI-narrative-point {
            margin-bottom: 2.5rem;
            padding-left: 1.5rem;
            border-left: 3px solid var(--emI-accent);
        }

        .emI-narrative-point strong {
            display: block;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            color: var(--emI-accent);
        }

        /* Paths Matrix */
        .emI-paths {
            background: rgba(255, 255, 255, 0.02);
            padding: 6rem 5vw;
            margin-top: 6rem;
        }

        .emI-paths-matrix {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .emI-paths-shard {
            flex: 1 1 280px;
            min-width: 0;
            background: var(--emI-bg);
            padding: 2.5rem;
            border-radius: var(--emI-radius);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .emI-paths-shard h4 {
            font-size: 1.25rem;
            margin-bottom: 1rem;
        }

        .emI-paths-shard p {
            font-size: 0.95rem;
            color: var(--emI-text-muted);
            margin-bottom: 2rem;
        }

        .emI-paths-link {
            font-weight: 600;
            color: var(--emI-accent);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        /* Abyss & Echo - Footer Area */
        .emI-abyss {
            padding: 8rem 5vw 4rem;
            background: #080c14;
            position: relative;
            overflow: hidden;
        }

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

        .emI-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-echo-brand {
            flex: 1 1 300px;
        }

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

        .emI-echo-brand p {
            color: var(--emI-text-muted);
            max-width: 300px;
        }

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

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

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

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

        .emI-echo-group a {
            color: var(--emI-text-muted);
            font-size: 0.9rem;
        }

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

        .emI-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: var(--emI-text-muted);
            font-size: 0.85rem;
        }

        /* Responsive Breakpoints */
        @media (max-width: 1024px) {
            .emI-apex h1 { font-size: 3.5rem; }
        }

        @media (max-width: 768px) {
            .emI-halo { height: auto; padding: 1.5rem 5vw; flex-direction: column; gap: 1.5rem; }
            .emI-nexus { justify-content: center; gap: 1rem; }
            .emI-apex h1 { font-size: 2.5rem; }
            .emI-matrix-grid { grid-template-columns: 1fr; }
            .emI-narrative { flex-direction: column; }
            .emI-echo-links { gap: 2rem; }
            .emI-echo-bottom { flex-direction: column; gap: 1rem; text-align: center; }
        }

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