:root {
            --primary: #f22879;
            --primary-hover: #ff4b93;
            --bg: #0b0c10;
            --bg-card: #171923;
            --border: rgba(242, 40, 121, 0.15);
            --text: #e2e8f0;
            --text-muted: #94a3b8;
            --radius: 14px;
            --transition: 0.15s ease;
        }

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

        body {
            background-color: var(--bg);
            color: var(--text);
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            line-height: 1.7;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        .prism {
            width: 100%;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .array {
            background-color: rgba(11, 12, 16, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 100;
            width: 100%;
        }

        .sheath {
            max-width: 1100px;
            width: 100%;
            margin: 0 auto;
            padding: 0 20px;
            box-sizing: border-box;
        }

        .array .sheath {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 70px;
        }

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

        .emblem img {
            height: 36px;
            width: auto;
            display: block;
        }

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

        .glyph {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.95rem;
            padding: 8px 16px;
            transition: color var(--transition);
            word-break: keep-all;
        }

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

        .glyph.active {
            color: var(--primary);
            font-weight: 600;
            border-bottom: 2px solid var(--primary);
        }

        .zenith {
            width: 100%;
            background-color: #050608;
            border-bottom: 1px solid var(--border);
            overflow: hidden;
        }

        .zenith .flare {
            position: relative;
            width: 100%;
            height: 480px;
            display: flex;
            align-items: flex-end;
        }

        .zenith .bead {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.3) contrast(1.15);
            z-index: 1;
        }

        .zenith .sheath {
            position: relative;
            z-index: 2;
            padding-bottom: 50px;
            padding-top: 50px;
            background: linear-gradient(to top, rgba(11, 12, 16, 1) 0%, rgba(11, 12, 16, 0.4) 60%, transparent 100%);
        }

        .lore {
            color: #ffffff;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 16px;
        }

        h1.lore {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }

        h2.lore {
            font-size: clamp(1.5rem, 3vw, 2rem);
            border-left: 4px solid var(--primary);
            padding-left: 12px;
            margin-bottom: 20px;
        }

        h3.lore {
            font-size: 1.3rem;
            margin-bottom: 12px;
        }

        .whisper {
            color: var(--text-muted);
            font-size: clamp(0.95rem, 1.5vw, 1.05rem);
            max-width: 800px;
            margin-bottom: 24px;
        }

        .halo {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            min-width: 0;
        }

        .zenith .halo {
            margin-bottom: 30px;
        }

        .strand {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            color: #ffffff;
            background: rgba(242, 40, 121, 0.12);
            border: 1px solid var(--border);
            padding: 6px 16px;
            border-radius: 30px;
        }

        .crown {
            width: 16px;
            height: 16px;
            fill: var(--primary);
            flex-shrink: 0;
            display: inline-block;
        }

        .ignite {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: var(--primary);
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            padding: 12px 28px;
            border-radius: var(--radius);
            transition: transform var(--transition), background-color var(--transition);
            box-shadow: 0 4px 15px rgba(242, 40, 121, 0.3);
        }

        .ignite:hover {
            background-color: var(--primary-hover);
            transform: translateY(-2px);
        }

        .warp {
            display: inline-block;
        }

        .conduit {
            padding: 80px 0;
            background-color: #0b0c10;
            border-bottom: 1px solid var(--border);
        }

        .conduit:nth-of-type(even) {
            background-color: #11131c;
        }

        .conduit .halo {
            align-items: center;
            justify-content: space-between;
        }

        .conduit .bloc {
            flex: 1 1 500px;
            min-width: 0;
        }

        .conduit .flare {
            flex: 1 1 400px;
            min-width: 0;
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid var(--border);
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

        .conduit .bead {
            width: 100%;
            height: auto;
            display: block;
        }

        .conduit .tether {
            list-style: none;
            margin-top: 20px;
        }

        .conduit .strand {
            background: transparent;
            border: none;
            padding: 6px 0;
            font-size: 0.95rem;
            color: var(--text);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .matrix {
            padding: 80px 0;
            background-color: #0f111a;
            border-bottom: 1px solid var(--border);
        }

        .matrix .halo {
            margin-top: 40px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            width: 100%;
        }

        .matrix .bloc {
            background-color: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 30px;
            transition: transform var(--transition), border-color var(--transition);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .matrix .bloc:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
        }

        .matrix .crown-step {
            background-color: rgba(242, 40, 121, 0.1);
            color: var(--primary);
            font-size: 1.5rem;
            font-weight: 700;
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin-bottom: 20px;
            border: 1px solid var(--border);
        }

        article.conduit .bloc {
            background-color: rgba(23, 25, 35, 0.5);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 24px;
            flex: 1 1 45%;
            transition: background-color var(--transition), border-color var(--transition);
        }

        article.conduit .bloc:hover {
            background-color: rgba(23, 25, 35, 0.85);
            border-color: var(--primary);
        }

        article.conduit .glyph {
            color: var(--primary);
            padding: 0;
            font-weight: 600;
            display: inline-block;
            margin-top: 12px;
        }

        article.conduit .glyph:hover {
            color: var(--primary-hover);
            text-decoration: underline;
        }

        aside.matrix {
            background-color: #0b0c10;
        }

        aside.matrix .halo {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        aside.matrix details.bloc {
            background-color: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 0;
            overflow: hidden;
            width: 100%;
        }

        aside.matrix summary.lore {
            padding: 20px 24px;
            font-weight: 600;
            cursor: pointer;
            outline: none;
            user-select: none;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-left: 4px solid transparent;
            transition: border-color var(--transition);
            margin-bottom: 0;
        }

        aside.matrix summary.lore::-webkit-details-marker {
            display: none;
        }

        aside.matrix details[open] summary.lore {
            border-left-color: var(--primary);
            border-bottom: 1px solid var(--border);
        }

        aside.matrix summary.lore::after {
            content: "+";
            font-size: 1.2rem;
            color: var(--primary);
            transition: transform var(--transition);
        }

        aside.matrix details[open] summary.lore::after {
            content: "-";
            transform: rotate(90deg);
        }

        aside.matrix .whisper {
            padding: 20px 24px;
            margin: 0;
            color: var(--text-muted);
        }

        .crest {
            background-color: #050608;
            border-top: 1px solid var(--border);
            padding: 60px 0 20px;
            margin-top: auto;
        }

        .crest .halo {
            justify-content: space-between;
            gap: 40px;
        }

        .crest .bloc {
            flex: 1 1 250px;
            min-width: 0;
        }

        .crest .lore {
            font-size: 1.1rem;
            color: #ffffff;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .anchor {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .anchor .glyph {
            padding: 0;
            font-size: 0.9rem;
        }

        .ground {
            text-align: center;
            padding-top: 40px;
            margin-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: var(--text-muted);
            font-size: 0.85rem;
            width: 100%;
        }

        @media (max-width: 768px) {
            .array .sheath {
                height: auto;
                padding: 15px 20px;
                flex-direction: column;
                gap: 15px;
                align-items: center;
            }

            .steer {
                justify-content: center;
            }

            .zenith .flare {
                height: auto;
                min-height: 400px;
            }

            .conduit .halo {
                flex-direction: column;
            }

            .conduit .bloc,
            .conduit .flare {
                flex: 1 1 100%;
                width: 100%;
            }

            article.conduit .bloc {
                flex: 1 1 100%;
            }
        }

.vector-array {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--text);
}
.vector-array,
.vector-array *,
.vector-array *::before,
.vector-array *::after {
    box-sizing: border-box;
}

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

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

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

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

.vector-array a.vector-glyph.vector-active,
.vector-array a.vector-glyph {
    --aisite-shell-nav-padding: 8px 16px;
    --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;
}

.vector-array a.vector-glyph.vector-active,
.vector-array a.vector-glyph.vector-active:hover,
.vector-array a.vector-glyph.vector-active:focus,
.vector-array a.vector-glyph.vector-active:active,
.vector-array a.vector-glyph.vector-active.active,
.vector-array a.vector-glyph.vector-active[aria-current="page"],
.vector-array a.vector-glyph,
.vector-array a.vector-glyph:hover,
.vector-array a.vector-glyph:focus,
.vector-array a.vector-glyph:active,
.vector-array a.vector-glyph.active,
.vector-array a.vector-glyph[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);
}

.vector-array{
            background-color: rgba(11, 12, 16, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(242, 40, 121, 0.15);
            position: sticky;
            top: 0;
            z-index: 100;
            width: 100%;
        }

.vector-array .vector-sheath{
            max-width: 1100px;
            width: 100%;
            margin: 0 auto;
            padding: 0 20px;
            box-sizing: border-box;
        }

.vector-array .vector-sheath{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 70px;
        }

.vector-array .vector-emblem{
            display: flex;
            align-items: center;
            min-width: 0;
        }

.vector-array .vector-emblem img{
            height: 36px;
            width: auto;
            display: block;
        }

.vector-array .vector-steer{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            min-width: 0;
        }

.vector-array .vector-glyph{
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.95rem;
            padding: 8px 16px;
            transition: color 0.15s ease;
            word-break: keep-all;
        }

.vector-array .vector-glyph:hover{
            color: #f22879;
        }

.vector-array .vector-glyph.vector-active{
            color: #f22879;
            font-weight: 600;
            border-bottom: 2px solid #f22879;
        }

@media (max-width: 768px){.vector-array .vector-sheath{
                height: auto;
                padding: 15px 20px;
                flex-direction: column;
                gap: 15px;
                align-items: center;
            }

.vector-array .vector-steer{
                justify-content: center;
            }}

.vector-array {
    background: rgb(11, 12, 16);
    background-image: none;
}

.anchor-crest {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--text);
}
.anchor-crest,
.anchor-crest *,
.anchor-crest *::before,
.anchor-crest *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.anchor-crest .anchor-sheath{
            max-width: 1100px;
            width: 100%;
            margin: 0 auto;
            padding: 0 20px;
            box-sizing: border-box;
        }

.anchor-crest .anchor-glyph{
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.95rem;
            padding: 8px 16px;
            transition: color 0.15s ease;
            word-break: keep-all;
        }

.anchor-crest .anchor-glyph:hover{
            color: #f22879;
        }

.anchor-crest .anchor-lore{
            color: #ffffff;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 16px;
        }

.anchor-crest h1.anchor-lore{
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }

.anchor-crest h2.anchor-lore{
            font-size: clamp(1.5rem, 3vw, 2rem);
            border-left: 4px solid #f22879;
            padding-left: 12px;
            margin-bottom: 20px;
        }

.anchor-crest h3.anchor-lore{
            font-size: 1.3rem;
            margin-bottom: 12px;
        }

.anchor-crest .anchor-whisper{
            color: #94a3b8;
            font-size: clamp(0.95rem, 1.5vw, 1.05rem);
            max-width: 800px;
            margin-bottom: 24px;
        }

.anchor-crest .anchor-halo{
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            min-width: 0;
        }

.anchor-crest{
            background-color: #050608;
            border-top: 1px solid rgba(242, 40, 121, 0.15);
            padding: 60px 0 20px;
            margin-top: auto;
        }

.anchor-crest .anchor-halo{
            justify-content: space-between;
            gap: 40px;
        }

.anchor-crest .anchor-bloc{
            flex: 1 1 250px;
            min-width: 0;
        }

.anchor-crest .anchor-lore{
            font-size: 1.1rem;
            color: #ffffff;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

.anchor-crest .anchor-anchor{
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

.anchor-crest .anchor-anchor .anchor-glyph{
            padding: 0;
            font-size: 0.9rem;
        }

.anchor-crest .anchor-ground{
            text-align: center;
            padding-top: 40px;
            margin-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: #94a3b8;
            font-size: 0.85rem;
            width: 100%;
        }