/* CSS Variables - Visual Identity */
        :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-lg: 24px;
            --transition: 0.35s ease;
        }

        /* Reset & Base */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            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: color var(--transition);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        svg {
            display: block;
        }

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

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

        /* Flexbox Utility Rules */
        .cluster {
            display: flex;
            flex-wrap: wrap;
            min-width: 0;
        }

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

        /* Buttons / Actions */
        .pulse {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.875rem 1.5rem;
            border-radius: 9999px;
            font-weight: 600;
            font-size: 1rem;
            transition: all var(--transition);
            cursor: pointer;
            border: 1px solid var(--color-border);
            background: transparent;
            color: var(--color-text-main);
            gap: 0.5rem;
        }

        .pulse:hover {
            border-color: var(--color-text-muted);
            transform: translateY(-2px);
        }

        .warp {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2rem;
            border-radius: 9999px;
            font-weight: 600;
            font-size: 1.125rem;
            transition: all var(--transition);
            cursor: pointer;
            border: 1px solid transparent;
            background-color: var(--color-primary);
            color: #fff;
            box-shadow: 0 4px 20px rgba(195, 58, 222, 0.3);
            gap: 0.75rem;
        }

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

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

        .matrix {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

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

        .helm-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 4.5rem;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .sigil img {
            height: 28px;
            width: auto;
        }

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

        .bond {
            font-size: 0.9375rem;
            font-weight: 500;
            color: var(--color-text-muted);
            position: relative;
            padding: 0.5rem 0;
        }

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

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

        .bond.active::after,
        .bond.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--color-primary);
            border-radius: 2px;
        }

        /* Hero Section */
        .nexus {
            padding: 10rem 0 6rem;
            background: radial-gradient(ellipse at top right, rgba(195, 58, 222, 0.12) 0%, transparent 60%);
            position: relative;
            overflow: hidden;
        }

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

        .nexus-shell {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 4rem;
        }

        .nexus-info {
            flex: 1 1 500px;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

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

        .nexus-apex span {
            color: var(--color-primary);
        }

        .nexus-rune {
            font-size: 1.125rem;
            max-width: 540px;
        }

        .nexus-visual {
            flex: 1 1 500px;
            position: relative;
        }

        .nexus-visual::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: var(--radius-lg);
            box-shadow: inset 0 0 0 1px var(--color-border);
            pointer-events: none;
        }

        .lens-nexus {
            border-radius: var(--radius-lg);
            width: 100%;
            object-fit: cover;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        /* Download Panel Section */
        .surge {
            padding: 6rem 0;
            background-color: var(--color-bg-surface);
            border-top: 1px solid var(--color-border);
        }

        .surge-crown {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

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

        .surge-layout {
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
            align-items: flex-start;
        }

        .surge-media {
            flex: 1 1 400px;
            border-radius: var(--radius-md);
            overflow: hidden;
            border: 1px solid var(--color-border);
            position: sticky;
            top: 6rem;
        }
        
        .surge-media img {
            width: 100%;
            transition: transform var(--transition);
        }

        .surge-media:hover img {
            transform: scale(1.02);
        }

        .surge-grid {
            flex: 1.5 1 500px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }

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

        .packet::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: transparent;
            transition: background var(--transition);
        }

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

        .packet:hover::before {
            background: var(--color-primary);
        }

        .packet-top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }

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

        .packet-apex {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
        }

        .packet-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            font-size: 0.875rem;
            color: var(--color-text-muted);
            border-bottom: 1px solid var(--color-border);
            padding-bottom: 1.5rem;
        }

        .packet-meta span {
            background: rgba(255,255,255,0.05);
            padding: 0.25rem 0.5rem;
            border-radius: 4px;
        }

        /* Deployment Steps Section */
        .portal {
            padding: 6rem 0;
            background: radial-gradient(circle at bottom left, rgba(195, 58, 222, 0.08) 0%, transparent 50%);
        }

        .portal-crown {
            margin-bottom: 4rem;
            max-width: 600px;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

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

        .stream {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            counter-reset: step-counter;
        }

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

        .blip:hover {
            transform: translateY(-4px);
        }

        .blip::before {
            counter-increment: step-counter;
            content: "0" counter(step-counter);
            font-size: 3rem;
            font-weight: 800;
            color: rgba(195, 58, 222, 0.15);
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            line-height: 1;
            pointer-events: none;
        }

        .blip-apex {
            font-size: 1.125rem;
            color: var(--color-text-main);
            position: relative;
            z-index: 1;
        }

        .blip-rune {
            font-size: 0.9375rem;
            position: relative;
            z-index: 1;
        }

        .blip-glyph {
            width: 32px;
            height: 32px;
            color: var(--color-primary);
            margin-bottom: 0.5rem;
        }

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

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

        .anchor-brand {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            max-width: 300px;
        }
        
        .anchor-brand-rune {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--color-text-main);
            letter-spacing: -0.02em;
        }

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

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

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

        .anchor-bond {
            color: var(--color-text-muted);
            font-size: 0.9375rem;
        }

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

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

        /* Responsive */
        @media (max-width: 1024px) {
            .nexus-shell {
                flex-direction: column;
                text-align: center;
            }
            .nexus-info {
                align-items: center;
            }
            .nexus-rune {
                margin: 0 auto;
            }
            .surge-layout {
                flex-direction: column;
            }
            .surge-media {
                position: static;
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            .helm-inner {
                flex-wrap: wrap;
                height: auto;
                padding: 1rem 2rem;
                gap: 1rem;
            }
            .array {
                flex-wrap: wrap;
                gap: 1rem;
                width: 100%;
                justify-content: center;
            }
            .nexus {
                padding: 8rem 0 4rem;
            }
            .surge, .portal {
                padding: 4rem 0;
            }
            .anchor-links {
                gap: 2rem;
                flex-direction: column;
            }
        }

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