/* CSS Reset & Core Variables */
        :root {
            --brand-primary: #de6ebb;
            --brand-dark: #b84fa0;
            --brand-light: #fbebf7;
            --text-main: #1e1e24;
            --text-muted: #5c5c66;
            --bg-page: #ffffff;
            --bg-surface: #f8f9fc;
            --bg-dark: #0f0f13;
            --radius-md: 14px;
            --radius-lg: 17px;
            --shadow-subtle: 0 4px 24px rgba(0, 0, 0, 0.04);
            --shadow-hover: 0 12px 32px rgba(222, 110, 187, 0.15);
            --space-xl: 120px;
            --space-lg: 80px;
            --space-md: 40px;
            --transition-base: all 0.25s ease;
            --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            --max-width-shell: 1280px;
        }

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

        body {
            font-family: var(--font-stack);
            color: var(--text-main);
            background-color: var(--bg-page);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        /* Utility Classes (Mandatory Rules) */
        .flex-cluster {
            display: flex;
            flex-wrap: wrap;
        }
        
        .flex-drop {
            min-width: 0;
        }

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

        .crest-vox {
            white-space: normal;
            font-weight: 700;
        }

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

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

        /* Banner & Navigation */
        .apex-matrix {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .apex-fold {
            max-width: var(--max-width-shell);
            margin: 0 auto;
            padding: 16px 24px;
            justify-content: space-between;
            align-items: center;
        }

        .xmark {
            display: flex;
            align-items: center;
            height: 32px;
        }

        .xmark img {
            height: 100%;
            object-fit: contain;
        }

        .nexus-xlist {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            align-items: center;
        }

        .pathx-wire {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--text-muted);
            padding: 8px 0;
            position: relative;
        }

        .pathx-wire:hover {
            color: var(--brand-primary);
        }

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

        .pathx-wire.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--brand-primary);
            border-radius: 2px;
        }

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

        /* Section Intro: Cinematic Strip Hero */
        .xflare-vortex {
            width: 100%;
            background: linear-gradient(135deg, var(--bg-dark) 0%, #2a1b26 100%);
            position: relative;
            overflow: hidden;
            /* Cinematic aspect ratio roughly 21:9 */
            aspect-ratio: 21 / 9;
            min-height: 500px;
            max-height: 700px;
        }

        .xflare-vortex::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at right top, rgba(222, 110, 187, 0.15) 0%, transparent 60%);
            pointer-events: none;
        }

        .xflare-fold {
            max-width: var(--max-width-shell);
            height: 100%;
            margin: 0 auto;
            padding: 40px 24px;
            position: relative;
            z-index: 2;
            /* Edge overlay logic */
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            align-items: flex-start;
        }

        .xflare-crest {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            color: #ffffff;
            line-height: 1.1;
            margin-bottom: 24px;
            max-width: 800px;
            letter-spacing: -0.02em;
        }

        .xflare-vox {
            font-size: clamp(1.1rem, 1.5vw, 1.25rem);
            color: rgba(255, 255, 255, 0.8);
            max-width: 650px;
            margin-bottom: 40px;
            line-height: 1.7;
        }

        .pulse-trigx {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: var(--brand-primary);
            color: #ffffff;
            padding: 16px 32px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: var(--radius-md);
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(222, 110, 187, 0.3);
            transform: translateY(0);
        }

        .pulse-trigx:hover {
            background-color: var(--brand-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(222, 110, 187, 0.4);
        }

        /* Section Capability: Features */
        .capability-matrix {
            background-color: var(--bg-surface);
            padding: var(--space-xl) 24px;
        }

        .capability-fold {
            max-width: var(--max-width-shell);
            margin: 0 auto;
        }

        .apex-crest {
            font-size: clamp(2rem, 3vw, 2.75rem);
            text-align: center;
            margin-bottom: 16px;
            color: var(--text-main);
        }

        .apex-vox {
            text-align: center;
            color: var(--text-muted);
            max-width: 700px;
            margin: 0 auto var(--space-lg) auto;
            font-size: 1.1rem;
        }

        .xnode-cluster {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
        }

        .xnode-packet {
            background: var(--bg-page);
            padding: 40px 32px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-subtle);
            border: 1px solid rgba(0,0,0,0.02);
            transition: var(--transition-base);
            transform: translateY(0);
        }

        .xnode-packet:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(222, 110, 187, 0.2);
        }

        .glyph-fold {
            width: 56px;
            height: 56px;
            background: var(--brand-light);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            color: var(--brand-primary);
        }

        .xnode-crest {
            font-size: 1.3rem;
            margin-bottom: 12px;
            color: var(--text-main);
        }

        .xnode-vox {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        /* Section Proof: Showcase */
        .proof-xbound {
            padding: var(--space-xl) 24px;
            background-color: var(--bg-page);
        }

        .proof-fold {
            max-width: var(--max-width-shell);
            margin: 0 auto;
            align-items: center;
            gap: 60px;
        }

        .proof-vox-fold {
            flex: 1;
            min-width: 320px;
        }

        .proof-optic-fold {
            flex: 1.2;
            min-width: 320px;
            position: relative;
        }

        .proof-crest {
            font-size: clamp(2rem, 3vw, 2.75rem);
            margin-bottom: 24px;
            color: var(--text-main);
            position: relative;
        }

        .proof-crest::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: var(--brand-primary);
            border-radius: 2px;
            margin-top: 16px;
        }

        .proof-vox {
            color: var(--text-muted);
            font-size: 1.1rem;
            margin-bottom: 32px;
            line-height: 1.8;
        }

        .optic-gliff {
            width: 100%;
            border-radius: var(--radius-lg);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0,0,0,0.05);
            transition: var(--transition-base);
        }

        .optic-gliff:hover {
            transform: scale(1.02);
        }

        /* Section Acquire: Extensions / Paths */
        .acquire-matrix {
            background-color: var(--bg-surface);
            padding: var(--space-xl) 24px;
            border-top: 1px solid rgba(0,0,0,0.03);
        }

        .path-cluster {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 24px;
            margin-top: var(--space-md);
        }

        .path-packet {
            background: var(--bg-page);
            border-radius: var(--radius-md);
            padding: 32px;
            display: flex;
            flex-direction: column;
            box-shadow: var(--shadow-subtle);
            border: 1px solid rgba(0,0,0,0.04);
            position: relative;
            overflow: hidden;
            transform: translateY(0);
        }

        .path-packet:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }

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

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

        .path-crest {
            font-size: 1.25rem;
            margin-bottom: 12px;
            color: var(--text-main);
        }
        
        .path-vox {
            color: var(--text-muted);
            margin-bottom: 24px;
            flex-grow: 1;
        }

        .ping-wire {
            align-self: flex-start;
            color: var(--brand-primary);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .ping-wire svg {
            transition: transform 0.2s ease;
        }

        .ping-wire:hover svg {
            transform: translateX(4px);
        }

        /* Footer */
        .xend-resid {
            background-color: var(--bg-dark);
            color: #ffffff;
            padding: var(--space-lg) 24px var(--space-md);
        }

        .xend-fold {
            max-width: var(--max-width-shell);
            margin: 0 auto;
        }

        .xend-cluster {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 60px;
        }

        .xend-brand {
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 16px;
        }

        .xend-vox {
            color: rgba(255, 255, 255, 0.6);
            max-width: 300px;
            font-size: 0.95rem;
        }

        .xend-band {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 24px;
            text-align: center;
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.85rem;
        }

        /* Responsive Breakpoints */
        @media (max-width: 1024px) {
            .proof-fold {
                flex-direction: column;
                gap: 40px;
            }
            .proof-optic-fold {
                width: 100%;
            }
            .xflare-vortex {
                aspect-ratio: 16 / 9;
            }
        }

        @media (max-width: 768px) {
            .nexus-xlist {
                display: none; /* In a real app, this would be a hamburger menu */
            }
            .xflare-vortex {
                aspect-ratio: auto;
                min-height: 80vh;
            }
            .xflare-fold {
                justify-content: center;
            }
            .xnode-cluster, .path-cluster {
                grid-template-columns: 1fr;
            }
            .space-xl {
                padding: var(--space-lg) 24px;
            }
        }

.nexus-apex-matrix .nexus-flex-cluster{
            display: flex;
            flex-wrap: wrap;
        }

.nexus-apex-matrix{
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

.nexus-apex-matrix .nexus-apex-fold{
            max-width: 1280px;
            margin: 0 auto;
            padding: 16px 24px;
            justify-content: space-between;
            align-items: center;
        }

.nexus-apex-matrix .nexus-xmark{
            display: flex;
            align-items: center;
            height: 32px;
        }

.nexus-apex-matrix .nexus-xmark img{
            height: 100%;
            object-fit: contain;
        }

.nexus-apex-matrix .nexus-nexus-xlist{
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            align-items: center;
        }

.nexus-apex-matrix .nexus-pathx-wire{
            font-size: 0.95rem;
            font-weight: 500;
            color: #5c5c66;
            padding: 8px 0;
            position: relative;
        }

.nexus-apex-matrix .nexus-pathx-wire:hover{
            color: #de6ebb;
        }

.nexus-apex-matrix .nexus-pathx-wire.active{
            color: #de6ebb;
        }

.nexus-apex-matrix .nexus-pathx-wire.active::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #de6ebb;
            border-radius: 2px;
        }

@media (max-width: 768px){.nexus-apex-matrix .nexus-nexus-xlist{
                display: none; 
            }}

.nexus-apex-matrix {
    background: rgb(255, 255, 255);
    background-image: none;
}

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

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

.xbase-xend-resid p,
.xbase-xend-resid h1,
.xbase-xend-resid h2,
.xbase-xend-resid h3,
.xbase-xend-resid h4,
.xbase-xend-resid h5,
.xbase-xend-resid h6 {
    text-decoration: none;
}

.xbase-xend-resid img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.xbase-xend-resid {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.xbase-xend-resid a,
.xbase-xend-resid a:hover,
.xbase-xend-resid a:focus,
.xbase-xend-resid a:active {
    background: transparent;
    box-shadow: none;
    outline: none;
    text-decoration: none;
}

.xbase-xend-resid .xbase-flex-drop{
            min-width: 0;
        }

.xbase-xend-resid .xbase-vox-fold{
            word-break: break-word;
            overflow-wrap: break-word;
        }

.xbase-xend-resid{
            background-color: #0f0f13;
            color: #ffffff;
            padding: 80px 24px 40px;
        }

.xbase-xend-resid .xbase-xend-fold{
            max-width: 1280px;
            margin: 0 auto;
        }

.xbase-xend-resid .xbase-xend-cluster{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 60px;
        }

.xbase-xend-resid .xbase-xend-brand{
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 16px;
        }

.xbase-xend-resid .xbase-xend-vox{
            color: rgba(255, 255, 255, 0.6);
            max-width: 300px;
            font-size: 0.95rem;
        }

.xbase-xend-resid .xbase-xend-band{
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 24px;
            text-align: center;
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.85rem;
        }