:root {
            --bg-base: #06080d;
            --bg-elevated: #0f131d;
            --bg-surface: #171c28;
            --accent-core: #42e7f2;
            --accent-dim: rgba(66, 231, 242, 0.15);
            --accent-glow: rgba(66, 231, 242, 0.4);
            --text-loud: #f8fafc;
            --text-base: #cbd5e1;
            --text-quiet: #64748b;
            --radius-soft: 16px;
            --radius-sharp: 8px;
            --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            --font-mono: "Fira Code", "Consolas", monospace;
            --transition: all 0.35s ease;
        }

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

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

        /* Typography */
        .shout {
            color: var(--text-loud);
            font-weight: 700;
            white-space: normal;
            line-height: 1.3;
        }

        .echo {
            color: var(--text-base);
            word-break: keep-all;
        }

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

        .code-echo {
            font-family: var(--font-mono);
            color: var(--accent-core);
            background: var(--bg-surface);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-size: 0.9em;
            letter-spacing: 0.05em;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* Layout Primitives */
        .mesh {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .knot {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            width: 100%;
        }

        .knot > * {
            min-width: 0;
        }

        /* Header / Apex (Mandatory structure) */
        .apex {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(6, 8, 13, 0.8);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(66, 231, 242, 0.1);
        }

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

        .glyph {
            display: flex;
            align-items: center;
        }

        .glyph img {
            height: 32px;
            width: auto;
        }

        .synap-stream {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .wire {
            color: var(--text-base);
            font-weight: 500;
            font-size: 0.95rem;
            transition: var(--transition);
            position: relative;
        }

        .wire:hover, .wire:focus {
            color: var(--accent-core);
        }

        .wire.active {
            color: var(--accent-core);
        }

        .wire.active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--accent-core);
            box-shadow: 0 0 8px var(--accent-glow);
            border-radius: 2px;
        }

        /* Main Realm */
        .realm {
            display: flex;
            flex-direction: column;
            width: 100%;
            min-width: 0;
        }

        /* Hero / Flare */
        .flare {
            width: 100%;
            padding: 8rem 2rem 6rem;
            background: radial-gradient(circle at 50% 100%, var(--accent-dim) 0%, transparent 60%),
                        linear-gradient(rgba(6, 8, 13, 0.8) 1px, transparent 1px),
                        linear-gradient(90deg, rgba(6, 8, 13, 0.8) 1px, transparent 1px),
                        var(--bg-base);
            background-size: 100% 100%, 40px 40px, 40px 40px;
            border-bottom: 1px solid rgba(66, 231, 242, 0.05);
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            text-align: center;
        }

        .flare-mesh {
            display: flex;
            flex-direction: column;
            align-items: center;
            max-width: 800px;
            min-width: 0;
        }

        .flare-shout {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            letter-spacing: -0.02em;
            color: var(--text-loud);
            margin-bottom: 1.5rem;
            text-shadow: 0 0 40px rgba(66, 231, 242, 0.2);
        }

        .flare-shout span {
            color: var(--accent-core);
        }

        .flare .echo {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            color: var(--text-quiet);
            max-width: 600px;
        }

        /* Sections (Pulse, Nexus, Hive) */
        .pulse, .nexus, .hive {
            padding: 6rem 0;
            display: flex;
            flex-wrap: wrap;
            width: 100%;
        }

        .nexus {
            background-color: var(--bg-elevated);
            border-top: 1px solid rgba(255, 255, 255, 0.02);
            border-bottom: 1px solid rgba(255, 255, 255, 0.02);
        }

        .mesh-apex {
            margin-bottom: 4rem;
            max-width: 700px;
        }

        .mesh-apex .shout {
            font-size: clamp(2rem, 4vw, 2.8rem);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .mesh-apex .shout::before {
            content: '>';
            color: var(--accent-core);
            margin-right: 0.5rem;
            opacity: 0.7;
        }

        .mesh-apex .echo {
            font-size: 1.1rem;
            color: var(--text-quiet);
        }

        /* Components: Pods (Cards) */
        .pod {
            background: var(--bg-elevated);
            border: 1px solid rgba(66, 231, 242, 0.1);
            border-radius: var(--radius-soft);
            padding: 2rem;
            display: flex;
            flex-direction: column;
            transition: var(--transition);
            flex: 1 1 300px;
        }

        .pod:hover {
            transform: translateY(-5px);
            border-color: rgba(66, 231, 242, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(66, 231, 242, 0.05);
        }

        .pod-apex {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
            gap: 1rem;
        }

        .rune {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: var(--bg-surface);
            border: 1px solid rgba(66, 231, 242, 0.15);
            color: var(--accent-core);
        }

        .rune svg {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }

        .pod .shout {
            font-size: 1.25rem;
        }

        .pod .echo {
            margin-top: 1rem;
            font-size: 0.95rem;
            color: var(--text-quiet);
        }

        .pod-syntax {
            margin-top: auto;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        /* Components: Blips (List items for data_ui) */
        .blip-knot {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            width: 100%;
        }

        .blip {
            display: flex;
            align-items: center;
            background: var(--bg-surface);
            border: 1px solid rgba(255, 255, 255, 0.03);
            border-radius: var(--radius-sharp);
            padding: 1.5rem;
            transition: var(--transition);
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .blip:hover {
            border-color: rgba(66, 231, 242, 0.2);
            background: var(--bg-elevated);
        }

        .blip-shell {
            flex: 1 1 200px;
            min-width: 0;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .blip-zap {
            flex: 2 1 300px;
            min-width: 0;
        }

        .blip .shout {
            font-size: 1.1rem;
            color: var(--text-loud);
        }

        /* Footer / Sole */
        .sole {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 4rem 2rem 2rem;
            background: var(--bg-base);
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }

        .sole-mesh {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
            width: 100%;
            max-width: 1200px;
        }

        .sole-brand {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-loud);
            letter-spacing: 0.05em;
        }

        .sole-wire-knot {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .sole-wire {
            color: var(--text-quiet);
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .sole-wire:hover {
            color: var(--accent-core);
        }

        .sole-echo {
            color: var(--text-quiet);
            font-size: 0.85rem;
            text-align: center;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .orbit {
                flex-direction: column;
                gap: 1rem;
                padding: 1rem;
            }
            .synap-stream {
                flex-wrap: wrap;
                justify-content: center;
                gap: 1rem;
            }
            .flare {
                padding: 6rem 1rem 4rem;
            }
            .pod {
                flex: 1 1 100%;
            }
            .blip {
                flex-direction: column;
                align-items: flex-start;
            }
            .mesh-apex {
                margin-bottom: 2rem;
            }
        }

.orbit-apex {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-base);
}
.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-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;
}

.orbit-apex a.orbit-wire,
.orbit-apex a.orbit-wire:hover,
.orbit-apex a.orbit-wire:focus,
.orbit-apex a.orbit-wire:active,
.orbit-apex a.orbit-wire.active,
.orbit-apex a.orbit-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);
}

.orbit-apex{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background: rgba(6, 8, 13, 0.7);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

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

.orbit-apex .orbit-glyph{
            min-width: 0;
            display: flex;
            align-items: center;
        }

.orbit-apex .orbit-glyph img{
            height: 32px;
            filter: drop-shadow(0 0 8px rgba(66, 231, 242, 0.15));
        }

.orbit-apex .orbit-synap-stream{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            min-width: 0;
            align-items: center;
        }

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

.orbit-apex .orbit-wire:hover, .orbit-apex .orbit-wire.active{
            color: #f8fafc;
        }

.orbit-apex .orbit-wire::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #42e7f2;
            transition: width 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
            box-shadow: 0 0 8px rgba(66, 231, 242, 0.4);
        }

.orbit-apex .orbit-wire:hover::after, .orbit-apex .orbit-wire.active::after{
            width: 100%;
        }

@media (max-width: 768px){.orbit-apex .orbit-synap-stream{
                display: none; 
            }}

.orbit-apex {
    background: rgb(6, 8, 13);
    background-image: none;
}

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

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

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

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

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

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

.base-base{
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding: 4rem 2rem 2rem;
            background: #06080d;
        }

.base-base .base-roots-sole{
            max-width: 1240px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }

.base-base .base-base-shout{
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: 1px;
            color: #f8fafc;
        }

.base-base .base-base-echo{
            color: #64748b;
            font-size: 0.9rem;
        }

@media (max-width: 768px){.base-base .base-roots-sole{
                flex-direction: column;
                text-align: center;
            }}