/* ==========================================================================
           Base & Reset (Visual Contract Inherited)
           ========================================================================== */
        :root {
            --color-primary: #37b9e9;
            --color-primary-hover: #2ba2ce;
            --color-dark: #0f172a;
            --color-text-main: #334155;
            --color-text-muted: #64748b;
            --color-bg-base: #ffffff;
            --color-bg-alt: #f8fafc;
            --color-border: #e2e8f0;
            --color-border-dark: #1e293b;
            --radius-md: 8px;
            --radius-lg: 11px;
            --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
            --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
            --shadow-dark: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            --transition-base: 0.25s ease;
            --font-stack: 'Segoe UI', system-ui, -apple-system, sans-serif;
        }

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

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

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

        /* Flex/Grid Mandates */
        .flex-mandate {
            display: flex;
            flex-wrap: wrap;
        }
        .flex-child {
            min-width: 0;
        }

        /* ==========================================================================
           Header (Direct Reuse & Style Match)
           ========================================================================== */
        .brow {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(8px);
            border-bottom: 1px solid var(--color-border);
        }

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

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

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

        .flow {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
            min-width: 0;
        }

        .wire {
            font-weight: 500;
            color: var(--color-text-main);
            font-size: 1rem;
            position: relative;
        }

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

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

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

        /* ==========================================================================
           Typography & Buttons
           ========================================================================== */
        .crux-pod {
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 800;
            color: var(--color-dark);
            line-height: 1.15;
            margin: 0 0 1.5rem 0;
            letter-spacing: -0.02em;
            white-space: normal;
        }

        .crux-pulse,
        .crux-flare,
        .crux-vault {
            font-size: clamp(2rem, 3vw, 2.5rem);
            font-weight: 700;
            color: var(--color-dark);
            line-height: 1.2;
            margin-bottom: 1rem;
            white-space: normal;
        }

        .lore-lead {
            font-size: 1.125rem;
            color: var(--color-text-muted);
            margin-bottom: 2rem;
            word-break: keep-all;
        }

        .ping-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--color-primary);
            color: #ffffff;
            padding: 1rem 2rem;
            border-radius: var(--radius-md);
            font-weight: 600;
            box-shadow: 0 4px 14px rgba(55, 185, 233, 0.35);
            transition: all var(--transition-base);
            cursor: pointer;
            border: none;
        }

        .ping-primary:hover,
        .ping-primary:focus {
            background: var(--color-primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(55, 185, 233, 0.45);
            color: #ffffff;
        }

        /* ==========================================================================
           Hero Section (Asymmetric Grid)
           ========================================================================== */
        .nova {
            background: radial-gradient(circle at 100% 0%, #f0f9ff 0%, #ffffff 60%);
            padding: 5rem 2rem;
            overflow: hidden;
        }

        .nova-mesh {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 4rem;
        }

        .nova-lore {
            flex: 1 1 500px;
            min-width: 0;
        }

        .nova-lens-mesh {
            flex: 1 1 450px;
            min-width: 0;
            position: relative;
            transform: translateY(0);
            transition: transform 0.4s ease;
        }

        .nova-lens-mesh:hover {
            transform: translateY(-10px);
        }

        .nova-lens-mesh::before {
            content: '';
            position: absolute;
            top: -20px;
            right: -20px;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--color-primary) 0%, rgba(55, 185, 233, 0.1) 100%);
            border-radius: var(--radius-lg);
            z-index: 0;
            opacity: 0.15;
        }

        .nova-lens {
            display: block;
            width: 100%;
            height: auto;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-dark);
            position: relative;
            z-index: 1;
            border: 1px solid var(--color-border);
        }

        .knot-features {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 2.5rem;
        }

        .band-feature {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--color-bg-base);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--color-dark);
            border: 1px solid var(--color-border);
            box-shadow: var(--shadow-sm);
            min-width: 0;
        }

        .band-feature svg {
            width: 16px;
            height: 16px;
            color: var(--color-primary);
        }

        /* ==========================================================================
           Capability Section (Python & Perl)
           ========================================================================== */
        .pulse {
            padding: 5rem 2rem;
            background-color: var(--color-bg-base);
        }

        .pulse-mesh {
            max-width: 1200px;
            margin: 0 auto;
        }

        .pulse-brow {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem auto;
        }

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

        .node-capability {
            background: var(--color-bg-base);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-lg);
            padding: 2.5rem 2rem;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition-base);
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
            min-width: 0;
        }

        .node-capability:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            border-color: rgba(55, 185, 233, 0.3);
        }

        .glyph-pod {
            width: 56px;
            height: 56px;
            background: #f0f9ff;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-primary);
        }

        .glyph-pod svg {
            width: 28px;
            height: 28px;
        }

        .crux-node {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--color-dark);
        }

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

        /* ==========================================================================
           Detail Section (Grid Recommendations)
           ========================================================================== */
        .flare {
            padding: 6rem 2rem;
            background-color: var(--color-bg-alt);
            border-top: 1px solid var(--color-border);
            border-bottom: 1px solid var(--color-border);
        }

        .flare-mesh {
            max-width: 1200px;
            margin: 0 auto;
        }

        .hive-detail {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .shard-detail {
            background: var(--color-dark);
            border-radius: var(--radius-lg);
            padding: 2rem;
            box-shadow: var(--shadow-dark);
            border: 1px solid var(--color-border-dark);
            transition: transform var(--transition-base);
            min-width: 0;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
        }

        .shard-detail::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--color-primary);
            opacity: 0.8;
        }

        .shard-detail:hover {
            transform: translateY(-5px);
        }

        .shard-detail .glyph-pod {
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff;
            margin-bottom: 1.5rem;
        }

        .shard-detail .crux-node {
            color: #ffffff;
            margin-bottom: 0.75rem;
        }

        .shard-detail .lore-node {
            color: #94a3b8;
        }

        /* ==========================================================================
           Closing Info Section
           ========================================================================== */
        .vault-closing {
            padding: 6rem 2rem;
            background: linear-gradient(180deg, var(--color-bg-base) 0%, #f0f9ff 100%);
            text-align: center;
        }

        .vault-mesh {
            max-width: 800px;
            margin: 0 auto;
            background: var(--color-bg-base);
            padding: 4rem 2rem;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            border: 1px solid rgba(55, 185, 233, 0.2);
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 0;
        }

        .vault-glyph {
            width: 64px;
            height: 64px;
            background: rgba(55, 185, 233, 0.1);
            color: var(--color-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        
        .vault-glyph svg {
            width: 32px;
            height: 32px;
        }

        /* ==========================================================================
           Footer
           ========================================================================== */
        .heel {
            background: var(--color-dark);
            color: #94a3b8;
            padding: 4rem 2rem 2rem;
            font-size: 0.9rem;
        }

        .heel-mesh {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
            border-bottom: 1px solid var(--color-border-dark);
            padding-bottom: 2rem;
            margin-bottom: 2rem;
        }

        .echo-brand {
            font-size: 1.5rem;
            font-weight: 800;
            color: #ffffff;
            letter-spacing: -0.02em;
        }

        .echo-knot {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            min-width: 0;
        }

        .wire-heel {
            color: #94a3b8;
            transition: color var(--transition-base);
        }

        .wire-heel:hover {
            color: #ffffff;
        }

        .heel-tail {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 1rem;
        }

        /* ==========================================================================
           Responsive Design
           ========================================================================== */
        @media (max-width: 768px) {
            .brow-mesh {
                flex-direction: column;
                gap: 1rem;
                padding: 1rem;
            }
            .flow {
                justify-content: center;
                gap: 1rem;
            }
            .nova {
                padding: 3rem 1.5rem;
            }
            .nova-mesh {
                gap: 2rem;
            }
            .pulse, .flare, .vault-closing {
                padding: 4rem 1.5rem;
            }
            .knot-capability, .hive-detail {
                grid-template-columns: 1fr;
            }
            .heel-mesh {
                flex-direction: column;
                text-align: center;
            }
            .echo-knot {
                justify-content: center;
            }
        }

.orbit-brow {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    color: #334155;
}
.orbit-brow,
.orbit-brow *,
.orbit-brow *::before,
.orbit-brow *::after {
    box-sizing: border-box;
}

.orbit-brow [role="navigation"],
.orbit-brow div,
.orbit-brow section,
.orbit-brow article,
.orbit-brow aside,
.orbit-brow p,
.orbit-brow h1,
.orbit-brow h2,
.orbit-brow h3,
.orbit-brow h4,
.orbit-brow h5,
.orbit-brow h6,
.orbit-brow a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

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

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

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

.orbit-brow a.orbit-wire {
    --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;
}

.orbit-brow a.orbit-wire,
.orbit-brow a.orbit-wire:hover,
.orbit-brow a.orbit-wire:focus,
.orbit-brow a.orbit-wire:active,
.orbit-brow a.orbit-wire.active,
.orbit-brow 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-brow{
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid #e2e8f0;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
        }

.orbit-brow .orbit-brow-mesh{
            max-width: 1300px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
        }

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

.orbit-brow .orbit-sigil{
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }

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

.orbit-brow .orbit-sigil img{
            height: 36px;
            width: auto;
            display: block;
        }

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

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

.orbit-brow .orbit-wire{
            font-size: 0.95rem;
            font-weight: 600;
            color: #64748b;
            transition: color 0.25s ease;
            position: relative;
        }

.orbit-brow .orbit-wire:hover, .orbit-brow .orbit-wire.active{
            color: #37b9e9;
        }

.orbit-brow .orbit-wire.active::after{
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #37b9e9;
            border-radius: 2px;
        }

.orbit-brow {
    background: rgb(255, 255, 255);
    background-image: none;
}

.root-heel {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.7;
    color: #334155;
}
.root-heel,
.root-heel *,
.root-heel *::before,
.root-heel *::after {
    box-sizing: border-box;
}

.root-heel [role="navigation"],
.root-heel div,
.root-heel section,
.root-heel article,
.root-heel aside,
.root-heel p,
.root-heel h1,
.root-heel h2,
.root-heel h3,
.root-heel h4,
.root-heel h5,
.root-heel h6,
.root-heel a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

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

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

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

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

.root-heel .root-wire{
            font-size: 0.95rem;
            font-weight: 600;
            color: #64748b;
            transition: color 0.25s ease;
            position: relative;
        }

.root-heel .root-wire:hover, .root-heel .root-wire.active{
            color: #37b9e9;
        }

.root-heel .root-wire.active::after{
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #37b9e9;
            border-radius: 2px;
        }

.root-heel{
            background: #020617;
            color: #64748b;
            padding: 5rem 2rem 2rem 2rem;
            word-break: break-word;
            font-size: 0.95rem;
        }

.root-heel .root-root-mesh{
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 4rem;
            margin-bottom: 4rem;
        }

.root-heel .root-root-col{
            display: flex;
            flex-direction: column;
            flex-wrap: wrap;
            gap: 1.25rem;
        }

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

.root-heel .root-crux-root{
            color: #f8fafc;
            font-weight: 700;
            font-size: 1.1rem;
            margin: 0 0 0.5rem 0;
        }

.root-heel .root-root-col .root-wire{
            color: #94a3b8;
            font-weight: 400;
        }

.root-heel .root-root-col .root-wire:hover{
            color: #37b9e9;
        }

.root-heel .root-tail{
            max-width: 1300px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid #1e293b;
            text-align: center;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
            align-items: center;
        }

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