/* CSS Variables - Visual Family Inheritance */
        :root {
            --bg: #09090b;
            --surface: #121214;
            --surface-elevated: #1c1c1f;
            --primary: #17dfdf;
            --primary-dim: rgba(23, 223, 223, 0.15);
            --text-main: #f4f4f5;
            --text-muted: #a1a1aa;
            --text-dark: #000000;
            --radius: 8px;
            --font-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
            --transition: all 0.35s ease;
        }

        /* Base Reset & Typography */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            min-width: 0; /* Flexbox safety */
        }

        body {
            background-color: var(--bg);
            color: var(--text-main);
            font-family: var(--font-sans);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
            word-break: break-word;
            overflow-wrap: break-word;
        }

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

        /* --- Mandatory Header Styles (Reused & Adapted for dark theme logic) --- */
        .apex {
            position: sticky;
            top: 0;
            z-index: 50;
            background: rgba(9, 9, 11, 0.8);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .orbit {
            max-width: 1280px;
            margin: 0 auto;
            padding: 1rem 5%;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

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

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

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

        .tie:hover {
            color: var(--primary);
        }

        .tie.active {
            color: var(--text-main);
            position: relative;
        }

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

        /* --- Layout Containers --- */
        .zone {
            display: flex;
            flex-direction: column;
            gap: 6rem;
            padding-bottom: 6rem;
        }

        /* Common inner container */
        .mesh {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 5%;
            width: 100%;
        }

        /* --- Hero Section (Asymmetric Grid Variant) --- */
        .nova {
            padding: 6rem 5% 2rem;
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
        }

        @media (min-width: 992px) {
            .nova {
                grid-template-columns: 1fr 1.2fr;
                gap: 6rem;
            }
        }

        /* Decorative background glow */
        .nova::before {
            content: '';
            position: absolute;
            top: 20%;
            left: -10%;
            width: 40vw;
            height: 40vw;
            background: radial-gradient(circle, var(--primary-dim) 0%, transparent 70%);
            z-index: -1;
            filter: blur(60px);
        }

        .pod-intro {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            z-index: 2;
        }

        .peak-xl {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.03em;
            color: var(--text-main);
            white-space: normal;
        }

        .peak-xl span {
            color: var(--primary);
        }

        .lore-lead {
            font-size: clamp(1.1rem, 2vw, 1.25rem);
            color: var(--text-muted);
            max-width: 600px;
            word-break: keep-all;
        }

        /* Hero Terminal Visual */
        .shell-terminal {
            background: var(--surface);
            border: 1px solid #3f3f46;
            border-radius: var(--radius);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
            transition: var(--transition);
        }

        .shell-terminal:hover {
            transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
            border-color: var(--primary);
            box-shadow: 0 25px 50px -12px rgba(23, 223, 223, 0.2);
        }

        .vein-top {
            background: var(--surface-elevated);
            padding: 0.75rem 1rem;
            display: flex;
            gap: 0.5rem;
            border-bottom: 1px solid #3f3f46;
            align-items: center;
        }

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

        .pod-code {
            padding: 2rem;
            font-family: var(--font-mono);
            font-size: 0.9rem;
            color: #a1a1aa;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .lore-cmd {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }

        .lore-cmd::before {
            content: '>';
            color: var(--primary);
            font-weight: bold;
        }

        .lore-cmd span {
            color: #d4d4d8;
        }
        .lore-cmd em {
            color: #8b5cf6;
            font-style: normal;
        }

        /* --- Section Titles --- */
        .peak-lg {
            font-size: clamp(2rem, 3vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .rune-rune {
            width: 32px;
            height: 32px;
            color: var(--primary);
        }

        .lore-desc {
            color: var(--text-muted);
            font-size: 1.1rem;
            margin-bottom: 3rem;
            max-width: 700px;
        }

        /* --- Article: IRC Commands --- */
        .flare {
            position: relative;
        }

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

        .packet-cmd {
            background: var(--surface);
            border: 1px solid #27272a;
            border-radius: var(--radius);
            padding: 2rem;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            gap: 1rem;
            position: relative;
            overflow: hidden;
        }

        .packet-cmd::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--primary);
            opacity: 0;
            transition: var(--transition);
        }

        .packet-cmd:hover {
            transform: translateY(-5px);
            border-color: #3f3f46;
            background: var(--surface-elevated);
        }

        .packet-cmd:hover::before {
            opacity: 1;
        }

        .peak-md {
            font-family: var(--font-mono);
            font-size: 1.25rem;
            color: var(--primary);
            font-weight: 600;
            background: rgba(23, 223, 223, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 4px;
            display: inline-block;
            align-self: flex-start;
        }

        .lore-detail {
            color: var(--text-main);
            font-size: 1.05rem;
        }

        /* --- Aside: Shortcut Keys --- */
        .beacon {
            background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
            padding: 4rem 0;
            border-top: 1px solid #27272a;
            border-bottom: 1px solid #27272a;
        }

        .pod-wire {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .packet-key {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1.5rem;
            padding: 1.5rem;
            background: var(--bg);
            border: 1px solid #3f3f46;
            border-radius: var(--radius);
            transition: var(--transition);
        }

        .packet-key:hover {
            border-color: var(--primary);
            box-shadow: 0 4px 20px rgba(23, 223, 223, 0.05);
        }

        .pod-keys {
            display: flex;
            gap: 0.5rem;
            align-items: center;
            flex-wrap: wrap;
            min-width: 200px;
        }

        .rune-kbd {
            background: var(--surface-elevated);
            color: var(--text-main);
            font-family: var(--font-mono);
            font-size: 0.9rem;
            padding: 0.4rem 0.8rem;
            border-radius: 6px;
            border: 1px solid #3f3f46;
            border-bottom-width: 3px;
            font-weight: 600;
            box-shadow: 0 2px 0 rgba(0,0,0,0.5);
        }

        .lore-plus {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .lore-urge {
            color: var(--text-main);
            flex: 1;
            min-width: 250px;
        }

        /* --- Div: Admin Ops --- */
        .mesh-admin {
            position: relative;
        }

        .shell-admin {
            background: var(--surface);
            border: 1px dashed #3f3f46;
            border-radius: var(--radius);
            padding: 3rem;
        }

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

        .packet-admin {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            padding: 1.5rem;
            background: rgba(255, 95, 86, 0.05); /* Subtle warning tint */
            border-left: 3px solid #ff5f56;
            border-radius: 0 var(--radius) var(--radius) 0;
        }

        .peak-admin {
            font-family: var(--font-mono);
            font-size: 1.1rem;
            color: #ff5f56;
            font-weight: bold;
        }

        /* --- Footer --- */
        .wake {
            border-top: 1px solid #27272a;
            padding: 4rem 5%;
            background: var(--bg);
            margin-top: auto;
        }

        .orbit-wake {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }

        .peak-brand {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text-main);
            letter-spacing: -0.05em;
        }

        .lore-lore {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .wire-wake {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .tie-wake {
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        .tie-wake:hover {
            color: var(--primary);
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .zone { gap: 4rem; padding-bottom: 4rem; }
            .nova { padding-top: 4rem; gap: 3rem; }
            .shell-terminal { transform: none; }
            .shell-terminal:hover { transform: translateY(-5px); }
            .packet-key { flex-direction: column; align-items: flex-start; gap: 1rem; }
            .shell-admin { padding: 1.5rem; }
        }

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

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

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

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

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

.orbit-apex a.orbit-tie {
    --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 a.orbit-tie,
.orbit-apex a.orbit-tie:hover,
.orbit-apex a.orbit-tie:focus,
.orbit-apex a.orbit-tie:active,
.orbit-apex a.orbit-tie.active,
.orbit-apex a.orbit-tie[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{
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(9, 9, 11, 0.75);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid #27272a;
        }

.orbit-apex .orbit-orbit{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 72px;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }

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

.orbit-apex .orbit-seal img{
            height: 28px;
            display: block;
        }

.orbit-apex .orbit-wire{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }

.orbit-apex .orbit-wire > *{ min-width: 0; }

.orbit-apex .orbit-tie{
            color: #a1a1aa;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: 0.35s ease;
            padding: 0.5rem 0;
            position: relative;
        }

.orbit-apex .orbit-tie:hover, .orbit-apex .orbit-tie.active{
            color: #f4f4f5;
        }

.orbit-apex .orbit-tie.active::after{
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #17dfdf;
        }

@media (max-width: 1024px){.orbit-apex .orbit-wire{
                display: none; 
            }}

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

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

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

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

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

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

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

.root-wake .root-lore-md{ font-size: 1rem; color: #a1a1aa; }

.root-wake .root-mesh-mesh{
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }

.root-wake .root-tie{
            color: #a1a1aa;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: 0.35s ease;
            padding: 0.5rem 0;
            position: relative;
        }

.root-wake .root-tie:hover, .root-wake .root-tie.active{
            color: #f4f4f5;
        }

.root-wake .root-tie.active::after{
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #17dfdf;
        }

.root-wake{
            border-top: 1px solid #27272a;
            background: #121214;
            padding: 4rem 0 2rem;
        }

.root-wake .root-root{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: flex-start;
            gap: 4rem;
        }

.root-wake .root-root > *{ min-width: 0; }

.root-wake .root-root-brand{
            flex: 1 1 300px;
        }

.root-wake .root-brand-lore{
            font-size: 1.5rem;
            font-weight: 800;
            color: #f4f4f5;
            letter-spacing: -0.05em;
            margin-bottom: 1rem;
        }

.root-wake .root-root-links{
            display: flex;
            flex-wrap: wrap;
            gap: 4rem;
        }

.root-wake .root-root-links > *{ min-width: 0; }

.root-wake .root-tie-pod{
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

.root-wake .root-tie-peak{
            font-size: 0.875rem;
            font-weight: 600;
            color: #f4f4f5;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

.root-wake .root-echo-bottom{
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid #27272a;
            text-align: center;
            color: #a1a1aa;
            font-size: 0.875rem;
        }