:root {
    --bg-deep: #0b0f19;
    --bg-surface: #131a2a;
    --bg-elevated: #1e2738;
    --text-prime: #ffffff;
    --text-mute: #a0aec0;
    --accent: #97e33b;
    --radius-lg: 20px;
    --radius-md: 16px;
    --shadow-base: 0 10px 30px rgba(0,0,0,0.4);
    --shadow-glow: 0 0 20px rgba(151, 227, 59, 0.2);
    --width-max: 1280px;
    --transition: 0.15s ease;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--bg-deep);
    color: var(--text-prime);
    line-height: 1.7;
    overflow-x: hidden;
    word-break: break-word;
    overflow-wrap: break-word;
    background-image: radial-gradient(circle at 50% 0%, rgba(151, 227, 59, 0.05) 0%, transparent 50%);
}

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

/* Header & Nav (Inherited) */
.apex-realm {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(11, 15, 25, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    flex-wrap: wrap;
}

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

.orbit-weave {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.orbit-bond {
    color: var(--text-mute);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
}

.orbit-bond:hover, .orbit-bond.active {
    color: var(--text-prime);
}

.orbit-bond.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(151, 227, 59, 0.5);
}

/* Main Layout */
.core-realm {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: 100px;
}

.inner-bound {
    max-width: var(--width-max);
    margin: 0 auto;
    width: 100%;
    padding: 0 5%;
}

/* Section 1: Hero / Portal */
.portal-realm {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-height: 75vh;
    padding: 4rem 0;
    position: relative;
}

.portal-sync {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
    width: 100%;
}

.portal-focus {
    flex: 1 1 450px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.portal-crest {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    white-space: normal;
}

.crest-hl {
    color: var(--accent);
    text-shadow: 0 0 30px rgba(151, 227, 59, 0.3);
}

.portal-echo {
    font-size: 1.125rem;
    color: var(--text-mute);
    max-width: 90%;
    line-height: 1.8;
}

.portal-visual {
    flex: 1 1 450px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

/* Seed: card_float */
.float-shard {
    background: rgba(19, 26, 42, 0.7);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(151, 227, 59, 0.2);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    width: 100%;
    max-width: 500px;
    box-shadow: var(--shadow-base), var(--shadow-glow);
    animation: aisitexFloat 6s ease-in-out infinite;
    transform-style: preserve-3d;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@keyframes aisitexFloat {
    0% { transform: translateY(0px) rotateX(2deg) rotateY(-2deg); }
    50% { transform: translateY(-15px) rotateX(-2deg) rotateY(2deg); }
    100% { transform: translateY(0px) rotateX(2deg) rotateY(-2deg); }
}

.mock-ui-wave {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mock-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #333;
}
.mock-dot:nth-child(1) { background: #ff5f56; }
.mock-dot:nth-child(2) { background: #ffbd2e; }
.mock-dot:nth-child(3) { background: #27c93f; }

.mock-echo-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: rgba(0,0,0,0.3);
    border-radius: 8px;
    font-family: monospace;
    font-size: 0.9rem;
}

.mock-echo-row.highlight {
    border: 1px solid var(--accent);
    background: rgba(151, 227, 59, 0.05);
}

.mock-aura { color: var(--text-mute); }
.mock-value { color: var(--text-prime); }
.mock-value.success { color: var(--accent); font-weight: bold; }
.mock-value.error { color: #ff5f56; text-decoration: line-through; }

/* Section 2: Troubleshooting (Aside/FAQ) */
.faq-realm {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-surface) 100%);
}

.mesh-crest {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.mesh-echo {
    text-align: center;
    color: var(--text-mute);
    max-width: 600px;
    margin: 0 auto 4rem auto;
}

.faq-sync {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.faq-node {
    background: var(--bg-elevated);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-node:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-base);
    border-color: rgba(151, 227, 59, 0.4);
}

.glyph-bound {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(151, 227, 59, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.glyph-bound svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.node-crest {
    font-size: 1.25rem;
    font-weight: 600;
}

.node-echo {
    color: var(--text-mute);
    font-size: 0.95rem;
    flex-grow: 1;
}

/* Section 3: Installation (Article) */
.acquire-realm {
    padding: 6rem 0;
    background: var(--bg-surface);
}

.step-sync {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.step-cell {
    display: flex;
    flex-wrap: wrap;
    background: var(--bg-deep);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    padding: 2rem;
    align-items: center;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.step-cell::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--accent);
    opacity: 0;
    transition: opacity var(--transition);
}

.step-cell:hover::before {
    opacity: 1;
}

.step-num {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255,255,255,0.05);
    line-height: 1;
}

.step-fold {
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.step-crest {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-prime);
}

.step-echo {
    color: var(--text-mute);
    font-size: 0.95rem;
}

.pulse-prime {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--bg-deep);
    font-weight: 700;
    padding: 0.8rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(151, 227, 59, 0.3);
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
    margin-top: 1rem;
}

.pulse-prime:hover {
    box-shadow: 0 6px 20px rgba(151, 227, 59, 0.5);
    transform: translateY(-2px);
}

/* Footer */
.nadir-realm {
    padding: 4rem 5%;
    background: var(--bg-deep);
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.nadir-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-prime);
    margin-bottom: 1rem;
}

.nadir-echo {
    color: var(--text-mute);
    font-size: 0.9rem;
}

.nadir-weave {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.nadir-bond {
    color: var(--text-mute);
    font-size: 0.9rem;
}
.nadir-bond:hover {
    color: var(--accent);
}

/* Responsive */
@media (max-width: 768px) {
    .apex-realm {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 5%;
    }
    .orbit-weave {
        justify-content: center;
    }
    .core-realm {
        padding-top: 120px;
    }
    .portal-realm {
        padding: 2rem 0;
    }
    .portal-sync {
        gap: 3rem;
    }
    .portal-crest {
        text-align: center;
    }
    .portal-echo {
        text-align: center;
        margin: 0 auto;
    }
    .step-cell {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

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

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

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

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

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

.orbit-apex-realm a.orbit-orbit-bond.orbit-bond-active,
.orbit-apex-realm a.orbit-orbit-bond {
    --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;
}

.orbit-apex-realm a.orbit-orbit-bond.orbit-bond-active,
.orbit-apex-realm a.orbit-orbit-bond.orbit-bond-active:hover,
.orbit-apex-realm a.orbit-orbit-bond.orbit-bond-active:focus,
.orbit-apex-realm a.orbit-orbit-bond.orbit-bond-active:active,
.orbit-apex-realm a.orbit-orbit-bond.orbit-bond-active.active,
.orbit-apex-realm a.orbit-orbit-bond.orbit-bond-active[aria-current="page"],
.orbit-apex-realm a.orbit-orbit-bond,
.orbit-apex-realm a.orbit-orbit-bond:hover,
.orbit-apex-realm a.orbit-orbit-bond:focus,
.orbit-apex-realm a.orbit-orbit-bond:active,
.orbit-apex-realm a.orbit-orbit-bond.active,
.orbit-apex-realm a.orbit-orbit-bond[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);
}

.orbit-apex-realm, .orbit-apex-realm .orbit-orbit-weave{
            display: flex;
            flex-wrap: wrap;
        }

.orbit-apex-realm > *, .orbit-apex-realm .orbit-orbit-weave > *{
            min-width: 0;
        }

.orbit-apex-realm{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background: rgba(11, 15, 25, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255,255,255,0.05);
            padding: 1rem 5%;
            justify-content: space-between;
            align-items: center;
        }

.orbit-apex-realm .orbit-sigil{
            display: flex;
            align-items: center;
            height: 40px;
        }

.orbit-apex-realm .orbit-sigil img{
            height: 100%;
            width: auto;
            object-fit: contain;
        }

.orbit-apex-realm .orbit-orbit-weave{
            gap: 2rem;
            align-items: center;
        }

.orbit-apex-realm .orbit-orbit-bond{
            color: #a0aec0;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.5rem 0;
            position: relative;
        }

.orbit-apex-realm .orbit-orbit-bond::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #97e33b;
            transition: all 0.15s ease;
        }

.orbit-apex-realm .orbit-orbit-bond:hover, .orbit-apex-realm .orbit-orbit-bond:focus{
            color: #ffffff;
        }

.orbit-apex-realm .orbit-orbit-bond:hover::after, .orbit-apex-realm .orbit-orbit-bond:focus::after{
            width: 100%;
        }

.orbit-apex-realm .orbit-bond-active{
            color: #97e33b;
        }

.orbit-apex-realm .orbit-bond-active::after{
            width: 100%;
        }

@media (max-width: 768px){.orbit-apex-realm{
                padding: 1rem;
            }

.orbit-apex-realm .orbit-orbit-weave{
                display: none; 
            }}

.orbit-apex-realm {
    background: rgb(11, 15, 25);
    background-image: none;
}

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

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

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

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

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

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

.root-nadir-base{
            background-color: #05070a;
            padding: 4rem 5%;
            text-align: center;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

.root-nadir-base p{
            color: #a0aec0;
            font-size: 0.9rem;
            opacity: 0.7;
        }

.root-nadir-base strong{
            color: #ffffff;
            font-size: 1.2rem;
            display: block;
            margin-bottom: 0.5rem;
        }