:root {
            --bg: #09090b;
            --surface: #121214;
            --surface-hover: #18181b;
            --primary: #d44b3e;
            --primary-glow: rgba(212, 75, 62, 0.2);
            --primary-dark: #9f362c;
            --text: #f4f4f5;
            --text-muted: #a1a1aa;
            --text-dark: #71717a;
            --radius: 8px;
            --radius-lg: 12px;
            --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            --transition: all 0.35s ease;
        }

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

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

        /* Typography */
        .apex {
            color: var(--text);
            font-weight: 700;
            letter-spacing: -0.02em;
            white-space: normal;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        .apex-1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .apex-2 {
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        .apex-3 {
            font-size: 1.25rem;
            line-height: 1.4;
            margin-bottom: 0.75rem;
        }

        .cipher {
            color: var(--text-muted);
            word-break: break-word;
            overflow-wrap: break-word;
            word-break: keep-all;
        }

        .cipher-lead {
            font-size: 1.125rem;
            margin-bottom: 2rem;
        }

        /* Layout & Containers */
        .hull {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .cluster {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
        }

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

        /* Mandatory Header Styles */
        .brow {
            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);
            padding: 1rem 0;
        }

        .brow .hull {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

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

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

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

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

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

        .wire.active {
            position: relative;
        }

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

        /* Buttons / Keys */
        .key {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.875rem 1.75rem;
            background-color: var(--text);
            color: var(--bg);
            font-weight: 600;
            border-radius: var(--radius);
            border: 1px solid transparent;
            text-decoration: none;
            transition: var(--transition);
            cursor: pointer;
        }

        .key:hover {
            background-color: #d4d4d8;
            transform: translateY(-2px);
        }

        .key-primary {
            background-color: var(--primary);
            color: white;
            box-shadow: 0 4px 14px 0 var(--primary-glow);
        }

        .key-primary:hover {
            background-color: var(--primary-dark);
            box-shadow: 0 6px 20px rgba(212, 75, 62, 0.4);
        }

        /* Surfaces / Vaults */
        .vault {
            background: rgba(18, 18, 20, 0.6);
            border: 1px solid #27272a;
            border-radius: var(--radius-lg);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            padding: 2.5rem;
            transition: var(--transition);
        }

        .vault:hover {
            border-color: rgba(212, 75, 62, 0.3);
            background: rgba(24, 24, 27, 0.8);
        }

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

        .node:hover {
            transform: translateY(-5px);
            border-color: var(--text-dark);
            box-shadow: 0 10px 30px -10px rgba(0,0,0,0.8);
        }

        /* Section Specifics */
        .portal {
            padding: 6rem 0;
            position: relative;
            overflow: hidden;
        }

        .portal::before {
            content: '';
            position: absolute;
            top: -20%;
            right: -10%;
            width: 60%;
            height: 80%;
            background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
            z-index: -1;
            filter: blur(80px);
        }

        .split-veil {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 4rem;
        }

        .split-cipher {
            flex: 1 1 400px;
            min-width: 0;
            z-index: 2;
        }

        .split-lens {
            flex: 1 1 400px;
            min-width: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        /* Abstract SVG Visuals */
        .rune-portal {
            width: 100%;
            max-width: 480px;
            height: auto;
            filter: drop-shadow(0 0 30px rgba(212, 75, 62, 0.3));
        }

        .rune-portal path.glow {
            animation: pulse-glow 3s infinite alternate;
        }

        @keyframes pulse-glow {
            0% { opacity: 0.6; }
            100% { opacity: 1; filter: drop-shadow(0 0 15px var(--primary)); }
        }

        .band {
            padding: 4rem 0;
            background: linear-gradient(to bottom, var(--bg), var(--surface), var(--bg));
            border-top: 1px solid #27272a;
            border-bottom: 1px solid #27272a;
        }

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

        .rune-rune {
            width: 48px;
            height: 48px;
            fill: none;
            stroke: var(--primary);
            stroke-width: 1.5;
            stroke-linecap: round;
            stroke-linejoin: round;
            background: rgba(212, 75, 62, 0.1);
            border-radius: 12px;
            padding: 10px;
            box-shadow: inset 0 0 0 1px rgba(212, 75, 62, 0.2);
        }

        .tunnel {
            padding: 6rem 0;
        }

        .tunnel-vault {
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
            align-items: center;
        }

        .tunnel-data {
            flex: 1 1 300px;
            min-width: 0;
        }

        .tunnel-visual {
            flex: 1 1 300px;
            min-width: 0;
            background: #000;
            border-radius: var(--radius);
            padding: 2rem;
            position: relative;
            overflow: hidden;
            border: 1px solid #27272a;
        }

        .metric {
            font-size: 4rem;
            font-weight: 800;
            background: linear-gradient(135deg, #fff, var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
            margin-bottom: 0.5rem;
            display: block;
        }

        .gate {
            padding: 4rem 0 6rem;
        }

        .trouble-vault {
            border-left: 4px solid var(--primary);
        }

        .rune-alert {
            width: 32px;
            height: 32px;
            stroke: var(--primary);
            margin-bottom: 1rem;
        }

        /* Footer */
        .heel {
            border-top: 1px solid #27272a;
            padding: 4rem 0;
            background: #000;
            text-align: center;
        }

        .heel-cipher {
            color: var(--text-dark);
            font-size: 0.875rem;
            margin-top: 2rem;
        }

        .heel-route {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
            margin-bottom: 1rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .route {
                display: none; /* Mobile menu logic handled by core.js theoretically, hiding for clean static view */
            }
            .apex-1 {
                font-size: 2.2rem;
            }
            .split-veil {
                flex-direction: column-reverse;
                gap: 2rem;
            }
            .portal {
                padding: 3rem 0;
            }
            .vault {
                padding: 1.5rem;
            }
        }

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

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

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

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

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

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

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

.route-brow .route-route{
            display: flex;
            flex-wrap: wrap;
        }

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

.route-brow .route-hull{
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }

.route-brow{
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(9, 9, 11, 0.8);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid #27272a;
            padding: 1rem 0;
        }

.route-brow .route-hull{
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

.route-brow .route-glyph img{
            height: 32px;
            width: auto;
            display: block;
        }

.route-brow .route-index{
            gap: 2rem;
            align-items: center;
        }

.route-brow .route-wire{
            color: #a1a1aa;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: 0.35s ease;
        }

.route-brow .route-wire:hover, .route-brow .route-wire.active{
            color: #f4f4f5;
        }

.route-brow .route-wire.active{
            position: relative;
        }

.route-brow .route-wire.active::after{
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #d44b3e;
            border-radius: 2px;
        }

@media (max-width: 768px){.route-brow .route-index{ display: none;  }}

.route-brow {
    background: rgb(9, 9, 11);
    background-image: none;
}

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

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

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

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

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

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

.crypt-heel .crypt-cipher{
            color: #a1a1aa;
        }

.crypt-heel .crypt-hull{
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }

.crypt-heel .crypt-wire{
            color: #a1a1aa;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: 0.35s ease;
        }

.crypt-heel .crypt-wire:hover, .crypt-heel .crypt-wire.active{
            color: #f4f4f5;
        }

.crypt-heel .crypt-wire.active{
            position: relative;
        }

.crypt-heel .crypt-wire.active::after{
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #d44b3e;
            border-radius: 2px;
        }

.crypt-heel{
            border-top: 1px solid #27272a;
            padding: 4rem 0 2rem;
            background: #09090b;
        }

.crypt-heel .crypt-crypt{
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
        }

.crypt-heel .crypt-crypt-brand{
            font-size: 1.25rem;
            font-weight: 700;
            color: #f4f4f5;
            letter-spacing: -0.02em;
        }

.crypt-heel .crypt-crypt-links{
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }