/* CSS Reset & Variable Tokens */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --hue-primary: #72b6dd;
            --hue-primary-dark: #4d99c6;
            --hue-primary-light: #eef7fc;
            --hue-slate: #0f172a;
            --hue-muted: #475569;
            --hue-subtle: #64748b;
            --hue-border: #e2e8f0;
            --hue-bg-soft: #f8fafc;
            --hue-white: #ffffff;
            --radius-sm: 6px;
            --radius-md: 8px;
            --radius-lg: 10px;
            --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
            --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08);
            --shadow-lg: 0 20px 40px -10px rgba(114, 182, 221, 0.22);
            --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            --speed-transition: 0.35s ease;
        }

        body {
            font-family: var(--font-main);
            background-color: var(--hue-white);
            color: var(--hue-slate);
            line-height: 1.65;
            word-break: break-word;
            overflow-wrap: break-word;
            -webkit-font-smoothing: antialiased;
        }

        /* Top Scalar Shell & Nav Prism */
        .scalar {
            position: sticky;
            top: 0;
            z-index: 1000;
            background-color: rgba(255, 255, 255, 0.94);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--hue-border);
            box-shadow: var(--shadow-sm);
        }

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

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

        .glyph img {
            height: 34px;
            width: auto;
            display: block;
        }

        .axis {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .vortex-trace {
            text-decoration: none;
            color: var(--hue-muted);
            font-size: 15px;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: var(--radius-sm);
            transition: all var(--speed-transition);
        }

        .vortex-trace:hover,
        .vortex-trace.active {
            color: var(--hue-primary-dark);
            background-color: var(--hue-primary-light);
        }

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

        /* Container Layout Engine */
        .vault {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

        /* Section 1: Hero Dashboard (offset_overlap) */
        .focal {
            position: relative;
            padding: 70px 0 90px;
            background: linear-gradient(145deg, #f8fafc 0%, #eef6fc 50%, #ffffff 100%);
            overflow: hidden;
            border-bottom: 1px solid var(--hue-border);
        }

        .sphere {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            position: relative;
            min-width: 0;
        }

        .zenith {
            flex: 1 1 540px;
            min-width: 0;
            z-index: 2;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(16px);
            padding: 44px;
            border-radius: var(--radius-lg);
            border: 1px solid rgba(114, 182, 221, 0.3);
            box-shadow: var(--shadow-lg);
            margin-right: -70px;
            position: relative;
        }

        .glare {
            flex: 1 1 580px;
            min-width: 0;
            transform: translate(50px, 35px);
            z-index: 1;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
            border: 1px solid var(--hue-border);
            background: var(--hue-slate);
        }

        .glare img.strand {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }

        .spark-vision {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 14px;
            background: var(--hue-primary-light);
            border: 1px solid rgba(114, 182, 221, 0.4);
            border-radius: 20px;
            color: var(--hue-primary-dark);
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        h1.index {
            font-size: 38px;
            line-height: 1.25;
            font-weight: 800;
            color: var(--hue-slate);
            margin-bottom: 18px;
            letter-spacing: -0.02em;
        }

        p.metric {
            font-size: 16px;
            color: var(--hue-muted);
            margin-bottom: 28px;
            line-height: 1.7;
        }

        .anchor-row {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-bottom: 32px;
        }

        .pulse {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 13px 28px;
            background-color: var(--hue-slate);
            color: var(--hue-white);
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            border-radius: var(--radius-md);
            transition: all var(--speed-transition);
            box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
        }

        .pulse:hover {
            background-color: var(--hue-primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(77, 153, 198, 0.3);
        }

        .trigger {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 13px 24px;
            background-color: var(--hue-white);
            color: var(--hue-slate);
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            border-radius: var(--radius-md);
            border: 1px solid var(--hue-border);
            transition: all var(--speed-transition);
        }

        .trigger:hover {
            border-color: var(--hue-primary);
            color: var(--hue-primary-dark);
            background-color: var(--hue-primary-light);
        }

        .facet-signal {
            display: flex;
            flex-direction: column;
            gap: 12px;
            border-top: 1px dashed var(--hue-border);
            padding-top: 24px;
        }

        .facet {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: var(--hue-slate);
            font-weight: 500;
        }

        .vector {
            flex-shrink: 0;
            width: 20px;
            height: 20px;
        }

        /* Section 2: Capability Matrix */
        .orbit {
            padding: 90px 0;
            background-color: var(--hue-white);
        }

        .scalar-center {
            text-align: center;
            max-width: 780px;
            margin: 0 auto 60px;
        }

        h2.index {
            font-size: 30px;
            font-weight: 700;
            color: var(--hue-slate);
            margin-bottom: 14px;
            letter-spacing: -0.01em;
        }

        .grid-two {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            min-width: 0;
        }

        .shard {
            flex: 1 1 450px;
            min-width: 0;
            background: var(--hue-white);
            border: 1px solid var(--hue-border);
            border-radius: var(--radius-lg);
            padding: 36px;
            box-shadow: var(--shadow-sm);
            transition: all var(--speed-transition);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .shard:hover {
            box-shadow: var(--shadow-md);
            border-color: var(--hue-primary);
            transform: translateY(-4px);
        }

        .shard-head {
            margin-bottom: 20px;
        }

        .vision-tag {
            display: inline-block;
            padding: 4px 10px;
            background: var(--hue-bg-soft);
            border: 1px solid var(--hue-border);
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
            color: var(--hue-subtle);
            margin-bottom: 12px;
        }

        h3.index {
            font-size: 22px;
            font-weight: 700;
            color: var(--hue-slate);
            margin-bottom: 12px;
        }

        .strand-layer {
            border-radius: var(--radius-md);
            overflow: hidden;
            margin: 20px 0;
            border: 1px solid var(--hue-border);
            background-color: var(--hue-bg-soft);
        }

        .strand-layer img.strand {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Section 3: Engine Architecture */
        .layer {
            padding: 90px 0;
            background-color: var(--hue-bg-soft);
            border-top: 1px solid var(--hue-border);
            border-bottom: 1px solid var(--hue-border);
        }

        .grid-three {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            min-width: 0;
        }

        .node {
            flex: 1 1 340px;
            min-width: 0;
            background: var(--hue-white);
            border: 1px solid var(--hue-border);
            border-radius: var(--radius-md);
            padding: 28px;
            box-shadow: var(--shadow-sm);
        }

        .vector-box {
            width: 48px;
            height: 48px;
            border-radius: var(--radius-md);
            background: var(--hue-primary-light);
            border: 1px solid rgba(114, 182, 221, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--hue-primary-dark);
        }

        /* Section 4: Global Decision Matrix Overview */
        .anchor {
            padding: 90px 0;
            background-color: var(--hue-white);
        }

        .timeline-wrap {
            display: flex;
            flex-direction: column;
            gap: 24px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .timeline-step {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            background: var(--hue-white);
            border: 1px solid var(--hue-border);
            border-left: 4px solid var(--hue-primary);
            padding: 28px;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
            align-items: center;
        }

        .step-num {
            font-size: 28px;
            font-weight: 800;
            color: var(--hue-primary-dark);
            min-width: 50px;
        }

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

        .trace-inline {
            color: var(--hue-primary-dark);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            margin-top: 8px;
        }

        .trace-inline:hover {
            text-decoration: underline;
        }

        /* Section 5: Conversion Banner */
        aside.spark {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--hue-slate) 0%, #1e293b 100%);
            color: var(--hue-white);
        }

        .focal-box {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 48px;
            border-radius: var(--radius-lg);
        }

        .focal-metric {
            flex: 1 1 500px;
            min-width: 0;
        }

        .focal-metric h2.index {
            color: var(--hue-white);
            font-size: 32px;
        }

        .focal-metric p.metric {
            color: #94a3b8;
            margin-bottom: 0;
        }

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

        .pulse-light {
            background-color: var(--hue-primary);
            color: var(--hue-slate);
        }

        .pulse-light:hover {
            background-color: #8ac3e6;
            color: var(--hue-slate);
        }

        /* Footer Bedrock */
        .pivot {
            background-color: #0b1120;
            color: #94a3b8;
            border-top: 1px solid #1e293b;
            padding: 60px 0 40px;
            font-size: 14px;
        }

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

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

        .brand-name {
            font-size: 22px;
            font-weight: 800;
            color: var(--hue-white);
            margin-bottom: 12px;
            letter-spacing: -0.01em;
        }

        .pivot-links {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .pivot-links a {
            color: #94a3b8;
            text-decoration: none;
            transition: color var(--speed-transition);
        }

        .pivot-links a:hover {
            color: var(--hue-primary);
        }

        .bottom-metric {
            border-top: 1px solid #1e293b;
            padding-top: 28px;
            text-align: center;
            font-size: 13px;
            color: #64748b;
        }

        /* Responsive Mechanics */
        @media (max-width: 992px) {
            .zenith {
                margin-right: 0;
                margin-bottom: 24px;
            }
            .glare {
                transform: none;
            }
            h1.index {
                font-size: 32px;
            }
        }

        @media (max-width: 768px) {
            .vortex {
                height: auto;
                padding: 16px;
                flex-direction: column;
                gap: 16px;
            }
            .axis {
                width: 100%;
                justify-content: center;
            }
            .zenith {
                padding: 24px;
            }
            .shard {
                flex: 1 1 100%;
            }
            .node {
                flex: 1 1 100%;
            }
            .focal-box {
                padding: 28px;
            }
        }

.vortex-scalar {
    font-family: var(--font-main);
    line-height: 1.65;
    word-break: break-word;
    color: var(--hue-slate);
}
.vortex-scalar,
.vortex-scalar *,
.vortex-scalar *::before,
.vortex-scalar *::after {
    box-sizing: border-box;
}

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

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

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

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

.vortex-scalar a.vortex-vortex-trace {
    --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;
}

.vortex-scalar a.vortex-vortex-trace,
.vortex-scalar a.vortex-vortex-trace:hover,
.vortex-scalar a.vortex-vortex-trace:focus,
.vortex-scalar a.vortex-vortex-trace:active,
.vortex-scalar a.vortex-vortex-trace.active,
.vortex-scalar a.vortex-vortex-trace[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);
}

.vortex-scalar{
            position: sticky;
            top: 0;
            z-index: 1000;
            background-color: rgba(255, 255, 255, 0.94);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid #e2e8f0;
            box-shadow: 0 2px 4px rgba(15, 23, 42, 0.04);
        }

.vortex-scalar .vortex-vortex{
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 24px;
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

.vortex-scalar .vortex-glyph{
            display: flex;
            align-items: center;
            gap: 12px;
        }

.vortex-scalar .vortex-glyph img{
            height: 34px;
            width: auto;
            display: block;
        }

.vortex-scalar .vortex-axis{
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

.vortex-scalar .vortex-vortex-trace{
            text-decoration: none;
            color: #475569;
            font-size: 15px;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 6px;
            transition: all 0.35s ease;
        }

.vortex-scalar .vortex-vortex-trace:hover, .vortex-scalar .vortex-vortex-trace.active{
            color: #4d99c6;
            background-color: #eef7fc;
        }

.vortex-scalar .vortex-prism{
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

.vortex-scalar .vortex-pulse{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 13px 28px;
            background-color: #0f172a;
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            border-radius: 8px;
            transition: all 0.35s ease;
            box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
        }

.vortex-scalar .vortex-pulse:hover{
            background-color: #4d99c6;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(77, 153, 198, 0.3);
        }

@media (max-width: 768px){.vortex-scalar .vortex-vortex{
                height: auto;
                padding: 16px;
                flex-direction: column;
                gap: 16px;
            }

.vortex-scalar .vortex-axis{
                width: 100%;
                justify-content: center;
            }}

.vortex-scalar {
    background: rgb(255, 255, 255);
    background-image: none;
}

.bedrock-pivot {
    font-family: var(--font-main);
    line-height: 1.65;
    word-break: break-word;
    color: var(--hue-slate);
}
.bedrock-pivot,
.bedrock-pivot *,
.bedrock-pivot *::before,
.bedrock-pivot *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.bedrock-pivot .bedrock-vault{
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

.bedrock-pivot h1.bedrock-index{
            font-size: 38px;
            line-height: 1.25;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 18px;
            letter-spacing: -0.02em;
        }

.bedrock-pivot p.bedrock-metric{
            font-size: 16px;
            color: #475569;
            margin-bottom: 28px;
            line-height: 1.7;
        }

.bedrock-pivot h2.bedrock-index{
            font-size: 30px;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 14px;
            letter-spacing: -0.01em;
        }

.bedrock-pivot h3.bedrock-index{
            font-size: 22px;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 12px;
        }

.bedrock-pivot{
            background-color: #0b1120;
            color: #94a3b8;
            border-top: 1px solid #1e293b;
            padding: 60px 0 40px;
            font-size: 14px;
        }

.bedrock-pivot .bedrock-bedrock{
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: space-between;
            margin-bottom: 40px;
        }

.bedrock-pivot .bedrock-datum{
            flex: 1 1 300px;
            min-width: 0;
        }

.bedrock-pivot .bedrock-brand-name{
            font-size: 22px;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 12px;
            letter-spacing: -0.01em;
        }

.bedrock-pivot .bedrock-pivot-links{
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

.bedrock-pivot .bedrock-pivot-links a{
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.35s ease;
        }

.bedrock-pivot .bedrock-pivot-links a:hover{
            color: #72b6dd;
        }

.bedrock-pivot .bedrock-bottom-metric{
            border-top: 1px solid #1e293b;
            padding-top: 28px;
            text-align: center;
            font-size: 13px;
            color: #64748b;
        }

@media (max-width: 992px){.bedrock-pivot h1.bedrock-index{
                font-size: 32px;
            }}