:root {
            --color-primary: #c33ade;
            --color-primary-hover: #d94eff;
            --color-bg-base: #050508;
            --color-bg-surface: #0f1016;
            --color-bg-elevated: #181922;
            --color-text-main: #f8fafc;
            --color-text-muted: #94a3b8;
            --color-border: rgba(255, 255, 255, 0.08);
            --radius-sm: 12px;
            --radius-md: 20px;
            --transition: all 0.35s ease;
            --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            min-width: 0; /* Flex safe */
        }

        body {
            font-family: var(--font-stack);
            background-color: var(--color-bg-base);
            color: var(--color-text-main);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            word-break: break-word;
            overflow-wrap: break-word;
        }

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

        /* Nav Layout (Copied & Adapted) */
        .helm {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 50;
            background: rgba(5, 5, 8, 0.8);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--color-border);
        }

        .helm-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 1.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

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

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

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

        .bond:hover {
            color: var(--color-text-main);
        }

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

        /* Typography */
        .apex {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.02em;
            white-space: normal;
            margin-bottom: 1.5rem;
        }

        .apex-sub {
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--color-text-main);
        }

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

        /* Layout Containers */
        .matrix {
            display: flex;
            flex-direction: column;
            width: 100%;
        }

        .tunnel {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
            width: 100%;
        }

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

        /* Components */
        .packet {
            background-color: var(--color-bg-elevated);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-md);
            padding: 2.5rem;
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .packet:hover {
            border-color: rgba(195, 58, 222, 0.3);
            transform: translateY(-4px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

        .packet::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--color-primary), transparent);
            opacity: 0;
            transition: var(--transition);
        }

        .packet:hover::before {
            opacity: 1;
        }

        .glyph {
            width: 48px;
            height: 48px;
            border-radius: var(--radius-sm);
            background: rgba(195, 58, 222, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-primary);
            border: 1px solid rgba(195, 58, 222, 0.2);
        }

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

        .pulse {
            display: inline-flex;
            align-items: center;
            padding: 0.75rem 1.5rem;
            border-radius: 9999px;
            font-weight: 600;
            background-color: var(--color-primary);
            color: #fff;
            box-shadow: 0 4px 20px rgba(195, 58, 222, 0.2);
            border: 1px solid transparent;
            cursor: pointer;
        }

        .pulse:hover {
            background-color: var(--color-primary-hover);
            box-shadow: 0 6px 25px rgba(195, 58, 222, 0.4);
            transform: translateY(-2px);
        }

        .stream {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1rem;
            background: var(--color-bg-surface);
            border-radius: var(--radius-sm);
            border: 1px solid var(--color-border);
        }

        /* Specific Sections */
        .nexus {
            padding: 12rem 0 8rem;
            background: radial-gradient(ellipse at top right, rgba(195, 58, 222, 0.12) 0%, transparent 60%);
            position: relative;
            text-align: center;
        }

        .portal {
            padding: 6rem 0;
            background-color: var(--color-bg-base);
        }

        .surge {
            padding: 6rem 0;
            background-color: var(--color-bg-surface);
            border-top: 1px solid var(--color-border);
            border-bottom: 1px solid var(--color-border);
        }

        .vault {
            padding: 6rem 0;
            background: radial-gradient(ellipse at bottom left, rgba(195, 58, 222, 0.08) 0%, transparent 50%);
        }

        .depth {
            padding: 4rem 0;
            border-top: 1px solid var(--color-border);
            text-align: center;
            background-color: var(--color-bg-surface);
        }

        /* Utility */
        .rune-highlight {
            color: var(--color-primary);
            font-weight: 600;
        }

        .shell-intro {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            align-items: center;
        }

        /* List styling within packets */
        .cluster-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            margin-top: 1rem;
        }

        .blip-list {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--color-text-muted);
            font-size: 0.95rem;
        }

        .blip-list::before {
            content: '';
            display: block;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background-color: var(--color-primary);
        }

        @media (max-width: 768px) {
            .helm-inner {
                flex-direction: column;
                gap: 1rem;
            }
            .array {
                gap: 1rem;
                justify-content: center;
            }
            .nexus {
                padding: 8rem 0 5rem;
            }
            .cluster {
                grid-template-columns: 1fr;
            }
            .packet {
                padding: 1.5rem;
            }
        }

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

.helm-helm nav,
.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-bond.helm-active,
.helm-helm a.helm-bond {
    --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-bond.helm-active,
.helm-helm a.helm-bond.helm-active:hover,
.helm-helm a.helm-bond.helm-active:focus,
.helm-helm a.helm-bond.helm-active:active,
.helm-helm a.helm-bond.helm-active.active,
.helm-helm a.helm-bond.helm-active[aria-current="page"],
.helm-helm a.helm-bond,
.helm-helm a.helm-bond:hover,
.helm-helm a.helm-bond:focus,
.helm-helm a.helm-bond:active,
.helm-helm a.helm-bond.active,
.helm-helm a.helm-bond[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 .helm-helm-inner, .helm-helm .helm-array{
            display: flex;
            flex-wrap: wrap;
        }

.helm-helm .helm-helm-inner > *, .helm-helm .helm-array > *{
            min-width: 0;
        }

.helm-helm .helm-vault{
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 5vw;
        }

.helm-helm{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background: rgba(5, 5, 8, 0.7);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            padding: 1rem 0;
            transition: all 0.35s ease;
        }

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

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

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

.helm-helm .helm-array{
            gap: 1.5rem;
            align-items: center;
        }

.helm-helm .helm-bond{
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: all 0.35s ease;
            white-space: nowrap;
        }

.helm-helm .helm-bond:hover, .helm-helm .helm-bond:focus, .helm-helm .helm-bond.helm-active{
            color: #f8fafc;
        }

.helm-helm .helm-bond.helm-active{
            position: relative;
        }

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

@media (max-width: 768px){.helm-helm .helm-helm-inner{
                flex-direction: column;
                gap: 1rem;
            }

.helm-helm .helm-array{
                width: 100%;
                justify-content: center;
                flex-wrap: nowrap;
                overflow-x: auto;
                padding-bottom: 0.5rem;
                -webkit-overflow-scrolling: touch;
            }}

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

.depth-anchor {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--color-text-main);
}
.depth-anchor,
.depth-anchor *,
.depth-anchor *::before,
.depth-anchor *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.depth-anchor .depth-array, .depth-anchor .depth-anchor-inner{
            display: flex;
            flex-wrap: wrap;
        }

.depth-anchor .depth-array > *, .depth-anchor .depth-anchor-inner > *{
            min-width: 0;
        }

.depth-anchor .depth-rune{
            word-break: break-word;
            overflow-wrap: break-word;
        }

.depth-anchor .depth-rune{
            word-break: keep-all; 
        }

.depth-anchor .depth-vault{
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 5vw;
        }

.depth-anchor .depth-array{
            gap: 1.5rem;
            align-items: center;
        }

.depth-anchor .depth-bond{
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: all 0.35s ease;
            white-space: nowrap;
        }

.depth-anchor .depth-bond:hover, .depth-anchor .depth-bond:focus{
            color: #f8fafc;
        }

.depth-anchor{
            background-color: #030305;
            padding: 5rem 0 3rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

.depth-anchor .depth-anchor-inner{
            justify-content: space-between;
            align-items: flex-start;
            gap: 3rem;
            padding-bottom: 3rem;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            margin-bottom: 3rem;
        }

.depth-anchor .depth-anchor-brand{
            max-width: 300px;
        }

.depth-anchor .depth-anchor-apex{
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
            color: #fff;
        }

.depth-anchor .depth-rune{
            color: #94a3b8;
            font-size: 0.95rem;
        }

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

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

.depth-anchor .depth-anchor-cluster-apex{
            font-size: 1rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 0.5rem;
        }

.depth-anchor .depth-anchor-bottom{
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

@media (max-width: 768px){.depth-anchor .depth-array{
                width: 100%;
                justify-content: center;
                flex-wrap: nowrap;
                overflow-x: auto;
                padding-bottom: 0.5rem;
                -webkit-overflow-scrolling: touch;
            }

.depth-anchor .depth-anchor-inner{
                flex-direction: column;
            }

.depth-anchor .depth-anchor-links{
                gap: 2rem;
                flex-direction: column;
            }

.depth-anchor .depth-anchor-bottom{
                flex-direction: column;
                text-align: center;
            }}