:root {
            --primary: #1f9cf0;
            --bg: #05070a;
            --surface: #11141b;
            --text: #ffffff;
            --text-dim: #a0a0ab;
            --accent: #2ecc71;
            --radius: 16px;
            --transition: 0.35s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-font-smoothing: antialiased;
        }

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

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

        /* --- Orbit: Header/Navigation --- */
        .twig {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(5, 7, 10, 0.8);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .vein {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }

        .pixel {
            height: 40px;
            display: flex;
            align-items: center;
        }

        .pixel img {
            height: 32px;
            width: auto;
        }

        .fringe {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
        }

        .glyph {
            font-size: 15px;
            font-weight: 500;
            color: var(--text-dim);
            position: relative;
        }

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

        .glyph.active {
            color: var(--text);
        }

        .glyph.active::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--primary);
            box-shadow: 0 0 8px var(--primary);
        }

        /* --- Main Content --- */
        .matrix {
            padding-top: 80px;
        }

        /* --- Flare: Hero Branding (vertical_stack) --- */
        .flare {
            padding: 100px 24px 0;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .optic-mega {
            font-size: clamp(40px, 8vw, 84px);
            line-height: 1.1;
            font-weight: 800;
            margin-bottom: 24px;
            background: linear-gradient(135deg, #fff 0%, #1f9cf0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            max-width: 1000px;
        }

        .marrow-lead {
            font-size: clamp(18px, 2vw, 24px);
            color: var(--text-dim);
            max-width: 800px;
            margin-bottom: 48px;
        }

        .spark-knot {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            margin-bottom: 80px;
        }

        .blink-primary {
            background: var(--primary);
            color: white;
            padding: 18px 40px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 18px;
            box-shadow: 0 10px 30px rgba(31, 156, 240, 0.3);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .blink-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(31, 156, 240, 0.4);
        }

        .spire-portal {
            width: 100%;
            max-width: 1400px;
            border-radius: var(--radius);
            box-shadow: 0 40px 100px rgba(0,0,0,0.5);
            margin-bottom: -100px;
            position: relative;
            z-index: 2;
            border: 1px solid rgba(255,255,255,0.05);
        }

        /* --- Article: Security Architecture --- */
        .proof {
            background: #080a0f;
            padding: 240px 24px 120px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 60px;
            align-items: center;
        }

        .vein-half {
            flex: 1;
            min-width: 320px;
            max-width: 600px;
        }

        .optic-sub {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 24px;
            color: #fff;
        }

        .marrow-standard {
            font-size: 18px;
            color: var(--text-dim);
            margin-bottom: 32px;
            line-height: 1.8;
        }

        .spire-detail {
            width: 100%;
            border-radius: var(--radius);
            box-shadow: 0 20px 50px rgba(0,0,0,0.3);
        }

        /* --- Div: Capability AI --- */
        .capability-ai {
            padding: 120px 24px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .halo-optic {
            text-align: center;
            margin-bottom: 80px;
        }

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

        .prism {
            background: var(--surface);
            padding: 48px;
            border-radius: var(--radius);
            border: 1px solid rgba(255,255,255,0.05);
            transition: var(--transition);
        }

        .prism:hover {
            border-color: var(--primary);
            background: rgba(31, 156, 240, 0.05);
            transform: translateY(-5px);
        }

        .thread-thread {
            width: 64px;
            height: 64px;
            background: rgba(31, 156, 240, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 32px;
            color: var(--primary);
        }

        /* --- Div: Tech Blog Preview --- */
        .capability-blog {
            padding: 120px 24px;
            background: linear-gradient(to bottom, #05070a, #0d1117);
        }

        .vault-blog {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            background: var(--surface);
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.05);
        }

        .spire-blog {
            flex: 1.2;
            min-width: 320px;
            height: 500px;
            object-fit: cover;
        }

        .core-vein {
            flex: 1;
            padding: 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-width: 320px;
        }

        /* --- Div: Community Ecosystem --- */
        .detail-community {
            padding: 140px 24px;
            text-align: center;
            background-image: radial-gradient(circle at center, rgba(31, 156, 240, 0.1) 0%, transparent 70%);
        }

        .spire-comm {
            max-width: 1000px;
            width: 100%;
            margin: 60px auto 0;
            border-radius: var(--radius);
            mask-image: linear-gradient(to bottom, black 80%, transparent);
        }

        /* --- Article: Support Portal --- */
        .faq {
            padding: 120px 24px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .prism-faq {
            margin-bottom: 24px;
            padding: 32px;
            background: #0d1117;
            border-radius: var(--radius);
            border: 1px solid rgba(255,255,255,0.03);
        }

        .optic-q {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--primary);
        }

        /* --- Abyss: Footer --- */
        .leaf {
            background: #020305;
            padding: 100px 24px 60px;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        .origin-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 60px;
            margin-bottom: 80px;
        }

        .optic-foot {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 24px;
            color: #fff;
        }

        .tether-fringe {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .glyph-foot {
            color: var(--text-dim);
            font-size: 15px;
        }

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

        .halo-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.05);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            color: #4b5563;
            font-size: 14px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .fringe {
                display: none;
            }
            .optic-mega {
                font-size: 48px;
            }
            .proof {
                padding: 160px 24px 80px;
            }
            .prism-grid {
                grid-template-columns: 1fr;
            }
            .core-vein {
                padding: 30px;
            }
            .spire-portal {
                margin-bottom: -40px;
            }
        }

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

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

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

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

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

.orbit-twig a.orbit-orbit-glyph.orbit-glyph-2 {
    --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;
}

.orbit-twig a.orbit-orbit-glyph.orbit-glyph-2,
.orbit-twig a.orbit-orbit-glyph.orbit-glyph-2:hover,
.orbit-twig a.orbit-orbit-glyph.orbit-glyph-2:focus,
.orbit-twig a.orbit-orbit-glyph.orbit-glyph-2:active,
.orbit-twig a.orbit-orbit-glyph.orbit-glyph-2.active,
.orbit-twig a.orbit-orbit-glyph.orbit-glyph-2[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);
}

.orbit-twig{
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(5, 7, 10, 0.8);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

.orbit-twig .orbit-vein{
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }

.orbit-twig .orbit-pixel{
            height: 40px;
            display: flex;
            align-items: center;
        }

.orbit-twig .orbit-pixel img{
            height: 32px;
            width: auto;
        }

.orbit-twig .orbit-fringe{
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
        }

.orbit-twig .orbit-glyph-2{
            font-size: 15px;
            font-weight: 500;
            color: #a0a0ab;
            position: relative;
        }

.orbit-twig .orbit-glyph-2:hover{
            color: #1f9cf0;
        }

.orbit-twig .orbit-glyph-2.active{
            color: #ffffff;
        }

.orbit-twig .orbit-glyph-2.active::after{
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #1f9cf0;
            box-shadow: 0 0 8px #1f9cf0;
        }

.orbit-twig .orbit-blink-primary{
            background: #1f9cf0;
            color: white;
            padding: 18px 40px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 18px;
            box-shadow: 0 10px 30px rgba(31, 156, 240, 0.3);
            display: flex;
            align-items: center;
            gap: 10px;
        }

.orbit-twig .orbit-blink-primary:hover{
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(31, 156, 240, 0.4);
        }

@media (max-width: 768px){.orbit-twig .orbit-fringe{
                display: none;
            }}

.orbit-twig {
    background: rgb(5, 7, 10);
    background-image: none;
}

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

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

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

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

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

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

.abyss-leaf .abyss-vein{
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }

.abyss-leaf .abyss-marrow-standard{
            font-size: 18px;
            color: #a0a0ab;
            margin-bottom: 32px;
            line-height: 1.8;
        }

.abyss-leaf{
            background: #020305;
            padding: 100px 24px 60px;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

.abyss-leaf .abyss-origin-grid{
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 60px;
            margin-bottom: 80px;
        }

.abyss-leaf .abyss-optic-foot{
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 24px;
            color: #fff;
        }

.abyss-leaf .abyss-tether-fringe{
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

.abyss-leaf .abyss-glyph-foot{
            color: #a0a0ab;
            font-size: 15px;
        }

.abyss-leaf .abyss-glyph-foot:hover{
            color: #1f9cf0;
        }

.abyss-leaf .abyss-halo-bottom{
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.05);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            color: #4b5563;
            font-size: 14px;
        }