:root {
            --primary: #4e53ee;
            --primary-hover: #3b40d9;
            --primary-light: rgba(78, 83, 238, 0.12);
            --bg-dark: #090b14;
            --bg-card: #13172b;
            --bg-elevated: #1a203a;
            --text-main: #f1f5f9;
            --text-muted: #94a3b8;
            --border: rgba(255, 255, 255, 0.08);
            --border-glow: rgba(78, 83, 238, 0.35);
            --radius: 14px;
            --transition: all 0.15s ease;
        }

        * {
            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(--bg-dark);
            color: var(--text-main);
            line-height: 1.6;
            word-break: break-word;
            overflow-wrap: break-word;
        }

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

        /* Banner Header */
        .crest {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(9, 11, 20, 0.85);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border);
            padding: 16px 24px;
        }

        .casing-harbor {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

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

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

        .harbor {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px;
        }

        .tether {
            padding: 8px 16px;
            font-size: 15px;
            font-weight: 500;
            color: var(--text-muted);
            border-radius: 8px;
            transition: var(--transition);
            min-width: 0;
        }

        .tether:hover {
            color: var(--text-main);
            background: var(--primary-light);
        }

        .tether.active {
            color: #ffffff;
            background: var(--primary);
            box-shadow: 0 0 15px rgba(78, 83, 238, 0.4);
        }

        /* Hero Split Diagonal Section */
        .citadel {
            position: relative;
            display: flex;
            flex-wrap: wrap;
            background: linear-gradient(135deg, #090b14 0%, #151833 50%, #0d1024 100%);
            overflow: hidden;
            min-height: 600px;
            border-bottom: 1px solid var(--border);
        }

        .citadel-opposite {
            flex: 1 1 520px;
            min-width: 0;
            padding: 70px 50px;
            z-index: 2;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .citadel-diagonal {
            flex: 1 1 500px;
            min-width: 0;
            position: relative;
            clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
            overflow: hidden;
            background: #11152a;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: inset 10px 0 30px rgba(0,0,0,0.5);
        }

        .visage-citadel {
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 400px;
            filter: brightness(0.95) contrast(1.05);
            transition: var(--transition);
        }

        .visage-citadel:hover {
            transform: scale(1.02);
        }

        .strand-seal {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 14px;
            background: var(--primary-light);
            border: 1px solid var(--border-glow);
            border-radius: 30px;
            color: #818cf8;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 20px;
            width: fit-content;
        }

        .signet-primary {
            font-size: clamp(32px, 4.5vw, 50px);
            font-weight: 800;
            line-height: 1.2;
            color: #ffffff;
            margin-bottom: 18px;
            white-space: normal;
        }

        .script-lead {
            font-size: 17px;
            line-height: 1.7;
            color: var(--text-muted);
            margin-bottom: 30px;
            max-width: 640px;
        }

        .pocket-highlights {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 36px;
        }

        .node-highlight {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 15px;
            color: #cbd5e1;
        }

        .rune-check {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: rgba(78, 83, 238, 0.2);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .pocket-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        .latch {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 28px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: var(--transition);
            min-width: 0;
            border: 1px solid transparent;
        }

        .latch-primary {
            background: var(--primary);
            color: #ffffff;
            box-shadow: 0 4px 20px rgba(78, 83, 238, 0.4);
        }

        .latch-primary:hover {
            background: var(--primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(78, 83, 238, 0.5);
        }

        .latch-secondary {
            background: var(--bg-elevated);
            color: var(--text-main);
            border-color: var(--border);
        }

        .latch-secondary:hover {
            border-color: var(--border-glow);
            background: #232a4d;
            transform: translateY(-2px);
        }

        /* Generic Section Container */
        .aegis {
            padding: 90px 24px;
            max-width: 1300px;
            margin: 0 auto;
        }

        .casing-crown {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px auto;
        }

        .signet-secondary {
            font-size: clamp(26px, 3.2vw, 38px);
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 16px;
            white-space: normal;
        }

        .script-sub {
            font-size: 16px;
            color: var(--text-muted);
            line-height: 1.7;
        }

        /* Steps Showcase (Security Vault) */
        .pocket-showcase {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
        }

        .vault-visual {
            flex: 1 1 540px;
            min-width: 0;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
            transition: var(--transition);
        }

        .vault-visual:hover {
            border-color: var(--border-glow);
            box-shadow: 0 25px 50px rgba(78, 83, 238, 0.2);
        }

        .visage-vault {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }

        .capsule-detail {
            flex: 1 1 480px;
            min-width: 0;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .pod-step {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 24px;
            transition: var(--transition);
        }

        .pod-step:hover {
            border-color: var(--border-glow);
            transform: translateX(6px);
            background: var(--bg-elevated);
        }

        .strand-step-head {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 10px;
        }

        .rune-seal {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: var(--primary-light);
            border: 1px solid var(--border-glow);
            color: #818cf8;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            flex-shrink: 0;
        }

        .signet-step {
            font-size: 18px;
            font-weight: 600;
            color: #ffffff;
        }

        .script-step {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* Capability Section (Aside) */
        .sanctum {
            background: linear-gradient(180deg, rgba(19, 23, 43, 0.6) 0%, rgba(9, 11, 20, 0.9) 100%);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            padding: 90px 24px;
        }

        .casing-sanctum {
            max-width: 1300px;
            margin: 0 auto;
        }

        .pocket-capability {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
            flex-direction: row-reverse;
        }

        .vault-scanner {
            flex: 1 1 540px;
            min-width: 0;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }

        .capsule-feature-grid {
            flex: 1 1 480px;
            min-width: 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
        }

        .pod-feature {
            background: var(--bg-card);
            border: 1px solid var(--border);
            padding: 22px;
            border-radius: var(--radius);
            transition: var(--transition);
        }

        .pod-feature:hover {
            border-color: var(--border-glow);
            transform: translateY(-4px);
            background: var(--bg-elevated);
        }

        .rune-feature {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: var(--primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #818cf8;
            margin-bottom: 14px;
        }

        /* Ecosystem Overview (Closing Section) */
        .rampart {
            padding: 90px 24px;
            max-width: 1300px;
            margin: 0 auto;
        }

        .pocket-ecosystem {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }

        .vault-ecosystem {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 30px;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .vault-ecosystem:hover {
            border-color: var(--border-glow);
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(78, 83, 238, 0.15);
        }

        .signet-eco {
            font-size: 20px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 12px;
        }

        .script-eco {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        /* Sub-topics and Internal Path Showcase (Article) */
        .casing-paths {
            background: #0e1222;
            border-top: 1px solid var(--border);
            padding: 80px 24px;
        }

        .sanctum-paths {
            max-width: 1300px;
            margin: 0 auto;
        }

        .pocket-paths {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
        }

        .pod-path {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 28px;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .pod-path:hover {
            border-color: var(--border-glow);
            background: var(--bg-elevated);
        }

        .tether-arrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #818cf8;
            font-weight: 600;
            font-size: 14px;
            margin-top: 16px;
        }

        .tether-arrow:hover {
            color: #ffffff;
            transform: translateX(4px);
        }

        /* Footer Bedrock */
        .base {
            background: #06070d;
            border-top: 1px solid var(--border);
            padding: 60px 24px 30px 24px;
            color: var(--text-muted);
            font-size: 14px;
        }

        .haven {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
        }

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

        .signet-brand {
            font-size: 24px;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }

        .script-brand {
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 16px;
        }

        .pocket-base-links {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }

        .node-base-col {
            display: flex;
            flex-direction: column;
            gap: 10px;
            min-width: 140px;
        }

        .signet-base-head {
            color: #ffffff;
            font-weight: 600;
            font-size: 15px;
            margin-bottom: 6px;
        }

        .bedrock {
            max-width: 1300px;
            margin: 0 auto;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            font-size: 13px;
        }

        /* Responsive Breakpoints */
        @media (max-width: 992px) {
            .citadel-diagonal {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
                min-height: 320px;
            }
            .citadel-opposite {
                padding: 50px 30px;
            }
        }

        @media (max-width: 768px) {
            .crest {
                padding: 12px 16px;
            }
            .harbor {
                width: 100%;
                justify-content: flex-start;
                overflow-x: auto;
                padding-bottom: 4px;
            }
            .tether {
                padding: 6px 12px;
                font-size: 14px;
                white-space: nowrap;
            }
            .citadel {
                flex-direction: column;
            }
            .citadel-opposite {
                padding: 40px 20px;
            }
            .aegis, .sanctum, .rampart, .casing-paths {
                padding: 60px 16px;
            }
            .pod-step:hover {
                transform: none;
            }
        }

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

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

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

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

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

.harbor-crest a.harbor-tether {
    --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;
}

.harbor-crest a.harbor-tether,
.harbor-crest a.harbor-tether:hover,
.harbor-crest a.harbor-tether:focus,
.harbor-crest a.harbor-tether:active,
.harbor-crest a.harbor-tether.active,
.harbor-crest a.harbor-tether[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);
}

.harbor-crest{
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(9, 11, 20, 0.85);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            padding: 16px 24px;
        }

.harbor-crest .harbor-casing-harbor{
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

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

.harbor-crest .harbor-emblem img{
            height: 38px;
            width: auto;
            display: block;
        }

.harbor-crest .harbor-harbor{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px;
        }

.harbor-crest .harbor-tether{
            padding: 8px 16px;
            font-size: 15px;
            font-weight: 500;
            color: #94a3b8;
            border-radius: 8px;
            transition: all 0.15s ease;
            min-width: 0;
        }

.harbor-crest .harbor-tether:hover{
            color: #f1f5f9;
            background: rgba(78, 83, 238, 0.12);
        }

.harbor-crest .harbor-tether.active{
            color: #ffffff;
            background: #4e53ee;
            box-shadow: 0 0 15px rgba(78, 83, 238, 0.4);
        }

@media (max-width: 768px){.harbor-crest{
                padding: 12px 16px;
            }

.harbor-crest .harbor-harbor{
                width: 100%;
                justify-content: flex-start;
                overflow-x: auto;
                padding-bottom: 4px;
            }

.harbor-crest .harbor-tether{
                padding: 6px 12px;
                font-size: 14px;
                white-space: nowrap;
            }}

.harbor-crest {
    background: rgb(9, 11, 20);
    background-image: none;
}

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

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

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

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

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

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

.anchor-base .anchor-tether{
            padding: 8px 16px;
            font-size: 15px;
            font-weight: 500;
            color: #94a3b8;
            border-radius: 8px;
            transition: all 0.15s ease;
            min-width: 0;
        }

.anchor-base .anchor-tether:hover{
            color: #f1f5f9;
            background: rgba(78, 83, 238, 0.12);
        }

.anchor-base .anchor-tether.active{
            color: #ffffff;
            background: #4e53ee;
            box-shadow: 0 0 15px rgba(78, 83, 238, 0.4);
        }

.anchor-base{
            background: #06070d;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 60px 24px 30px 24px;
            color: #94a3b8;
            font-size: 14px;
        }

.anchor-base .anchor-haven{
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
        }

.anchor-base .anchor-casing-brand{
            flex: 1 1 300px;
            min-width: 0;
        }

.anchor-base .anchor-signet-brand{
            font-size: 24px;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }

.anchor-base .anchor-script-brand{
            color: #94a3b8;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 16px;
        }

.anchor-base .anchor-pocket-base-links{
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }

.anchor-base .anchor-node-base-col{
            display: flex;
            flex-direction: column;
            gap: 10px;
            min-width: 140px;
        }

.anchor-base .anchor-signet-base-head{
            color: #ffffff;
            font-weight: 600;
            font-size: 15px;
            margin-bottom: 6px;
        }

.anchor-base .anchor-bedrock{
            max-width: 1300px;
            margin: 0 auto;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            font-size: 13px;
        }

@media (max-width: 768px){.anchor-base .anchor-tether{
                padding: 6px 12px;
                font-size: 14px;
                white-space: nowrap;
            }}