: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;
            --radius-pill: 9999px;
            --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            --transition: all 0.35s ease;
        }

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

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

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

        /* Nav Shell */
        .helm {
            position: sticky;
            top: 0;
            z-index: 50;
            background: rgba(5, 5, 8, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--color-border);
            display: flex;
            justify-content: center;
        }

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

        .helm-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 4rem;
            flex-wrap: wrap;
        }

        .sigil img {
            height: 28px;
            width: auto;
            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,
        .bond.active,
        .bond.active {
            color: var(--color-text-main);
        }

        /* Main Container */
        .tunnel {
            display: flex;
            flex-direction: column;
            width: 100%;
        }

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

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

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

        /* Hero Variant */
        .nexus {
            padding: 8rem 0 6rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            background: radial-gradient(ellipse at top, rgba(195, 58, 222, 0.12) 0%, transparent 70%);
            gap: 2rem;
        }

        .nexus-shell {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
            max-width: 800px;
            z-index: 2;
        }

        .nexus-apex {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            line-height: 1.1;
        }

        .nexus .rune {
            font-size: clamp(1.1rem, 2vw, 1.25rem);
            max-width: 680px;
        }

        .nexus-visual {
            position: relative;
            width: 100%;
            max-width: 600px;
            height: 300px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 2rem;
        }

        .core-graphic {
            width: 100%;
            height: 100%;
            overflow: visible;
        }

        .core-ring {
            transform-origin: center;
            animation: spin 20s linear infinite;
        }
        .core-ring-reverse {
            transform-origin: center;
            animation: spin-reverse 25s linear infinite;
        }

        @keyframes spin { 100% { transform: rotate(360deg); } }
        @keyframes spin-reverse { 100% { transform: rotate(-360deg); } }

        /* Guide / Steps Variant */
        .surge {
            padding: 6rem 0;
            display: flex;
            flex-direction: column;
            gap: 4rem;
        }

        .surge-crown {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            max-width: 700px;
        }

        .surge-apex {
            font-size: clamp(2rem, 4vw, 3rem);
        }

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

        .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.5rem;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

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

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

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

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

        .glyph {
            width: 24px;
            height: 24px;
        }

        .packet-apex {
            font-size: 1.25rem;
            font-weight: 600;
        }

        /* Matrix / Proof Variant */
        .portal {
            padding: 6rem 0 8rem;
            display: flex;
            flex-direction: column;
            gap: 4rem;
        }

        .portal-crown {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .portal-apex {
            font-size: clamp(2rem, 4vw, 3rem);
        }

        .portal-rune {
            max-width: 700px;
        }

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

        .shard {
            background-color: var(--color-bg-surface);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-md);
            padding: 3rem;
            display: flex;
            flex-direction: column;
            gap: 2rem;
            position: relative;
        }

        .shard-apex {
            font-size: 2rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .shard-apex .glyph {
            width: 32px;
            height: 32px;
            color: var(--color-primary);
        }

        .cluster {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
            list-style: none;
        }

        .blip {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            color: var(--color-text-muted);
        }

        .blip-glyph {
            width: 20px;
            height: 20px;
            color: var(--color-primary);
            flex-shrink: 0;
            margin-top: 0.15rem;
        }

        .stream {
            height: 1px;
            width: 100%;
            background: linear-gradient(90deg, transparent, var(--color-border), transparent);
            margin: 1rem 0;
        }

        /* Buttons */
        .warp {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2.5rem;
            border-radius: var(--radius-pill);
            font-weight: 600;
            background-color: var(--color-primary);
            color: #fff;
            border: 1px solid transparent;
            box-shadow: 0 4px 20px rgba(195, 58, 222, 0.3);
            cursor: pointer;
            gap: 0.5rem;
        }

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

        /* Footer */
        .depth {
            border-top: 1px solid var(--color-border);
            padding: 4rem 0 2rem;
            background-color: rgba(15, 16, 22, 0.5);
        }

        .tail-inner {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }

        .tail-brand {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--color-text-main);
            letter-spacing: -0.02em;
        }

        .tail-links {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .tail-rune {
            color: var(--color-text-muted);
            font-size: 0.875rem;
        }

        @media (max-width: 768px) {
            .array {
                display: none; /* Mobile nav behavior simplified for layout */
            }
            .nexus {
                padding: 5rem 0 4rem;
            }
            .nexus-visual {
                height: 200px;
            }
            .packet, .shard {
                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;
            }}