/* CSS Variables - Vercel/Linear Dark Theme Inspired */
        :root {
            --bg: #09090b;
            --surface: #121214;
            --surface-hover: #18181b;
            --primary: #d44b3e;
            --primary-glow: rgba(212, 75, 62, 0.2);
            --primary-dark: #b33d31;
            --text: #f4f4f5;
            --text-muted: #a1a1aa;
            --text-dark: #71717a;
            --border: #27272a;
            --radius: 8px;
            --radius-lg: 12px;
            --radius-full: 9999px;
            --transition: 0.35s ease;
            --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        }

        /* Base Resets */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            min-width: 0; /* Flexbox safe */
        }

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

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

        svg {
            display: block;
        }

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

        .apex-1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            line-height: 1.1;
            background: linear-gradient(135deg, #ffffff 0%, #a1a1aa 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

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

        .apex-3 {
            font-size: 1.25rem;
            line-height: 1.4;
            margin-bottom: 0.5rem;
            color: var(--text);
        }

        .cipher {
            color: var(--text-muted);
            font-size: 1.125rem;
            word-break: keep-all;
        }

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

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

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

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

        /* Navigation Header */
        .brow {
            position: sticky;
            top: 0;
            z-index: 50;
            background: rgba(9, 9, 11, 0.8);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            padding: 1rem 0;
        }

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

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

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

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

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

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

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

        /* 1. Hero / Portal (Section) */
        .portal {
            padding-top: 6rem;
            padding-bottom: 6rem;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }

        .portal::before {
            content: '';
            position: absolute;
            top: -20%;
            left: -10%;
            width: 50vw;
            height: 50vw;
            background: radial-gradient(circle, var(--primary-glow) 0%, transparent 60%);
            z-index: -1;
            opacity: 0.5;
        }

        .portal-split {
            display: flex;
            flex-wrap: wrap;
            gap: 4rem;
            align-items: center;
            width: 100%;
        }

        .portal-cipher {
            flex: 1 1 400px;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .portal-lens {
            flex: 1 1 500px;
            position: relative;
            min-height: 400px;
            background: var(--surface);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border);
            box-shadow: var(--shadow-xl), inset 0 1px 0 rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            transform: translateY(0);
            transition: transform var(--transition), box-shadow var(--transition);
        }

        .portal-lens:hover {
            transform: translateY(-5px);
            box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        /* Abstract Node Map using SVG */
        .node-map {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
        }

        .seal {
            display: inline-flex;
            align-items: center;
            padding: 0.25rem 0.75rem;
            background: rgba(212, 75, 62, 0.1);
            color: var(--primary);
            border: 1px solid rgba(212, 75, 62, 0.2);
            border-radius: var(--radius-full);
            font-size: 0.875rem;
            font-weight: 600;
            align-self: flex-start;
        }

        /* 2. Stats / Proof (Article) */
        .proof {
            background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }
        
        .proof .hull {
            display: flex;
            flex-direction: column;
            gap: 3rem;
            align-items: center;
            text-align: center;
        }

        .proof-brow {
            max-width: 600px;
        }

        .metrics {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            width: 100%;
        }

        .metric-vault {
            background: rgba(18, 18, 20, 0.6);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 2.5rem 2rem;
            backdrop-filter: blur(20px);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            transform: translateY(0);
            transition: transform var(--transition), border-color var(--transition);
        }

        .metric-vault:hover {
            transform: translateY(-5px);
            border-color: rgba(255, 255, 255, 0.15);
        }

        .metric-rune {
            width: 48px;
            height: 48px;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .metric-apex {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text);
            line-height: 1;
        }

        /* 3. Regions / Detail (Div) */
        .detail {
            background-color: var(--bg);
        }

        .detail-brow {
            margin-bottom: 3rem;
            text-align: left;
            max-width: 700px;
        }

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

        .region-vault {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 2rem;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            position: relative;
            overflow: hidden;
            transition: transform var(--transition), box-shadow var(--transition);
        }

        .region-vault::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 150px;
            height: 150px;
            background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
            pointer-events: none;
        }

        .region-vault:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(255,255,255,0.1);
        }

        .region-brow {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .region-rune {
            width: 40px;
            height: 40px;
            border-radius: var(--radius);
            background: rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text);
        }

        .region-band {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: auto;
        }

        .region-bit {
            font-size: 0.85rem;
            padding: 0.25rem 0.75rem;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: var(--radius);
            color: var(--text-muted);
        }

        /* 4. Tech / Capability (Aside) */
        .capability {
            position: relative;
            padding: 6rem 0;
            border-top: 1px solid var(--border);
            overflow: hidden;
        }

        .capability::before {
            content: '';
            position: absolute;
            bottom: -30%;
            right: -10%;
            width: 60vw;
            height: 60vw;
            background: radial-gradient(circle, rgba(255,255,255,0.02) 0%, transparent 60%);
            z-index: -1;
        }

        .capability-split {
            display: flex;
            flex-wrap: wrap;
            gap: 4rem;
            align-items: center;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 3rem;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
        }

        .capability-cipher {
            flex: 1 1 400px;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .capability-lens {
            flex: 1 1 300px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .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;
            cursor: pointer;
            transition: all var(--transition);
            align-self: flex-start;
            gap: 0.5rem;
        }

        .key:hover, .key:focus {
            background-color: #e4e4e7;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255,255,255,0.1);
        }

        /* Footer */
        .heel {
            border-top: 1px solid var(--border);
            background-color: var(--bg);
            padding: 4rem 0 2rem;
        }

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

        .crypt-brand {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 1rem;
        }

        .crypt-cipher {
            color: var(--text-muted);
            max-width: 300px;
            font-size: 0.95rem;
        }

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

        .anchor-col {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .anchor-apex {
            font-weight: 600;
            color: var(--text);
            margin-bottom: 0.5rem;
        }

        .anchor-wire {
            color: var(--text-muted);
            font-size: 0.95rem;
            transition: color var(--transition);
        }

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

        .heel-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            color: var(--text-dark);
            font-size: 0.875rem;
        }

        /* Responsive Breakpoints */
        @media (max-width: 768px) {
            .portal-split,
            .capability-split {
                flex-direction: column;
            }
            .portal-lens {
                min-height: 250px;
                width: 100%;
            }
            .metrics,
            .region-grid {
                grid-template-columns: 1fr;
            }
            .apex-1 {
                font-size: 2.5rem;
            }
            .hull {
                padding: 0 1.5rem;
            }
            .route {
                gap: 1rem;
                flex-direction: column;
                align-items: flex-start;
                width: 100%;
            }
            .brow .hull {
                flex-direction: column;
                align-items: flex-start;
            }
        }

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