/* Base & Reset */
        :root {
            --bg: #09090b;
            --surface: #121214;
            --surface-hover: #18181b;
            --border: #27272a;
            --border-light: #3f3f46;
            --primary: #d44b3e;
            --primary-glow: rgba(212, 75, 62, 0.2);
            --text: #f4f4f5;
            --text-muted: #a1a1aa;
            --text-dark: #71717a;
            --radius: 8px;
            --radius-lg: 12px;
            --transition: 0.35s ease;
            --max-width: 1280px;
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        /* Enforced Flex/Grid Rules */
        .cluster, 
        .route, 
        .portal-split, 
        .vault-layout {
            display: flex;
            flex-wrap: wrap;
        }

        .cluster > *, 
        .route > *, 
        .portal-split > *, 
        .vault-layout > * {
            min-width: 0;
        }

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

        .cipher {
            color: var(--text-muted);
        }

        .apex-1 { font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.1; margin-bottom: 1.5rem; }
        .apex-2 { font-size: clamp(2rem, 4vw, 2.75rem); line-height: 1.2; margin-bottom: 1rem; }
        .apex-3 { font-size: clamp(1.25rem, 2vw, 1.5rem); line-height: 1.3; margin-bottom: 0.75rem; }
        
        .cipher-lead { font-size: clamp(1.125rem, 1.5vw, 1.25rem); line-height: 1.6; margin-bottom: 2rem; color: var(--text-muted); }

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

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

        .band::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; height: 1px;
            background: linear-gradient(90deg, transparent, var(--border), transparent);
        }

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

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

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

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

        .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: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--primary);
            border-radius: 2px;
        }

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

        .key:hover {
            background-color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px -5px rgba(255, 255, 255, 0.1);
        }

        .key.primary {
            background-color: var(--primary);
            color: #ffffff;
        }

        .key.primary:hover {
            background-color: var(--primary-hover);
            box-shadow: 0 10px 30px -5px var(--primary-glow);
        }

        .key.outline {
            background-color: transparent;
            color: var(--text);
            border-color: var(--border-light);
        }

        .key.outline:hover {
            background-color: var(--surface-hover);
            border-color: var(--text-muted);
        }

        /* Hero Portal (Reverse Split Blueprint) */
        .portal {
            padding-top: 4rem;
            padding-bottom: 4rem;
            overflow: hidden;
            position: relative;
        }

        .portal-split {
            flex-direction: row-reverse;
            align-items: center;
        }

        /* Left visual dominant, bleeding to left edge */
        .portal-lens {
            flex: 0 0 60%;
            position: relative;
            min-height: 600px;
            background: radial-gradient(circle at center, var(--surface-hover) 0%, transparent 70%);
            border-right: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        /* UI Mockup in place of image */
        .data-ui {
            width: 80%;
            height: 70%;
            background: rgba(18, 18, 20, 0.6);
            border: 1px solid var(--border);
            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);
            display: flex;
            flex-direction: column;
            padding: 2rem;
            position: relative;
        }

        .data-ui::before {
            content: '';
            position: absolute;
            top: -1px; left: 10%; width: 40%; height: 1px;
            background: linear-gradient(90deg, transparent, var(--primary), transparent);
        }

        .ui-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid var(--border);
        }

        .ui-dot {
            width: 12px; height: 12px;
            border-radius: 50%;
            background: var(--primary);
            box-shadow: 0 0 15px var(--primary);
            position: relative;
        }
        .ui-dot::after {
            content: ''; position: absolute; top: -4px; left: -4px; right: -4px; bottom: -4px;
            border-radius: 50%; border: 1px solid var(--primary); animation: pulse 2s infinite;
        }

        @keyframes pulse { 0% { transform: scale(0.8); opacity: 1; } 100% { transform: scale(1.5); opacity: 0; } }

        .ui-lines { display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
        .ui-line { height: 8px; background: var(--border); border-radius: 4px; width: 100%; }
        .ui-line:nth-child(1) { width: 40%; background: var(--text-muted); }
        .ui-line:nth-child(2) { width: 70%; }
        .ui-line:nth-child(3) { width: 55%; }

        /* Right text narrow */
        .portal-veil {
            flex: 0 0 40%;
            padding-right: clamp(2rem, 5vw, 6rem);
            padding-left: max(2rem, calc((100vw - var(--max-width)) / 2));
            z-index: 10;
        }

        .seal {
            display: inline-flex;
            align-items: center;
            padding: 0.25rem 0.75rem;
            background: rgba(255,255,255,0.05);
            border: 1px solid var(--border);
            border-radius: 20px;
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 1.5rem;
        }

        .seal span { color: var(--primary); margin-right: 0.5rem; }

        .surge-cluster {
            display: flex;
            gap: 1rem;
            margin-top: 2.5rem;
        }

        /* Capabilities (Features Grid) */
        .capability-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .vault {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 2.5rem;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .vault:hover {
            border-color: var(--border-light);
            background: var(--surface-hover);
            transform: translateY(-4px);
        }

        .rune {
            width: 48px;
            height: 48px;
            background: rgba(255,255,255,0.03);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--text);
        }

        .rune svg { width: 24px; height: 24px; stroke-width: 1.5; }

        /* Hub Layout (Bento Grid) */
        .hub-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .hub-vault {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 2.5rem;
            display: flex;
            flex-direction: column;
            text-decoration: none;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .hub-vault::before {
            content: ''; position: absolute; top: 0; right: 0; width: 100px; height: 100px;
            background: radial-gradient(circle at top right, var(--border-light), transparent 70%);
            opacity: 0; transition: var(--transition);
        }

        .hub-vault:hover { border-color: var(--text-muted); }
        .hub-vault:hover::before { opacity: 0.5; }

        .hub-vault .wire {
            margin-top: auto;
            padding-top: 1.5rem;
            color: var(--text);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .hub-vault .wire svg { transition: transform 0.3s ease; }
        .hub-vault:hover .wire svg { transform: translateX(4px); }

        .span-8 { grid-column: span 8; }
        .span-4 { grid-column: span 4; }
        .span-6 { grid-column: span 6; }

        /* Scenarios */
        .scenarios-index {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .scenario-bit {
            display: flex;
            gap: 2rem;
            padding: 2rem;
            background: transparent;
            border: 1px solid var(--border);
            border-left: 4px solid var(--border);
            border-radius: var(--radius);
            transition: var(--transition);
        }

        .scenario-bit:hover {
            border-left-color: var(--primary);
            background: rgba(255,255,255,0.02);
        }

        .scenario-veil { flex: 1; }
        
        .scenario-meta {
            font-family: monospace;
            font-size: 0.85rem;
            color: var(--text-dark);
            margin-top: 1rem;
            display: flex;
            gap: 1.5rem;
        }

        /* Acquire (CTA) */
        .acquire-box {
            background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 5rem 3rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .acquire-box::after {
            content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
            width: 60%; height: 1px; background: linear-gradient(90deg, transparent, var(--primary), transparent);
            box-shadow: 0 -10px 40px 10px var(--primary-glow);
        }

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

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

        .crypt-brand {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text);
            letter-spacing: -0.02em;
        }

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

        /* Responsive */
        @media (max-width: 1024px) {
            .portal-split { flex-direction: column; }
            .portal-veil { flex: 1; padding: 2rem; text-align: center; }
            .portal-lens { flex: 1; width: 100%; border-right: none; border-bottom: 1px solid var(--border); min-height: 400px; }
            .surge-cluster { justify-content: center; }
            .span-8, .span-4 { grid-column: span 12; }
        }

        @media (max-width: 768px) {
            .span-6 { grid-column: span 12; }
            .scenario-bit { flex-direction: column; gap: 1rem; }
            .index { display: none; /* simple mobile nav hide for structure */ }
            .surge-cluster { flex-direction: column; }
            .key { width: 100%; }
        }

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