/* CSS Variables - Dark Immersive Theme */
        :root {
            --color-primary: #e524a1;
            --color-primary-glow: rgba(229, 36, 161, 0.4);
            --color-bg-base: #09090b;
            --color-bg-surface: #121214;
            --color-bg-elevated: #1a1a1e;
            --color-border: #27272a;
            --color-text-peak: #ffffff;
            --color-text-echo: #a1a1aa;
            --radius-base: 16px;
            --radius-inner: 12px;
            --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            --transition-speed: 0.15s;
        }

        /* Reset & Base */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: var(--font-sans);
            background-color: var(--color-bg-base);
            color: var(--color-text-echo);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* Essential Structural Utilities */
        .matrix-fluid {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 6vw;
        }

        .word-break {
            word-break: break-word;
            overflow-wrap: break-word;
        }

        .flex-wrap {
            display: flex;
            flex-wrap: wrap;
        }

        .flex-child {
            min-width: 0;
        }

        /* Typography */
        .peak-massive {
            font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
            font-weight: 800;
            line-height: 1.1;
            color: var(--color-text-peak);
            letter-spacing: -0.03em;
            white-space: normal;
        }

        .peak-major {
            font-size: clamp(2rem, 3vw + 0.5rem, 3rem);
            font-weight: 700;
            line-height: 1.2;
            color: var(--color-text-peak);
            letter-spacing: -0.02em;
            white-space: normal;
        }

        .peak-minor {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--color-text-peak);
            white-space: normal;
            margin-bottom: 0.75rem;
        }

        .echo-lead {
            font-size: clamp(1.125rem, 1.5vw + 0.5rem, 1.25rem);
            line-height: 1.6;
            color: var(--color-text-echo);
        }

        /* Header (Banner) */
        .crown-matrix {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: rgba(9, 9, 11, 0.75);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            padding: 1rem 6vw;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

        .crest-tunnel {
            display: flex;
            align-items: center;
            min-width: 0;
        }

        .crest-tunnel img {
            height: 28px;
            width: auto;
            object-fit: contain;
        }

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

        .wire-dot {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--color-text-echo);
            transition: color var(--transition-speed) ease;
            position: relative;
        }

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

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

        /* Hero Area (Prism) - Fullbleed Overlay */
        .prism-hull {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 8rem 6vw 4rem;
            overflow: hidden;
        }

        .lens-backdrop {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 30%;
            z-index: 1;
            opacity: 0.8;
            filter: saturate(1.2) contrast(1.1);
        }

        .cloak-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                180deg, 
                rgba(9, 9, 11, 0.6) 0%, 
                rgba(9, 9, 11, 0.8) 50%, 
                var(--color-bg-base) 100%
            );
            z-index: 2;
        }

        .prism-cloak {
            position: relative;
            z-index: 3;
            max-width: 900px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
            min-width: 0;
        }

        .prism-cloak .peak-massive {
            text-shadow: 0 4px 24px rgba(0,0,0,0.5);
        }

        .pulse-warp {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2.5rem;
            font-size: 1.125rem;
            font-weight: 600;
            color: #ffffff;
            background: var(--color-primary);
            border-radius: 99px;
            box-shadow: 0 8px 32px var(--color-primary-glow);
            transition: all var(--transition-speed) ease;
            margin-top: 2rem;
            cursor: pointer;
        }

        .pulse-warp:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px var(--color-primary-glow);
            filter: brightness(1.1);
        }

        /* Features Section (Div Capability) */
        .flare-matrix {
            padding: 6rem 0;
            background: var(--color-bg-base);
            position: relative;
            z-index: 10;
        }

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

        .shard-hull {
            background: var(--color-bg-surface);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-base);
            padding: 2.5rem;
            transition: all var(--transition-speed) ease;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            min-width: 0;
        }

        .shard-hull:hover {
            border-color: rgba(229, 36, 161, 0.3);
            background: var(--color-bg-elevated);
            transform: translateY(-5px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.4);
        }

        .glyph-tunnel {
            width: 56px;
            height: 56px;
            border-radius: var(--radius-inner);
            background: rgba(229, 36, 161, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-primary);
            margin-bottom: 1rem;
        }

        .glyph-tunnel svg {
            width: 28px;
            height: 28px;
            fill: currentColor;
        }

        /* Overview/Article Section (Portal Tunnel) */
        .portal-tunnel {
            padding: 8rem 0;
            background: linear-gradient(180deg, var(--color-bg-base) 0%, var(--color-bg-surface) 100%);
            position: relative;
            z-index: 10;
        }

        .portal-split {
            display: flex;
            flex-wrap: wrap;
            gap: 4rem;
            align-items: flex-start;
        }

        .portal-cloak {
            flex: 1 1 500px;
            min-width: 0;
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .portal-visual {
            flex: 1 1 400px;
            min-width: 0;
            position: sticky;
            top: 120px;
            background: var(--color-bg-elevated);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-base);
            padding: 3rem;
            box-shadow: inset 0 0 80px rgba(0,0,0,0.5);
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .band-data {
            height: 8px;
            background: var(--color-border);
            border-radius: 4px;
            width: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .band-data::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 40%;
            background: var(--color-primary);
            border-radius: 4px;
            box-shadow: 0 0 10px var(--color-primary);
        }

        .portal-segment {
            padding-left: 1.5rem;
            border-left: 2px solid var(--color-border);
            transition: border-color var(--transition-speed) ease;
        }

        .portal-segment:hover {
            border-color: var(--color-primary);
        }

        /* CTA Section */
        .matrix-cluster {
            padding: 8rem 0;
            background: var(--color-bg-surface);
            text-align: center;
            border-top: 1px solid var(--color-border);
        }

        .pulse-box {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
            padding: 4rem 2rem;
            background: radial-gradient(circle at center, rgba(229, 36, 161, 0.1) 0%, transparent 70%);
            border-radius: var(--radius-base);
        }

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

        .sole-split {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 3rem;
            margin-bottom: 4rem;
        }

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

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

        .sole-bottom {
            text-align: center;
            font-size: 0.875rem;
            color: #52525b;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .helm-array {
                display: none; /* Simplification for mobile [role="banner"] in this demo */
            }
            .crown-matrix {
                justify-content: center;
            }
            .prism-hull {
                padding-top: 6rem;
            }
            .portal-visual {
                position: static;
            }
            .sole-split {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .sole-links {
                justify-content: center;
            }
        }

.nexus-crown-matrix {
    font-family: var(--font-sans);
    line-height: 1.7;
    color: var(--color-text-echo);
}
.nexus-crown-matrix,
.nexus-crown-matrix *,
.nexus-crown-matrix *::before,
.nexus-crown-matrix *::after {
    box-sizing: border-box;
}

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

.nexus-crown-matrix p,
.nexus-crown-matrix h1,
.nexus-crown-matrix h2,
.nexus-crown-matrix h3,
.nexus-crown-matrix h4,
.nexus-crown-matrix h5,
.nexus-crown-matrix h6 {
    text-decoration: none;
}

.nexus-crown-matrix img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.nexus-crown-matrix {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.nexus-crown-matrix a.nexus-wire-dot {
    --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;
}

.nexus-crown-matrix a.nexus-wire-dot,
.nexus-crown-matrix a.nexus-wire-dot:hover,
.nexus-crown-matrix a.nexus-wire-dot:focus,
.nexus-crown-matrix a.nexus-wire-dot:active,
.nexus-crown-matrix a.nexus-wire-dot.active,
.nexus-crown-matrix a.nexus-wire-dot[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);
}

.nexus-crown-matrix{
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: rgba(9, 9, 11, 0.75);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            padding: 1rem 6vw;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

.nexus-crown-matrix .nexus-crest-tunnel{
            display: flex;
            align-items: center;
            min-width: 0;
        }

.nexus-crown-matrix .nexus-crest-tunnel img{
            height: 28px;
            width: auto;
            object-fit: contain;
        }

.nexus-crown-matrix .nexus-helm-array{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }

.nexus-crown-matrix .nexus-wire-dot{
            font-size: 0.95rem;
            font-weight: 500;
            color: #a1a1aa;
            transition: color 0.15s ease;
            position: relative;
        }

.nexus-crown-matrix .nexus-wire-dot:hover{
            color: #ffffff;
        }

.nexus-crown-matrix .nexus-wire-dot.active{
            color: #e524a1;
        }

@media (max-width: 768px){.nexus-crown-matrix .nexus-helm-array{
                display: none; 
            }

.nexus-crown-matrix{
                justify-content: center;
            }}

.nexus-crown-matrix {
    background: rgb(9, 9, 11);
    background-image: none;
}

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

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

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

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

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

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

.anchor-sole-anchor .anchor-matrix-fluid{
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 6vw;
        }

.anchor-sole-anchor .anchor-wire-dot{
            font-size: 0.95rem;
            font-weight: 500;
            color: #a1a1aa;
            transition: color 0.15s ease;
            position: relative;
        }

.anchor-sole-anchor .anchor-wire-dot:hover{
            color: #ffffff;
        }

.anchor-sole-anchor .anchor-wire-dot.active{
            color: #e524a1;
        }

.anchor-sole-anchor{
            border-top: 1px solid #27272a;
            background: #09090b;
            padding: 4rem 0 2rem;
        }

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

.anchor-sole-anchor .anchor-sole-brand{
            font-size: 1.5rem;
            font-weight: 800;
            color: #ffffff;
            letter-spacing: -0.02em;
        }

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

.anchor-sole-anchor .anchor-sole-bottom{
            text-align: center;
            font-size: 0.875rem;
            color: #52525b;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

@media (max-width: 768px){.anchor-sole-anchor .anchor-sole-split{
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

.anchor-sole-anchor .anchor-sole-links{
                justify-content: center;
            }}