/* CSS Variables - Bright, modern download site style */
        :root {
            --primary: #f1bb65;
            --primary-glow: rgba(241, 187, 101, 0.4);
            --dark: #0f172a;
            --dark-muted: #334155;
            --light: #f8fafc;
            --surface: #ffffff;
            --border: #e2e8f0;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 20px;
            --shadow-sm: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -1px rgba(15, 23, 42, 0.03);
            --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
            --transition: all 0.25s ease;
            --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        }

        /* Base Reset */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: var(--font-main);
            background-color: var(--light);
            color: var(--dark-muted);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

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

        img, svg {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* Typography */
        .apex-1, .apex-2, .apex-3, .apex-4 {
            color: var(--dark);
            font-weight: 800;
            line-height: 1.2;
            white-space: normal;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        .apex-1 { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.02em; margin-bottom: 1.5rem; }
        .apex-2 { font-size: clamp(2rem, 3.5vw, 2.5rem); letter-spacing: -0.01em; margin-bottom: 1rem; }
        .apex-3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
        .apex-4 { font-size: 1.1rem; margin-bottom: 0.25rem; }

        .cipher-lead {
            font-size: clamp(1.1rem, 2vw, 1.25rem);
            color: var(--dark-muted);
            margin-bottom: 2rem;
            line-height: 1.7;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        .cipher {
            font-size: 1.05rem;
            margin-bottom: 1.5rem;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        .cipher-small {
            font-size: 0.95rem;
            color: #64748b;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        /* Layout Containers */
        .tube {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 5%;
        }

        .veil {
            padding: 6rem 0;
            position: relative;
        }

        /* Header & Nav (Vocabulary: helm, sigil, array, wire) */
        .helm {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            padding: 1rem 5%;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

        .sigil {
            display: flex;
            align-items: center;
            min-width: 0;
        }
        
        .sigil img {
            height: 36px;
            width: auto;
        }

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

        .wire {
            font-weight: 600;
            color: var(--dark-muted);
            font-size: 0.95rem;
            transition: var(--transition);
            position: relative;
            min-width: 0;
        }

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

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

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

        /* Buttons (Vocabulary: warp, spark) */
        .warp {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: var(--primary);
            color: var(--dark);
            font-weight: 700;
            padding: 1rem 2rem;
            border-radius: var(--radius-md);
            transition: var(--transition);
            box-shadow: 0 4px 14px var(--primary-glow);
            border: 2px solid var(--primary);
            min-width: 0;
        }

        .warp:hover, .warp:focus {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px var(--primary-glow);
            background-color: #f3c57a;
        }

        .spark {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: transparent;
            color: var(--dark);
            font-weight: 600;
            padding: 1rem 2rem;
            border-radius: var(--radius-md);
            transition: var(--transition);
            border: 2px solid var(--border);
            min-width: 0;
        }

        .spark:hover, .spark:focus {
            border-color: var(--dark);
            background-color: var(--light);
        }

        .warp-ghost {
            display: inline-flex;
            align-items: center;
            color: var(--primary);
            font-weight: 700;
            font-size: 1.05rem;
            transition: var(--transition);
            min-width: 0;
        }
        
        .warp-ghost::after {
            content: '→';
            margin-left: 8px;
            transition: var(--transition);
        }

        .warp-ghost:hover {
            color: #d9a04a;
        }
        
        .warp-ghost:hover::after {
            transform: translateX(4px);
        }

        /* Hero Blueprint: reverse_split */
        /* Left Image (Dominant, 60%), Right Text (40%, Narrow) */
        .portal {
            display: grid;
            grid-template-columns: 58% 42%;
            min-height: 85vh;
            background-color: var(--surface);
            border-bottom: 1px solid var(--border);
            overflow: hidden;
        }

        .lens-dominant {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            position: relative;
        }

        .cipher-narrow {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 4rem 10% 4rem 8%;
        }

        .pod-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 2rem;
        }

        /* Feature Split Layouts */
        .pod-split {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 4rem;
        }

        .pod-split > * {
            flex: 1;
            min-width: 300px;
        }

        .pod-split.reverse {
            flex-direction: row-reverse;
        }

        /* Image Formatting */
        .lens-veil {
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            position: relative;
            background-color: var(--surface);
            border: 1px solid var(--border);
            min-width: 0;
        }

        .lens {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .lens-veil:hover .lens {
            transform: scale(1.02);
        }

        /* Lists & Grids (Vocabulary: array, node, peer) */
        .array-vertical {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .peer {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            min-width: 0;
        }

        .glyph {
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            border-radius: var(--radius-md);
            background: linear-gradient(135deg, var(--primary) 0%, #eab308 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark);
            box-shadow: 0 4px 10px rgba(241, 187, 101, 0.3);
        }

        .glyph-outline {
            flex-shrink: 0;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 2px solid var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
        }

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

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

        .node {
            background: var(--surface);
            padding: 2rem;
            border-radius: var(--radius-md);
            border: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            min-width: 0;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .node-wire {
            background: var(--surface);
            padding: 2.5rem 2rem;
            border-radius: var(--radius-md);
            border: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            min-width: 0;
            display: flex;
            flex-direction: column;
            height: 100%;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .node-wire::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 4px;
            background: var(--primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .node-wire:hover, .node-wire:focus {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            border-color: #cbd5e1;
        }

        .node-wire:hover::before {
            transform: scaleX(1);
        }

        .wire-pulse {
            margin-top: auto;
            padding-top: 1.5rem;
            font-weight: 600;
            color: var(--dark);
            display: inline-flex;
            align-items: center;
        }
        
        .wire-pulse::after {
            content: '→';
            margin-left: 8px;
            color: var(--primary);
            transition: transform 0.25s ease;
        }

        .node-wire:hover .wire-pulse::after {
            transform: translateX(4px);
        }

        .cipher-center {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Specific Sections */
        .vault {
            background-color: var(--surface);
            position: relative;
        }
        
        .vault::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0; height: 1px;
            background: linear-gradient(90deg, transparent, var(--border), transparent);
        }

        .nexus {
            background-color: var(--light);
        }

        .vortex {
            background-color: var(--surface);
            background-image: radial-gradient(circle at 100% 0%, rgba(241, 187, 101, 0.05) 0%, transparent 50%);
        }

        .cloak {
            background-color: var(--dark);
            color: var(--light);
        }
        
        .cloak .apex-2 {
            color: var(--surface);
        }
        
        .cloak .cipher {
            color: #94a3b8;
        }

        /* Footer (Vocabulary: base, root) */
        .base {
            background-color: #020617;
            color: #94a3b8;
            padding: 4rem 0 2rem;
            border-top: 1px solid #1e293b;
        }

        .pod-root {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .root-brand {
            flex: 1;
            min-width: 280px;
        }

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

        .root-helm {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            min-width: 0;
        }

        .wire-foot {
            transition: var(--transition);
        }

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

        .root-bottom {
            border-top: 1px solid #1e293b;
            padding-top: 2rem;
            text-align: center;
        }

        .cipher-tiny {
            font-size: 0.875rem;
        }

        /* Responsive Breakpoints */
        @media (max-width: 1024px) {
            .portal {
                grid-template-columns: 50% 50%;
            }
            .cipher-narrow {
                padding: 3rem 5%;
            }
            .pod-split {
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .portal {
                grid-template-columns: 1fr;
                min-height: auto;
            }
            .lens-dominant {
                min-height: 300px;
                order: 1; /* Keep visual dominant logic by putting it first conceptually, but visual order usually demands text first on mobile. Let's stick to HTML source order which places Image first for reverse_split DOM. */
            }
            .cipher-narrow {
                order: 2;
                padding: 3rem 5%;
                text-align: center;
            }
            .pod-inline {
                justify-content: center;
            }
            .array {
                display: none; /* In a real scenario, this would be a hamburger menu. Keeping simple for output requirements. */
            }
            .helm {
                justify-content: center;
            }
            .pod-split {
                flex-direction: column;
            }
            .pod-split.reverse {
                flex-direction: column;
            }
            .veil {
                padding: 4rem 0;
            }
        }

.helm-helm {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--dark-muted);
}
.helm-helm,
.helm-helm *,
.helm-helm *::before,
.helm-helm *::after {
    box-sizing: border-box;
}

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

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

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

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

.helm-helm a.helm-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;
}

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

.helm-helm{
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid #e2e8f0;
            padding: 1rem 5%;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

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

.helm-helm .helm-sigil img{
            height: 36px;
            width: auto;
        }

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

.helm-helm .helm-wire{
            font-weight: 600;
            color: #334155;
            font-size: 0.95rem;
            transition: all 0.25s ease;
            position: relative;
            min-width: 0;
        }

.helm-helm .helm-wire:hover{
            color: #0f172a;
        }

.helm-helm .helm-wire.active{
            color: #0f172a;
        }

.helm-helm .helm-wire.active::after{
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #f1bb65;
            border-radius: 2px;
        }

@media (max-width: 768px){.helm-helm .helm-array{
                display: none; 
            }

.helm-helm{
                justify-content: center;
            }}

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

.base-base {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--dark-muted);
}
.base-base,
.base-base *,
.base-base *::before,
.base-base *::after {
    box-sizing: border-box;
}

.base-base [role="navigation"],
.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 .base-apex-4{
            color: #0f172a;
            font-weight: 800;
            line-height: 1.2;
            white-space: normal;
            word-break: break-word;
            overflow-wrap: break-word;
        }

.base-base .base-apex-4{ font-size: 1.1rem; margin-bottom: 0.25rem; }

.base-base .base-tube{
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 5%;
        }

.base-base .base-array-vertical{
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-top: 2rem;
        }

.base-base{
            background-color: #020617;
            color: #94a3b8;
            padding: 4rem 0 2rem;
            border-top: 1px solid #1e293b;
        }

.base-base .base-pod-root{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 3rem;
            margin-bottom: 3rem;
        }

.base-base .base-root-brand{
            flex: 1;
            min-width: 280px;
        }

.base-base .base-apex-root{
            color: #ffffff;
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

.base-base .base-root-helm{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            min-width: 0;
        }

.base-base .base-wire-foot{
            transition: all 0.25s ease;
        }

.base-base .base-wire-foot:hover{
            color: #f1bb65;
        }

.base-base .base-root-bottom{
            border-top: 1px solid #1e293b;
            padding-top: 2rem;
            text-align: center;
        }

.base-base .base-cipher-tiny{
            font-size: 0.875rem;
        }