/* ==========================================================================
           Visual Family & Variables (Inherited from Homepage)
           ========================================================================== */
        :root {
            --brand-primary: #6c48e2;
            --brand-hover: #8363f0;
            --bg-base: #07080c;
            --bg-surface: #10121a;
            --bg-surface-elevated: #181b27;
            --bg-surface-glass: rgba(24, 27, 39, 0.7);
            --text-apex: #ffffff;
            --text-vox: #cbd5e1;
            --text-muted: #8b949e;
            --radius-sm: 6px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --shadow-base: 0 4px 20px rgba(0,0,0,0.3);
            --shadow-glow: 0 4px 15px rgba(108, 72, 226, 0.3);
            --transition: 0.25s ease;
            --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            --layout-max-width: 1200px;
        }

        /* ==========================================================================
           Reset & Core Layout Rules
           ========================================================================== */
        *, *::before, *::after {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            padding: 0;
            background-color: var(--bg-base);
            color: var(--text-vox);
            font-family: var(--font-stack);
            font-size: 16px;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        /* Enforce Word Break & Flex Rules */
        .vox, .apex, p, h1, h2, h3, h4, li, dd {
            word-break: break-word;
            overflow-wrap: break-word;
        }
        h1, h2, h3, h4, h5, h6 {
            white-space: normal;
        }
        
        .cluster-flex {
            display: flex;
            flex-wrap: wrap;
        }
        .cluster-flex > * {
            min-width: 0; /* Prevent flex blowout */
        }

        /* Layout Mesh */
        .mesh-fluid {
            width: 100%;
            max-width: var(--layout-max-width);
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* ==========================================================================
           Header & Navigation (Strictly Cloned structure)
           ========================================================================== */
        .crown-hull {
            position: sticky;
            top: 0;
            z-index: 100;
            background: var(--bg-surface-glass);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            padding: 1rem 0;
        }

        .cluster-between {
            justify-content: space-between;
            align-items: center;
        }

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

        .orbit-thread {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
        }
        .orbit-thread > * {
            min-width: 0;
        }

        .wire {
            color: var(--text-vox);
            text-decoration: none;
            font-weight: 500;
            transition: color var(--transition);
            font-size: 0.95rem;
        }

        .wire:hover, .wire:focus {
            color: var(--text-apex);
        }

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

        /* ==========================================================================
           Typography
           ========================================================================== */
        .apex-mega {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 800;
            line-height: 1.1;
            color: var(--text-apex);
            letter-spacing: -0.02em;
            margin: 0 0 1.5rem 0;
        }

        .apex-primary {
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            font-weight: 700;
            color: var(--text-apex);
            margin: 0 0 1rem 0;
            line-height: 1.2;
        }

        .apex-secondary {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--text-apex);
            margin: 0 0 0.75rem 0;
        }

        .vox-lead {
            font-size: 1.125rem;
            color: var(--text-muted);
            margin: 0 0 2rem 0;
            line-height: 1.7;
        }

        /* ==========================================================================
           Blocks & Zones
           ========================================================================== */
        .nova-zone {
            padding-top: calc(5rem + 40px);
            padding-bottom: 6rem;
            position: relative;
            overflow: hidden;
        }
        
        /* Subtle Background Glow */
        .nova-zone::before {
            content: '';
            position: absolute;
            top: -10%;
            left: -10%;
            width: 50%;
            height: 50%;
            background: radial-gradient(circle, rgba(108, 72, 226, 0.15) 0%, rgba(7, 8, 12, 0) 70%);
            z-index: -1;
            pointer-events: none;
        }

        .nexus-zone {
            padding: 5rem 0;
            background-color: var(--bg-surface);
            border-top: 1px solid rgba(255,255,255,0.03);
            border-bottom: 1px solid rgba(255,255,255,0.03);
        }

        .hive-zone {
            padding: 6rem 0;
        }

        /* ==========================================================================
           Creative Seed: Asymmetric Grid Layout
           ========================================================================== */
        .cluster-asymmetric {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        /* Visual Offset for asymmetry */
        .cluster-asymmetric .pod-visual {
            transform: translateY(30px);
        }

        /* ==========================================================================
           Components (Pods, Nodes, Cells)
           ========================================================================== */
        .node-pod {
            background: linear-gradient(145deg, var(--bg-surface), var(--bg-surface-elevated));
            border-radius: var(--radius-lg);
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: var(--shadow-base), inset 0 1px 0 rgba(255,255,255,0.05);
            padding: 2.5rem;
            transition: transform var(--transition), box-shadow var(--transition);
        }

        .node-pod:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-glow);
            border-color: rgba(108, 72, 226, 0.3);
        }

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

        .cell-bead {
            background: var(--bg-surface-elevated);
            border-radius: var(--radius-md);
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: background var(--transition);
        }
        
        .cell-bead:hover {
            background: var(--bg-surface);
            border-color: rgba(108, 72, 226, 0.2);
        }

        /* ==========================================================================
           Lists & Data Structures (Editorial Mix)
           ========================================================================== */
        /* Ordered Step List */
        .thread-steps {
            list-style: none;
            padding: 0;
            margin: 0;
            counter-reset: counter;
        }

        .bead-step {
            position: relative;
            padding-left: 3.5rem;
            margin-bottom: 2rem;
        }
        
        .bead-step:last-child {
            margin-bottom: 0;
        }

        .bead-step::before {
            counter-increment: counter;
            content: counter(counter);
            position: absolute;
            left: 0;
            top: -2px;
            width: 2.5rem;
            height: 2.5rem;
            background: rgba(108, 72, 226, 0.1);
            color: var(--brand-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            border: 1px solid rgba(108, 72, 226, 0.3);
        }

        /* Definition List for Config */
        .thread-config {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin: 0;
        }

        .bead-term {
            font-weight: 600;
            color: var(--text-apex);
            background: rgba(255,255,255,0.03);
            padding: 1rem 1.5rem;
            border-radius: var(--radius-sm) var(--radius-sm) 0 0;
            border-left: 3px solid var(--brand-primary);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .bead-desc {
            margin: 0;
            padding: 1.25rem 1.5rem;
            background: var(--bg-surface-elevated);
            border-radius: 0 0 var(--radius-sm) var(--radius-sm);
            color: var(--text-muted);
            border: 1px solid rgba(255,255,255,0.03);
            border-top: none;
        }

        /* Code snippets */
        .vox-code {
            font-family: monospace;
            background: var(--bg-base);
            padding: 0.2rem 0.4rem;
            border-radius: 4px;
            color: #a58cf0;
            font-size: 0.9em;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .band-command {
            display: block;
            background: var(--bg-base);
            padding: 1rem;
            border-radius: var(--radius-sm);
            font-family: monospace;
            color: #a58cf0;
            margin-top: 1rem;
            border: 1px dashed rgba(108, 72, 226, 0.4);
            user-select: all;
        }

        /* ==========================================================================
           Icons (Glyphs)
           ========================================================================== */
        .glyph {
            width: 24px;
            height: 24px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        
        .glyph-large {
            width: 48px;
            height: 48px;
            color: var(--brand-primary);
            margin-bottom: 1rem;
            background: rgba(108, 72, 226, 0.1);
            padding: 10px;
            border-radius: var(--radius-sm);
        }

        /* ==========================================================================
           Footer
           ========================================================================== */
        .sole-root {
            background: var(--bg-surface);
            border-top: 1px solid rgba(255,255,255,0.05);
            padding: 4rem 0 2rem;
            text-align: center;
        }

        .sole-brand {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--text-apex);
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
        }

        .sole-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }
        .sole-links > * {
            min-width: 0;
        }

        .sole-links .wire {
            color: var(--text-muted);
        }
        .sole-links .wire:hover {
            color: var(--brand-primary);
        }

        .sole-vox {
            color: rgba(139, 148, 158, 0.6);
            font-size: 0.875rem;
        }

        /* ==========================================================================
           Responsive Design
           ========================================================================== */
        @media (max-width: 992px) {
            .cluster-asymmetric {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            .cluster-asymmetric .pod-visual {
                transform: none;
            }
        }

        @media (max-width: 768px) {
            .crown-hull {
                padding: 1rem 0;
            }
            .orbit-thread {
                display: none; /* In a real app, this would be a hamburger toggle */
            }
            /* Fallback for generated static page without JS hamburger */
            .orbit-thread {
                display: flex;
                width: 100%;
                margin-top: 1rem;
                gap: 1rem;
                justify-content: center;
                border-top: 1px solid rgba(255,255,255,0.1);
                padding-top: 1rem;
            }
            .nova-zone {
                padding-top: 3rem;
                padding-bottom: 4rem;
            }
            .nexus-zone, .hive-zone {
                padding: 4rem 0;
            }
        }

.orbit-crown-hull .orbit-mesh-fluid{
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }

.orbit-crown-hull .orbit-cluster-flex{
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }

.orbit-crown-hull .orbit-cluster-between{
            align-items: center;
            justify-content: space-between;
        }

.orbit-crown-hull{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background: rgba(24, 27, 39, 0.7);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            padding: 1rem 0;
        }

.orbit-crown-hull .orbit-sigil{
            display: flex;
            align-items: center;
            height: 36px;
        }

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

.orbit-crown-hull .orbit-orbit-thread{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }

.orbit-crown-hull .orbit-wire{
            font-size: 0.95rem;
            font-weight: 500;
            color: #8b949e;
            padding: 0.5rem 0;
            position: relative;
        }

.orbit-crown-hull .orbit-wire::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #9074f5;
            transition: width 0.25s ease;
        }

.orbit-crown-hull .orbit-wire:hover, .orbit-crown-hull .orbit-wire:focus{
            color: #ffffff;
        }

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

.orbit-crown-hull .orbit-wire.active{
            color: #ffffff;
        }

@media (max-width: 768px){.orbit-crown-hull{
                padding: 0.5rem 0;
            }

.orbit-crown-hull .orbit-orbit-thread{
                display: none; 
            }

.orbit-crown-hull .orbit-orbit-thread{
                display: flex;
                flex-wrap: wrap;
                gap: 0.5rem 1rem;
                margin-top: 0.5rem;
                width: 100%;
            }

.orbit-crown-hull .orbit-cluster-between{
                flex-direction: column;
                align-items: flex-start;
            }}

.orbit-crown-hull {
    background: rgb(24, 27, 39);
    background-image: none;
}

.base-sole-zone,
.base-sole-zone *,
.base-sole-zone *::before,
.base-sole-zone *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.base-sole-zone .base-vox-body{
            font-size: 1rem;
            color: #cbd5e1;
            line-height: 1.7;
        }

.base-sole-zone .base-mesh-fluid{
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }

.base-sole-zone .base-cluster-flex{
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }

.base-sole-zone{
            padding: 4rem 0 2rem;
            background: #07080c;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

.base-sole-zone .base-root-grid{
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

.base-sole-zone .base-root-brand{
            font-size: 1.5rem;
            font-weight: 800;
            color: #ffffff;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }

.base-sole-zone .base-root-apex{
            font-size: 1rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 1rem;
        }

.base-sole-zone .base-root-thread{
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

.base-sole-zone .base-root-wire{
            color: #8b949e;
            font-size: 0.9rem;
        }

.base-sole-zone .base-root-wire:hover{
            color: #9074f5;
        }

.base-sole-zone .base-base-band{
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 2rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            color: #8b949e;
            font-size: 0.85rem;
        }

@media (max-width: 1024px){.base-sole-zone .base-root-grid{
                grid-template-columns: 1fr 1fr;
            }}

@media (max-width: 768px){.base-sole-zone .base-root-grid{
                grid-template-columns: 1fr;
            }}