:root {
            --color-primary: #db7970;
            --color-primary-dark: #c2655d;
            --color-primary-light: #fdf2f0;
            --color-bg-base: #fcfbfa;
            --color-bg-alt: #f3f0ec;
            --color-surface: #ffffff;
            --color-text-main: #2d3748;
            --color-text-muted: #64748b;
            --color-border: #e2e8f0;
            
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            
            --shadow-soft: 0 4px 20px -2px rgba(45, 55, 72, 0.05);
            --shadow-float: 0 20px 40px -8px rgba(45, 55, 72, 0.1), 0 0 0 1px rgba(219, 121, 112, 0.05);
            
            --transition: all 0.35s ease;
            --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            --font-serif: "Georgia", "Times New Roman", serif;
        }

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

        body {
            font-family: var(--font-sans);
            color: var(--color-text-main);
            background-color: var(--color-bg-base);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }

        /* Typography */
        .apex {
            font-weight: 700;
            color: var(--color-text-main);
            white-space: normal;
            word-break: break-word;
            overflow-wrap: break-word;
        }
        
        .apex-mega { font-size: clamp(2.5rem, 5vw, 3.5rem); line-height: 1.15; letter-spacing: -0.02em; }
        .apex-primary { font-size: clamp(2rem, 4vw, 2.75rem); line-height: 1.25; letter-spacing: -0.01em; }
        .apex-secondary { font-size: clamp(1.5rem, 3vw, 1.8rem); line-height: 1.3; }
        .apex-tertiary { font-size: 1.25rem; line-height: 1.4; }

        .lore {
            word-break: break-word;
            overflow-wrap: break-word;
            word-break: keep-all;
            color: var(--color-text-muted);
            font-size: 1.125rem;
            margin-bottom: 1.5rem;
        }

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

        /* Base Flex/Grid Rules */
        .clan {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            width: 100%;
        }

        .blip {
            min-width: 0;
            flex: 1 1 300px;
        }

        /* Layout Shells */
        .mesh {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 5rem 2rem;
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
        }
        
        .mesh-narrow {
            max-width: 1000px;
        }

        /* Header / Nav */
        .peak {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(252, 251, 250, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(226, 232, 240, 0.6);
        }

        .nexus {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

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

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

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

        .bond {
            text-decoration: none;
            color: var(--color-text-muted);
            font-weight: 500;
            font-size: 0.95rem;
            transition: var(--transition);
            position: relative;
        }

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

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

        /* Buttons */
        .spark {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.875rem 1.75rem;
            font-weight: 600;
            border-radius: var(--radius-md);
            text-decoration: none;
            transition: var(--transition);
            font-size: 1rem;
            cursor: pointer;
            border: 2px solid transparent;
        }

        .spark.primary {
            background-color: var(--color-primary);
            color: #fff;
            box-shadow: 0 4px 12px rgba(219, 121, 112, 0.25);
        }

        .spark.primary:hover {
            background-color: var(--color-primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(219, 121, 112, 0.35);
        }

        .spark.secondary {
            background-color: transparent;
            color: var(--color-text-main);
            border-color: var(--color-border);
        }

        .spark.secondary:hover {
            border-color: var(--color-primary);
            color: var(--color-primary);
            background-color: var(--color-primary-light);
        }
        
        .spark.ghost {
            color: var(--color-primary);
            padding: 0;
            background: transparent;
            border: none;
        }
        
        .spark.ghost:hover {
            color: var(--color-primary-dark);
            text-decoration: underline;
        }

        /* Hero Blueprint: card_float */
        .flare {
            position: relative;
            min-height: 85vh;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            background-color: var(--color-bg-base);
            overflow: hidden;
        }

        .flare-cloak {
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .flare-lens {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center right;
        }

        .flare-veil {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, var(--color-bg-base) 0%, rgba(252, 251, 250, 0.85) 40%, rgba(252, 251, 250, 0.2) 100%);
        }

        .flare-mesh {
            position: relative;
            z-index: 1;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 2rem;
            display: flex;
            flex-wrap: wrap;
        }

        .flare-pod {
            background: var(--color-surface);
            padding: 4rem 3rem;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-float);
            max-width: 600px;
            margin-left: 2%; /* Offset */
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            border: 1px solid rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(8px);
        }

        .flare-clan {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 1rem;
        }

        /* Generic Pod/Card */
        .pod {
            background: var(--color-surface);
            border-radius: var(--radius-md);
            padding: 2.5rem;
            box-shadow: var(--shadow-soft);
            border: 1px solid var(--color-border);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            height: 100%;
            min-width: 0;
        }

        .pod:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-float);
            border-color: rgba(219, 121, 112, 0.2);
        }
        
        .pod-glass {
            background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.5));
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.8);
        }

        /* Images inside content */
        .lens {
            width: 100%;
            height: auto;
            border-radius: var(--radius-md);
            display: block;
        }
        
        .lens-shadow {
            box-shadow: var(--shadow-float);
        }

        /* Section Layouts */
        .capability-mesh {
            background-color: var(--color-surface);
        }
        
        .detail-mesh {
            background-color: var(--color-bg-alt);
            position: relative;
            overflow: hidden;
        }
        
        .acquire-mesh {
            background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-primary-light) 100%);
        }
        
        .pathway-mesh {
            background-color: var(--color-surface);
            border-top: 1px solid var(--color-border);
        }

        .clan.split {
            align-items: center;
        }
        
        .clan.split > .blip.text-blip {
            flex: 1 1 400px;
            padding-right: 3rem;
        }
        
        .clan.split > .blip.img-blip {
            flex: 1.2 1 500px;
        }
        
        .clan.split.reverse > .blip.text-blip {
            padding-right: 0;
            padding-left: 3rem;
            order: 2;
        }
        
        .clan.split.reverse > .blip.img-blip {
            order: 1;
        }

        /* Icons & Runes */
        .rune-cloak {
            width: 48px;
            height: 48px;
            border-radius: var(--radius-sm);
            background: var(--color-primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.25rem;
            color: var(--color-primary);
        }
        
        .rune {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }

        /* Feature List */
        .vein-clan {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .vein-blip {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
            min-width: 0;
        }
        
        .vein-blip .rune-cloak {
            width: 32px;
            height: 32px;
            margin-bottom: 0;
            flex-shrink: 0;
        }
        
        .vein-blip .rune {
            width: 16px;
            height: 16px;
        }
        
        .vein-lore {
            min-width: 0;
        }
        
        .vein-lore .apex {
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
        }
        
        .vein-lore .lore-sm {
            margin-bottom: 0;
        }

        /* Alignments */
        .peak-center {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 4rem auto;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* Platform Grid */
        .platform-clan {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 3rem;
            margin: 3rem 0;
        }
        
        .platform-blip {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            color: var(--color-text-main);
            min-width: 0;
        }
        
        .platform-blip svg {
            width: 48px;
            height: 48px;
            opacity: 0.8;
            transition: var(--transition);
        }
        
        .platform-blip:hover svg {
            opacity: 1;
            transform: scale(1.1);
            color: var(--color-primary);
        }

        /* Footer */
        .root {
            background-color: #1a202c;
            color: #a0aec0;
            padding: 4rem 2rem;
            text-align: center;
        }
        
        .root-mesh {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }
        
        .root .apex {
            color: #fff;
            font-size: 1.5rem;
            letter-spacing: 2px;
        }
        
        .root-clan {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
        }
        
        .root-bond {
            color: #a0aec0;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .root-bond:hover {
            color: #fff;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .flare-pod {
                margin-left: 0;
                padding: 3rem 2rem;
            }
            .clan.split > .blip.text-blip,
            .clan.split.reverse > .blip.text-blip {
                padding: 0;
            }
        }

        @media (max-width: 768px) {
            .thread {
                display: none; /* Mobile menu logic handled by init.js or assume standard stacking if visible */
                width: 100%;
                flex-direction: column;
                gap: 1rem;
                margin-top: 1rem;
            }
            /* To make it visible for demo without JS */
            .peak:hover .thread {
                display: flex;
            }
            
            .flare {
                min-height: auto;
            }
            
            .flare-veil {
                background: linear-gradient(180deg, rgba(252, 251, 250, 0.9) 0%, rgba(252, 251, 250, 0.95) 100%);
            }
            
            .flare-mesh {
                padding: 6rem 1rem 3rem 1rem;
            }
            
            .flare-pod {
                max-width: 100%;
                box-shadow: none;
                border: none;
                background: transparent;
                padding: 0;
            }
            
            .mesh {
                padding: 4rem 1.5rem;
            }
            
            .clan.split {
                flex-direction: column;
            }
            
            .clan.split.reverse {
                flex-direction: column;
            }
            
            .clan.split.reverse > .blip.img-blip {
                order: 2;
                margin-top: 2rem;
            }
            
            .clan.split.reverse > .blip.text-blip {
                order: 1;
            }
            
            .apex-mega { font-size: 2rem; }
            .apex-primary { font-size: 1.75rem; }
            
            .flare-clan {
                flex-direction: column;
            }
            
            .flare-clan .spark {
                width: 100%;
            }
        }

.nexus-peak{
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(252, 251, 250, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(226, 232, 240, 0.6);
        }

.nexus-peak .nexus-nexus{
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

.nexus-peak .nexus-sigil{
            min-width: 0;
            display: flex;
            align-items: center;
        }

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

.nexus-peak .nexus-thread{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: center;
        }

.nexus-peak .nexus-bond{
            text-decoration: none;
            color: #64748b;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.35s ease;
            position: relative;
        }

.nexus-peak .nexus-bond:hover, .nexus-peak .nexus-bond.active{
            color: #db7970;
        }

.nexus-peak .nexus-bond.active::after{
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #db7970;
            border-radius: 2px;
        }

@media (max-width: 768px){.nexus-peak .nexus-thread{
                display: none; 
                width: 100%;
                flex-direction: column;
                gap: 1rem;
                margin-top: 1rem;
            }

.nexus-peak:hover .nexus-thread{
                display: flex;
            }}

.nexus-peak {
    background: rgb(252, 251, 250);
    background-image: none;
}

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

.root-root [role="navigation"],
.root-root div,
.root-root section,
.root-root article,
.root-root aside,
.root-root p,
.root-root h1,
.root-root h2,
.root-root h3,
.root-root h4,
.root-root h5,
.root-root h6,
.root-root a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

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

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

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

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

.root-root .root-apex{
            font-weight: 700;
            color: #2d3748;
            white-space: normal;
            word-break: break-word;
            overflow-wrap: break-word;
        }

.root-root .root-lore-sm{
            font-size: 0.95rem;
            color: #64748b;
        }

.root-root{
            background-color: #1a202c;
            color: #a0aec0;
            padding: 4rem 2rem;
            text-align: center;
        }

.root-root .root-root-mesh{
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }

.root-root .root-apex{
            color: #fff;
            font-size: 1.5rem;
            letter-spacing: 2px;
        }

.root-root .root-root-clan{
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
        }

.root-root .root-root-bond{
            color: #a0aec0;
            text-decoration: none;
            transition: all 0.35s ease;
        }

.root-root .root-root-bond:hover{
            color: #fff;
        }