:root {
            --color-bg: #090d16;
            --color-surface-1: #111726;
            --color-surface-2: #182238;
            --color-surface-3: #1f2d4a;
            --color-border: #263654;
            --color-border-bright: #3a527c;
            --color-primary: #3472c2;
            --color-primary-glow: rgba(52, 114, 194, 0.35);
            --color-accent: #38bdf8;
            --color-accent-subtle: rgba(56, 189, 248, 0.15);
            --color-script-main: #f1f5f9;
            --color-script-subtle: #94a3b8;
            --font-main: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", sans-serif;
        }

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

        body {
            background-color: var(--color-bg);
            color: var(--color-script-main);
            font-family: var(--font-main);
            line-height: 1.7;
            word-break: break-word;
            overflow-wrap: break-word;
            -webkit-font-smoothing: antialiased;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        .domain-shell {
            width: 100%;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            background: radial-gradient(circle at 50% 0%, rgba(52, 114, 194, 0.14) 0%, transparent 65%),
                        radial-gradient(circle at 85% 45%, rgba(56, 189, 248, 0.06) 0%, transparent 50%),
                        var(--color-bg);
        }

        /* 复用首页导航栏样式并包含激活态 */
        .crest-chassis {
            width: 100%;
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(9, 13, 22, 0.88);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--color-border);
        }

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

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

        .emblem img {
            height: 38px;
            width: auto;
            object-fit: contain;
        }

        .azimuth-compass [role="navigation"] {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 2rem;
        }

        .azimuth-trace {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--color-script-subtle);
            transition: color 0.15s ease, border-color 0.15s ease;
            padding: 0.4rem 0;
            border-bottom: 2px solid transparent;
        }

        .azimuth-trace:hover,
        .azimuth-trace.active {
            color: #ffffff;
            border-bottom-color: var(--color-primary);
        }

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

        .trigger-prime {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.6rem 1.4rem;
            font-size: 0.9rem;
            font-weight: 600;
            color: #ffffff;
            background: linear-gradient(135deg, var(--color-primary) 0%, #1d4ed8 100%);
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 6px;
            box-shadow: 0 4px 15px var(--color-primary-glow);
            transition: transform 0.15s ease, box-shadow 0.15s ease;
        }

        .trigger-prime:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(52, 114, 194, 0.5);
        }

        /* 主容器 */
        .chassis-stratum {
            width: 100%;
            flex: 1;
        }

        /* Section 1: Hero Acquire */
        .zenith-stratum {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 3.5rem 1.5rem;
        }

        .zenith-prism {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
        }

        .zenith-crest {
            max-width: 880px;
        }

        .chip-cluster {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin-bottom: 1.25rem;
        }

        .mark-token {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.35rem 0.85rem;
            border-radius: 999px;
            background: rgba(56, 189, 248, 0.1);
            border: 1px solid rgba(56, 189, 248, 0.3);
            color: var(--color-accent);
            font-size: 0.825rem;
            font-weight: 600;
        }

        .thesis-zenith {
            font-size: clamp(1.8rem, 3.5vw, 2.75rem);
            font-weight: 800;
            line-height: 1.25;
            color: #ffffff;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
        }

        .script-zenith {
            font-size: 1.1rem;
            color: var(--color-script-subtle);
            max-width: 760px;
            line-height: 1.7;
        }

        /* Showcase Preview */
        .visual-aperture {
            width: 100%;
            position: relative;
            border-radius: 11px;
            border: 1px solid var(--color-border-bright);
            background: var(--color-surface-1);
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
        }

        .visual-surface {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            max-height: 480px;
        }

        .visual-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 1.5rem;
            background: linear-gradient(0deg, rgba(9, 13, 22, 0.95) 0%, rgba(9, 13, 22, 0) 100%);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: flex-end;
            gap: 1rem;
        }

        .overlay-info {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .overlay-status {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.85rem;
            color: #38df88;
            font-weight: 600;
        }

        .overlay-status::before {
            content: '';
            display: inline-block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: #38df88;
            box-shadow: 0 0 10px #38df88;
        }

        /* Download Package Matrix */
        .matrix-cluster {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 1.5rem;
            margin-top: 1rem;
        }

        .matrix-nexus {
            background: var(--color-surface-1);
            border: 1px solid var(--color-border);
            border-radius: 11px;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
            position: relative;
        }

        .matrix-nexus:hover {
            transform: translateY(-4px);
            border-color: var(--color-primary);
            box-shadow: 0 12px 30px rgba(52, 114, 194, 0.25);
        }

        .matrix-nexus.highlight {
            border-color: var(--color-accent);
            background: linear-gradient(180deg, var(--color-surface-2) 0%, var(--color-surface-1) 100%);
        }

        .nexus-head {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.25rem;
        }

        .glyph-crest {
            width: 52px;
            height: 52px;
            border-radius: 10px;
            background: var(--color-surface-3);
            border: 1px solid var(--color-border-bright);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-accent);
            flex-shrink: 0;
        }

        .thesis-nexus {
            font-size: 1.2rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 0.35rem;
        }

        .script-nexus {
            font-size: 0.875rem;
            color: var(--color-script-subtle);
            line-height: 1.55;
        }

        .gauge-cluster {
            margin: 1.25rem 0;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }

        .gauge-line {
            display: flex;
            justify-content: space-between;
            font-size: 0.825rem;
            color: var(--color-script-subtle);
        }

        .gauge-val {
            color: #ffffff;
            font-weight: 600;
        }

        .trigger-actuate {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
            width: 100%;
            padding: 0.85rem 1.5rem;
            font-weight: 700;
            font-size: 0.95rem;
            color: #ffffff;
            background: linear-gradient(135deg, var(--color-primary) 0%, #1d4ed8 100%);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 6px;
            box-shadow: 0 4px 15px var(--color-primary-glow);
            transition: background 0.15s ease, transform 0.15s ease;
            cursor: pointer;
            margin-top: 1rem;
        }

        .trigger-actuate:hover {
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
            transform: translateY(-1px);
        }

        .trigger-subtle {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
            width: 100%;
            padding: 0.85rem 1.5rem;
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--color-script-main);
            background: var(--color-surface-3);
            border: 1px solid var(--color-border-bright);
            border-radius: 6px;
            transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
            cursor: pointer;
            margin-top: 1rem;
        }

        .trigger-subtle:hover {
            background: rgba(56, 189, 248, 0.15);
            border-color: var(--color-accent);
            color: #ffffff;
        }

        /* Article: Requirements Matrix */
        .locus-stratum {
            width: 100%;
            background: var(--color-surface-1);
            border-top: 1px solid var(--color-border);
            border-bottom: 1px solid var(--color-border);
            padding: 4rem 1.5rem;
        }

        .locus-prism {
            max-width: 1400px;
            margin: 0 auto;
        }

        .locus-crest {
            margin-bottom: 2.5rem;
        }

        .thesis-locus {
            font-size: clamp(1.5rem, 2.5vw, 2.1rem);
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 0.75rem;
        }

        .script-locus {
            font-size: 1rem;
            color: var(--color-script-subtle);
            max-width: 720px;
        }

        .locus-matrix {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }

        .locus-unit {
            background: var(--color-surface-2);
            border: 1px solid var(--color-border);
            border-radius: 11px;
            padding: 1.75rem;
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .locus-head {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .glyph-locus {
            width: 44px;
            height: 44px;
            border-radius: 8px;
            background: rgba(52, 114, 194, 0.2);
            border: 1px solid var(--color-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-accent);
            flex-shrink: 0;
        }

        .thesis-subtle {
            font-size: 1.1rem;
            font-weight: 700;
            color: #ffffff;
        }

        .spec-sequence {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .spec-unit {
            font-size: 0.875rem;
            color: var(--color-script-subtle);
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
            padding-bottom: 0.75rem;
            border-bottom: 1px dashed var(--color-border);
        }

        .spec-unit:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .spec-key {
            font-weight: 600;
            color: #ffffff;
        }

        /* Aside: Release Notes */
        .matrix-stratum {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 1.5rem;
        }

        .thesis-matrix {
            font-size: clamp(1.5rem, 2.5vw, 2.1rem);
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 0.75rem;
        }

        .script-matrix {
            font-size: 1rem;
            color: var(--color-script-subtle);
            max-width: 720px;
            margin-bottom: 2.5rem;
        }

        .notes-cluster {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .notes-unit {
            background: var(--color-surface-1);
            border: 1px solid var(--color-border);
            border-radius: 11px;
            padding: 2rem;
            transition: border-color 0.15s ease;
        }

        .notes-unit:hover {
            border-color: var(--color-border-bright);
        }

        .notes-crest {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.25rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--color-border);
        }

        .notes-version {
            display: flex;
            align-items: center;
            gap: 0.85rem;
        }

        .notes-chip {
            background: var(--color-primary);
            color: #ffffff;
            padding: 0.25rem 0.75rem;
            border-radius: 4px;
            font-size: 0.85rem;
            font-weight: 700;
        }

        .notes-date {
            font-size: 0.85rem;
            color: var(--color-script-subtle);
        }

        .notes-array {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.85rem;
        }

        .notes-unit {
            font-size: 0.95rem;
            color: var(--color-script-main);
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            line-height: 1.6;
        }

        .notes-bullet {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background-color: var(--color-accent);
            margin-top: 0.6rem;
            flex-shrink: 0;
        }

        /* Div: Install Guide */
        .nexus-stratum {
            width: 100%;
            background: radial-gradient(circle at 30% 50%, rgba(52, 114, 194, 0.1) 0%, transparent 60%),
                        var(--color-surface-2);
            border-top: 1px solid var(--color-border);
            padding: 4rem 1.5rem;
        }

        .nexus-prism {
            max-width: 1400px;
            margin: 0 auto;
        }

        .thesis-nexus-guide {
            font-size: clamp(1.5rem, 2.5vw, 2.1rem);
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 0.75rem;
        }

        .script-nexus-guide {
            font-size: 1rem;
            color: var(--color-script-subtle);
            max-width: 720px;
            margin-bottom: 3rem;
        }

        .flow-sequence {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .flow-unit {
            background: var(--color-surface-1);
            border: 1px solid var(--color-border);
            border-radius: 11px;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .flow-number {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--color-primary) 0%, #1d4ed8 100%);
            color: #ffffff;
            font-weight: 800;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px var(--color-primary-glow);
        }

        .thesis-step {
            font-size: 1.15rem;
            font-weight: 700;
            color: #ffffff;
        }

        .script-step {
            font-size: 0.9rem;
            color: var(--color-script-subtle);
            line-height: 1.6;
        }

        /* 页脚区域 */
        .base-stratum {
            width: 100%;
            background: #060910;
            border-top: 1px solid var(--color-border);
            padding: 3.5rem 1.5rem 2rem 1.5rem;
        }

        .base-datum {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
        }

        .datum-anchor {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: flex-start;
            gap: 2rem;
        }

        .brand-nadir {
            max-width: 360px;
        }

        .thesis-brand {
            font-size: 1.35rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 0.75rem;
            letter-spacing: -0.01em;
        }

        .script-brand {
            font-size: 0.875rem;
            color: var(--color-script-subtle);
            line-height: 1.6;
        }

        .datum-cluster {
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
        }

        .datum-pillar {
            display: flex;
            flex-direction: column;
            gap: 0.85rem;
        }

        .thesis-pillar {
            font-size: 0.95rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 0.25rem;
        }

        .datum-trace {
            font-size: 0.875rem;
            color: var(--color-script-subtle);
            transition: color 0.15s ease;
        }

        .datum-trace:hover {
            color: var(--color-accent);
        }

        .datum-copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 1.5rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            font-size: 0.825rem;
            color: var(--color-script-subtle);
        }

        /* 响应式断点控制 */
        @media (max-width: 768px) {
            .azimuth-compass {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .azimuth-compass [role="navigation"] {
                gap: 1rem;
                width: 100%;
            }

            .azimuth-vector {
                width: 100%;
            }

            .trigger-prime {
                width: 100%;
            }

            .matrix-cluster,
            .locus-matrix,
            .flow-sequence {
                grid-template-columns: 1fr;
            }

            .visual-overlay {
                flex-direction: column;
                align-items: flex-start;
            }
        }

.azimuth-crest-chassis{
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(9, 13, 22, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid #263654;
            width: 100%;
        }

.azimuth-crest-chassis .azimuth-azimuth-compass{
            max-width: 1280px;
            margin: 0 auto;
            padding: 0.85rem 1.5rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
        }

.azimuth-crest-chassis .azimuth-emblem{
            display: flex;
            align-items: center;
            gap: 0.75rem;
            min-width: 0;
        }

.azimuth-crest-chassis .azimuth-emblem img{
            height: 34px;
            width: auto;
            object-fit: contain;
        }

.azimuth-crest-chassis .azimuth-azimuth-compass [role="navigation"]{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.5rem;
        }

.azimuth-crest-chassis .azimuth-azimuth-trace{
            padding: 0.5rem 0.9rem;
            font-size: 0.92rem;
            font-weight: 500;
            color: #94a3b8;
            border-radius: 6px;
            border: 1px solid transparent;
        }

.azimuth-crest-chassis .azimuth-azimuth-trace:hover{
            color: #f1f5f9;
            background: #182238;
            border-color: #263654;
        }

.azimuth-crest-chassis .azimuth-azimuth-trace.active{
            color: #ffffff;
            background: #1f2d4a;
            border-color: #3472c2;
            box-shadow: 0 0 12px rgba(52, 114, 194, 0.35);
        }

.azimuth-crest-chassis .azimuth-azimuth-vector{
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

.azimuth-crest-chassis .azimuth-trigger-prime{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.55rem 1.25rem;
            font-size: 0.9rem;
            font-weight: 600;
            color: #ffffff;
            background: linear-gradient(135deg, #3472c2 0%, #2558a3 100%);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 6px;
            box-shadow: 0 2px 8px rgba(52, 114, 194, 0.35);
            cursor: pointer;
        }

.azimuth-crest-chassis .azimuth-trigger-prime:hover{
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(52, 114, 194, 0.35);
            background: linear-gradient(135deg, #3d7ed4 0%, #2a63b8 100%);
        }

@media (max-width: 768px){.azimuth-crest-chassis .azimuth-azimuth-compass{
                flex-direction: column;
                align-items: flex-start;
            }

.azimuth-crest-chassis .azimuth-azimuth-compass [role="navigation"]{
                width: 100%;
                justify-content: flex-start;
                overflow-x: auto;
                white-space: nowrap;
            }}

.azimuth-crest-chassis {
    background: rgb(9, 13, 22);
    background-image: none;
}

.datum-domain-shell {
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--color-text-main);
}
.datum-domain-shell,
.datum-domain-shell *,
.datum-domain-shell *::before,
.datum-domain-shell *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.datum-domain-shell{
            width: 100%;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            background: radial-gradient(circle at 50% 0%, #172a46 0%, #090d16 65%);
        }

.datum-domain-shell .datum-crest-chassis{
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(9, 13, 22, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid #263654;
            width: 100%;
        }

.datum-domain-shell .datum-azimuth-compass{
            max-width: 1280px;
            margin: 0 auto;
            padding: 0.85rem 1.5rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
        }

.datum-domain-shell .datum-emblem{
            display: flex;
            align-items: center;
            gap: 0.75rem;
            min-width: 0;
        }

.datum-domain-shell .datum-emblem img{
            height: 34px;
            width: auto;
            object-fit: contain;
        }

.datum-domain-shell .datum-azimuth-compass [role="navigation"]{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.5rem;
        }

.datum-domain-shell .datum-azimuth-trace{
            padding: 0.5rem 0.9rem;
            font-size: 0.92rem;
            font-weight: 500;
            color: #94a3b8;
            border-radius: 6px;
            border: 1px solid transparent;
        }

.datum-domain-shell .datum-azimuth-trace:hover{
            color: #f1f5f9;
            background: #182238;
            border-color: #263654;
        }

.datum-domain-shell .datum-azimuth-trace.active{
            color: #ffffff;
            background: #1f2d4a;
            border-color: #3472c2;
            box-shadow: 0 0 12px rgba(52, 114, 194, 0.35);
        }

.datum-domain-shell .datum-azimuth-vector{
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

.datum-domain-shell .datum-trigger-prime{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.55rem 1.25rem;
            font-size: 0.9rem;
            font-weight: 600;
            color: #ffffff;
            background: linear-gradient(135deg, #3472c2 0%, #2558a3 100%);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 6px;
            box-shadow: 0 2px 8px rgba(52, 114, 194, 0.35);
            cursor: pointer;
        }

.datum-domain-shell .datum-trigger-prime:hover{
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(52, 114, 194, 0.35);
            background: linear-gradient(135deg, #3d7ed4 0%, #2a63b8 100%);
        }

.datum-domain-shell .datum-stratum-chassis{
            flex: 1;
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 4rem;
            padding-bottom: 4rem;
        }

.datum-domain-shell .datum-zenith-stratum{
            width: 100%;
            max-width: 1400px;
            margin: 1.5rem auto 0;
            padding: 0 1.5rem;
        }

.datum-domain-shell .datum-zenith-aperture{
            position: relative;
            width: 100%;
            aspect-ratio: 21 / 9;
            min-height: 380px;
            max-height: 520px;
            border-radius: 11px;
            overflow: hidden;
            border: 1px solid #3a527c;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
            background: #111726;
        }

.datum-domain-shell .datum-zenith-visual{
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center top;
            filter: brightness(0.65) contrast(1.1);
        }

.datum-domain-shell .datum-zenith-overlay{
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(9, 13, 22, 0.95) 0%, rgba(9, 13, 22, 0.5) 45%, rgba(9, 13, 22, 0.2) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 2.5rem 3rem;
            min-width: 0;
        }

.datum-domain-shell .datum-gauge-cluster{
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
            margin-bottom: 0.75rem;
        }

.datum-domain-shell .datum-gauge-unit{
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.25rem 0.75rem;
            background: rgba(52, 114, 194, 0.25);
            border: 1px solid #3472c2;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            color: #38bdf8;
        }

.datum-domain-shell .datum-thesis-zenith{
            font-size: clamp(1.6rem, 3.2vw, 2.5rem);
            font-weight: 800;
            line-height: 1.25;
            color: #ffffff;
            margin-bottom: 0.75rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
            white-space: normal;
        }

.datum-domain-shell .datum-script-zenith{
            font-size: clamp(0.95rem, 1.3vw, 1.15rem);
            color: #94a3b8;
            max-width: 860px;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

.datum-domain-shell .datum-prism-actuate{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1rem;
        }

.datum-domain-shell .datum-pivot-actuate{
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.75rem;
            font-size: 1rem;
            font-weight: 700;
            color: #ffffff;
            background: linear-gradient(135deg, #3472c2 0%, #1d4ed8 100%);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 6px;
            box-shadow: 0 4px 15px rgba(52, 114, 194, 0.35);
        }

.datum-domain-shell .datum-pivot-actuate:hover{
            transform: translateY(-2px);
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
            box-shadow: 0 6px 20px rgba(56, 189, 248, 0.4);
        }

.datum-domain-shell .datum-pivot-ghost{
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            font-size: 0.95rem;
            font-weight: 600;
            color: #f1f5f9;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid #3a527c;
            border-radius: 6px;
            backdrop-filter: blur(4px);
        }

.datum-domain-shell .datum-pivot-ghost:hover{
            background: rgba(255, 255, 255, 0.16);
            border-color: #38bdf8;
        }

.datum-domain-shell .datum-crest-head{
            margin-bottom: 2.2rem;
            text-align: left;
        }

.datum-domain-shell .datum-thesis-prime{
            font-size: clamp(1.4rem, 2.2vw, 1.9rem);
            font-weight: 700;
            color: #ffffff;
            letter-spacing: -0.01em;
            margin-bottom: 0.5rem;
        }

.datum-domain-shell .datum-script-sub{
            font-size: 1rem;
            color: #94a3b8;
            max-width: 780px;
        }

.datum-domain-shell .datum-matrix-stratum{
            display: flex;
            flex-direction: column;
        }

.datum-domain-shell .datum-matrix-cluster{
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

.datum-domain-shell .datum-nexus-unit{
            flex: 1 1 300px;
            min-width: 0;
            background: #111726;
            border: 1px solid #263654;
            border-radius: 9px;
            padding: 1.75rem;
            display: flex;
            flex-direction: column;
            transition: all 0.15s ease;
        }

.datum-domain-shell .datum-nexus-unit:hover{
            border-color: #3a527c;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            background: #182238;
        }

.datum-domain-shell .datum-glyph-shell{
            width: 48px;
            height: 48px;
            border-radius: 6px;
            background: rgba(52, 114, 194, 0.15);
            border: 1px solid rgba(52, 114, 194, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #38bdf8;
            margin-bottom: 1.25rem;
        }

.datum-domain-shell .datum-thesis-tertiary{
            font-size: 1.15rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 0.6rem;
        }

.datum-domain-shell .datum-script-body{
            font-size: 0.93rem;
            color: #94a3b8;
            line-height: 1.65;
        }

.datum-domain-shell .datum-solution-stratum{
            display: flex;
            flex-direction: column;
        }

.datum-domain-shell .datum-locus-chassis{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            background: #111726;
            border: 1px solid #263654;
            border-radius: 11px;
            padding: 2rem;
            align-items: center;
        }

.datum-domain-shell .datum-locus-info{
            flex: 1 1 400px;
            min-width: 0;
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

.datum-domain-shell .datum-locus-visual-shell{
            flex: 1 1 440px;
            min-width: 0;
            border-radius: 9px;
            overflow: hidden;
            border: 1px solid #3a527c;
            box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
        }

.datum-domain-shell .datum-locus-visual-shell img{
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

.datum-domain-shell .datum-locus-array{
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

.datum-domain-shell .datum-locus-unit{
            display: flex;
            gap: 0.85rem;
            align-items: flex-start;
        }

.datum-domain-shell .datum-glyph-dot{
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: rgba(56, 189, 248, 0.15);
            border: 1px solid #38bdf8;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 0.2rem;
            color: #38bdf8;
        }

.datum-domain-shell .datum-trust-stratum{
            display: flex;
            flex-direction: column;
        }

.datum-domain-shell .datum-trust-cluster{
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

.datum-domain-shell .datum-trust-matrix{
            flex: 1 1 320px;
            min-width: 0;
            background: linear-gradient(180deg, #182238 0%, #111726 100%);
            border: 1px solid #263654;
            border-radius: 9px;
            padding: 1.75rem;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

.datum-domain-shell .datum-trust-matrix:hover{
            border-color: #3472c2;
            box-shadow: 0 8px 24px rgba(52, 114, 194, 0.2);
        }

.datum-domain-shell .datum-trust-token{
            align-self: flex-start;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.2rem 0.6rem;
            border-radius: 4px;
            background: rgba(56, 189, 248, 0.1);
            color: #38bdf8;
            border: 1px solid rgba(56, 189, 248, 0.3);
        }

.datum-domain-shell .datum-nexus-stratum{
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

.datum-domain-shell .datum-topics-cluster{
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

.datum-domain-shell .datum-topic-matrix{
            flex: 1 1 260px;
            min-width: 0;
            background: #111726;
            border: 1px solid #263654;
            border-radius: 9px;
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            gap: 1.25rem;
        }

.datum-domain-shell .datum-topic-matrix:hover{
            border-color: #38bdf8;
            background: #182238;
        }

.datum-domain-shell .datum-trace-trace{
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.9rem;
            font-weight: 600;
            color: #38bdf8;
        }

.datum-domain-shell .datum-trace-trace:hover{
            color: #ffffff;
            transform: translateX(3px);
        }

.datum-domain-shell .datum-base-stratum{
            width: 100%;
            background: #05080e;
            border-top: 1px solid #263654;
            padding: 3.5rem 1.5rem 2rem;
            margin-top: auto;
        }

.datum-domain-shell .datum-nadir-chassis{
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 2.5rem;
            justify-content: space-between;
        }

.datum-domain-shell .datum-datum-brand{
            flex: 1 1 300px;
            min-width: 0;
            display: flex;
            flex-direction: column;
            gap: 0.85rem;
        }

.datum-domain-shell .datum-datum-name{
            font-size: 1.25rem;
            font-weight: 800;
            color: #ffffff;
            letter-spacing: -0.02em;
        }

.datum-domain-shell .datum-script-foot{
            font-size: 0.88rem;
            color: #64748b;
            line-height: 1.6;
        }

.datum-domain-shell .datum-datum-navs{
            flex: 2 1 500px;
            min-width: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: flex-end;
        }

.datum-domain-shell .datum-datum-col{
            flex: 1 1 140px;
            min-width: 0;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

.datum-domain-shell .datum-datum-thesis{
            font-size: 0.9rem;
            font-weight: 700;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

.datum-domain-shell .datum-datum-array{
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

.datum-domain-shell .datum-datum-unit{
            font-size: 0.85rem;
            color: #94a3b8;
        }

.datum-domain-shell .datum-datum-unit:hover{
            color: #38bdf8;
        }

.datum-domain-shell .datum-datum-bottom{
            max-width: 1280px;
            margin: 2.5rem auto 0;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            font-size: 0.82rem;
            color: #64748b;
        }

@media (max-width: 1024px){.datum-domain-shell .datum-zenith-aperture{
                aspect-ratio: 16 / 9;
                max-height: 440px;
            }

.datum-domain-shell .datum-zenith-overlay{
                padding: 2rem;
            }}

@media (max-width: 768px){.datum-domain-shell .datum-azimuth-compass{
                flex-direction: column;
                align-items: flex-start;
            }

.datum-domain-shell .datum-azimuth-compass [role="navigation"]{
                width: 100%;
                justify-content: flex-start;
                overflow-x: auto;
                white-space: nowrap;
            }

.datum-domain-shell .datum-zenith-aperture{
                min-height: 420px;
            }

.datum-domain-shell .datum-zenith-overlay{
                padding: 1.5rem;
            }

.datum-domain-shell .datum-prism-actuate{
                flex-direction: column;
                align-items: stretch;
            }

.datum-domain-shell .datum-pivot-actuate, .datum-domain-shell .datum-pivot-ghost{
                justify-content: center;
            }

.datum-domain-shell .datum-nexus-unit, .datum-domain-shell .datum-trust-matrix, .datum-domain-shell .datum-topic-matrix{
                flex: 1 1 100%;
            }

.datum-domain-shell .datum-datum-navs{
                justify-content: flex-start;
            }}