:root {
            --accent: #f0e6ff;
            --primary: #8d57d4;
            --primary-hover: #7b46c2;
            --dark: #120e1a;
            --light: #f8f6fc;
            --text: #1f1b29;
            --text-muted: #6a5e80;
            --radius-sm: 4px;
            --radius-lg: 10px;
            --shadow: 0 10px 30px rgba(141, 87, 212, 0.08);
            --shadow-hover: 0 20px 40px rgba(141, 87, 212, 0.16);
            --transition: 0.25s ease;
        }

        * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans CJK SC", sans-serif;
            background-color: var(--light);
            color: var(--text);
            line-height: 1.7;
            word-break: break-word;
            overflow-wrap: break-word;
            -webkit-font-smoothing: antialiased;
        }

        /* 顶部导航复用 */
        .spire {
            background-color: rgba(18, 14, 26, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(141, 87, 212, 0.15);
        }

        .strada {
            max-width: 1200px;
            margin: 0 auto;
            padding: 16px 24px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

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

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

        .nexus {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            min-width: 0;
        }

        .nexus-tether {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
            padding: 6px 0;
        }

        .nexus-tether:hover,
        .nexus-tether.active {
            color: #ffffff;
        }

        .nexus-tether.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--primary);
            border-radius: 2px;
        }

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

        .warp-mini {
            background-color: var(--primary);
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 18px;
            border-radius: var(--radius-sm);
            box-shadow: 0 4px 15px rgba(141, 87, 212, 0.3);
            transition: var(--transition);
            font-size: 14px;
        }

        .warp-mini:hover {
            background-color: var(--primary-hover);
            transform: translateY(-1px);
        }

        /* 核心布局 */
        .sphere {
            width: 100%;
        }

        /* 首屏 Section - Hero (Dark Mode Variant) */
        .apex {
            background: linear-gradient(135deg, #120e1a 0%, #1e152d 100%);
            color: #ffffff;
            padding: 100px 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-bottom: 1px solid rgba(141, 87, 212, 0.1);
        }

        .matrix {
            max-width: 1200px;
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 60px;
        }

        .conduit {
            flex: 1.2;
            min-width: 320px;
        }

        .mirage-sheath {
            flex: 0.8;
            min-width: 320px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .mirage {
            max-width: 100%;
            height: auto;
            border-radius: var(--radius-lg);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(141, 87, 212, 0.2);
            transition: var(--transition);
            display: block;
        }

        .mirage:hover {
            transform: translateY(-5px) scale(1.01);
            box-shadow: 0 30px 60px rgba(141, 87, 212, 0.25);
        }

        .vertex-primary {
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 800;
            line-height: 1.25;
            color: #ffffff;
            margin: 0 0 20px 0;
            word-break: keep-all;
        }

        .scribe-slogan {
            font-size: clamp(16px, 1.8vw, 18px);
            color: rgba(255, 255, 255, 0.7);
            margin: 0 0 36px 0;
            line-height: 1.6;
        }

        .cluster {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 40px;
        }

        .bead {
            display: flex;
            align-items: center;
            gap: 12px;
            color: rgba(255, 255, 255, 0.9);
            font-size: 15px;
        }

        .crest-mark {
            width: 20px;
            height: 20px;
            fill: var(--primary);
            flex-shrink: 0;
        }

        .beacon-pulse {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .warp-primary {
            display: inline-block;
            font-weight: 600;
            padding: 14px 28px;
            border-radius: var(--radius-sm);
            background-color: var(--primary);
            color: #ffffff;
            box-shadow: 0 4px 15px rgba(141, 87, 212, 0.3);
            text-decoration: none;
            transition: var(--transition);
            text-align: center;
        }

        .warp-primary:hover {
            background-color: var(--primary-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(141, 87, 212, 0.4);
        }

        /* 核心包下载 Section - Aurora (Light Mode / Morandi Table) */
        .aurora {
            padding: 100px 24px;
            background-color: var(--light);
        }

        .seam {
            max-width: 1200px;
            margin: 0 auto 56px auto;
            text-align: center;
        }

        .vertex-secondary {
            font-size: clamp(26px, 3vw, 36px);
            font-weight: 700;
            color: var(--text);
            margin: 0 0 16px 0;
            position: relative;
            display: inline-block;
        }

        .vertex-secondary::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: var(--primary);
            border-radius: 2px;
        }

        .scribe-intro {
            font-size: 16px;
            color: var(--text-muted);
            max-width: 800px;
            margin: 16px auto 0 auto;
        }

        .matrix-options {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: flex-start;
        }

        .table-sheath {
            flex: 1.3;
            min-width: 320px;
            background-color: #ffffff;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow);
            border: 1px solid rgba(141, 87, 212, 0.04);
            overflow: hidden;
        }

        .table-sphere {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
        }

        .table-sphere th {
            background-color: var(--accent);
            color: var(--text);
            padding: 18px 24px;
            font-weight: 600;
            font-size: 14px;
            border-bottom: 1px solid rgba(141, 87, 212, 0.1);
        }

        .table-sphere td {
            padding: 22px 24px;
            border-bottom: 1px solid rgba(141, 87, 212, 0.06);
            vertical-align: middle;
            font-size: 14px;
            color: var(--text);
        }

        .table-sphere tr:last-child td {
            border-bottom: none;
        }

        .warp-secondary {
            display: inline-block;
            padding: 10px 20px;
            background-color: var(--primary);
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            border-radius: var(--radius-sm);
            font-size: 13px;
            transition: var(--transition);
            box-shadow: 0 2px 8px rgba(141, 87, 212, 0.2);
            text-align: center;
        }

        .warp-secondary:hover {
            background-color: var(--primary-hover);
            transform: translateY(-1px);
        }

        .warp-outline {
            display: inline-block;
            padding: 9px 18px;
            background-color: transparent;
            color: var(--primary);
            border: 1px solid var(--primary);
            text-decoration: none;
            font-weight: 600;
            border-radius: var(--radius-sm);
            font-size: 13px;
            transition: var(--transition);
            text-align: center;
        }

        .warp-outline:hover {
            background-color: var(--accent);
            transform: translateY(-1px);
        }

        .shard-sheath {
            flex: 0.7;
            min-width: 320px;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .capsul-mirage {
            width: 100%;
            height: auto;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow);
            border: 1px solid rgba(141, 87, 212, 0.08);
            transition: var(--transition);
            display: block;
        }

        .capsul-mirage:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }

        .capsul-notice {
            background-color: #ffffff;
            padding: 24px;
            border-radius: var(--radius-lg);
            border-left: 4px solid var(--primary);
            box-shadow: var(--shadow);
        }

        .scribe-notice-vertex {
            font-weight: 700;
            color: var(--text);
            margin: 0 0 8px 0;
            font-size: 15px;
        }

        .scribe-notice-desc {
            font-size: 13px;
            color: var(--text-muted);
            margin: 0;
            line-height: 1.6;
        }

        /* 常见问题排查 Section - Corona (Light Mode Grid) */
        .corona {
            padding: 100px 24px;
            background-color: #ffffff;
            border-top: 1px solid rgba(141, 87, 212, 0.06);
        }

        .matrix-faq {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .shard {
            background-color: var(--light);
            padding: 36px;
            border-radius: var(--radius-lg);
            border: 1px solid rgba(141, 87, 212, 0.04);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .shard:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow);
            background-color: #ffffff;
            border-color: rgba(141, 87, 212, 0.15);
        }

        .vertex-question {
            font-size: 18px;
            font-weight: 700;
            color: var(--text);
            margin: 0;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            line-height: 1.4;
        }

        .crest-question {
            width: 24px;
            height: 24px;
            fill: var(--primary);
            flex-shrink: 0;
            margin-top: 2px;
        }

        .scribe-answer {
            font-size: 14.5px;
            color: var(--text-muted);
            margin: 0;
            line-height: 1.7;
        }

        /* 页脚 Section - Wake */
        .wake {
            background-color: var(--dark);
            color: #ffffff;
            padding: 80px 24px 40px 24px;
            border-top: 1px solid rgba(141, 87, 212, 0.15);
        }

        .bedrock {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 48px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            padding-bottom: 48px;
        }

        .abyss-brand {
            flex: 1.5;
            min-width: 280px;
        }

        .abyss-brand h4 {
            font-size: 24px;
            font-weight: 800;
            color: #ffffff;
            margin: 0 0 16px 0;
            letter-spacing: 0.5px;
        }

        .abyss-brand p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
            max-width: 400px;
            margin: 0;
            line-height: 1.6;
        }

        .abyss-links {
            flex: 1;
            min-width: 200px;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .tether-abyss {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 14px;
            transition: var(--transition);
            width: fit-content;
        }

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

        .abyss-scribe {
            max-width: 1200px;
            margin: 40px auto 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            color: rgba(255, 255, 255, 0.4);
            font-size: 13px;
        }

        /* 响应式适配 */
        @media (max-width: 992px) {
            .matrix {
                flex-direction: column;
                gap: 48px;
            }
            .mirage-sheath {
                width: 100%;
            }
            .matrix-options {
                flex-direction: column;
            }
            .table-sheath,
            .shard-sheath {
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            .strada {
                flex-direction: column;
                gap: 16px;
                align-items: center;
                text-align: center;
            }
            .nexus {
                justify-content: center;
                gap: 20px;
            }
            .beacon {
                width: 100%;
                justify-content: center;
            }
            .warp-mini {
                width: 80%;
                text-align: center;
            }
            .table-sphere thead {
                display: none;
            }
            .table-sphere, .table-sphere tbody, .table-sphere tr, .table-sphere td {
                display: block;
                width: 100%;
            }
            .table-sphere tr {
                border-bottom: 2px solid rgba(141, 87, 212, 0.1);
                padding: 16px 0;
            }
            .table-sphere td {
                border-bottom: none;
                padding: 8px 24px;
                box-sizing: border-box;
            }
            .table-sphere td::before {
                content: attr(data-label);
                font-weight: 700;
                display: block;
                margin-bottom: 4px;
                color: var(--primary);
                font-size: 12px;
                text-transform: uppercase;
            }
            .abyss-brand, .abyss-links {
                min-width: 100%;
            }
            .abyss-scribe {
                flex-direction: column;
                text-align: center;
                gap: 12px;
            }
        }

.nexus-spire{
            position: sticky;
            top: 0;
            z-index: 1000;
            background-color: rgba(248, 246, 252, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(141, 87, 212, 0.1);
        }

.nexus-spire .nexus-strada{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            max-width: 1300px;
            margin: 0 auto;
            padding: 16px 24px;
        }

.nexus-spire .nexus-glyph{
            display: flex;
            align-items: center;
            justify-content: center;
        }

.nexus-spire .nexus-glyph img{
            height: 38px;
            width: auto;
            display: block;
        }

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

.nexus-spire .nexus-nexus-tether{
            font-size: 15px;
            font-weight: 500;
            padding: 8px 18px;
            border-radius: 4px;
            color: #1f1b29;
            transition: all 0.25s ease;
        }

.nexus-spire .nexus-nexus-tether:hover{
            color: #8d57d4;
            background-color: rgba(141, 87, 212, 0.05);
        }

.nexus-spire .nexus-nexus-tether.active{
            color: #ffffff;
            background-color: #8d57d4;
        }

.nexus-spire .nexus-beacon{
            display: flex;
            align-items: center;
        }

.nexus-spire .nexus-warp-mini{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 600;
            padding: 8px 16px;
            border-radius: 4px;
            background-color: #1f1b29;
            color: #ffffff;
            transition: all 0.25s ease;
        }

.nexus-spire .nexus-warp-mini:hover{
            background-color: #8d57d4;
            color: #ffffff;
        }

@media (max-width: 768px){.nexus-spire .nexus-strada{
                padding: 12px 16px;
            }

.nexus-spire .nexus-nexus{
                order: 3;
                width: 100%;
                justify-content: center;
                margin-top: 15px;
            }}

.nexus-spire {
    background: rgb(248, 246, 252);
    background-image: none;
}

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

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

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

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

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

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

.anchor-wake{
            background-color: #1f1b29;
            color: #88809c;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

.anchor-wake .anchor-abyss{
            max-width: 1300px;
            margin: 0 auto;
            padding: 60px 24px 30px 24px;
        }

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

.anchor-wake .anchor-anchor-brand{
            flex: 1 1 300px;
        }

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

.anchor-wake .anchor-scribe-wake{
            font-size: 14px;
            line-height: 1.6;
            max-width: 280px;
        }

.anchor-wake .anchor-anchor-links{
            display: flex;
            flex-wrap: wrap;
            gap: 60px;
        }

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

.anchor-wake .anchor-vertex-wake{
            font-size: 14px;
            font-weight: 700;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

.anchor-wake .anchor-tether{
            font-size: 14px;
            transition: color 0.25s ease;
        }

.anchor-wake .anchor-tether:hover{
            color: #b894ec;
        }

.anchor-wake .anchor-anchor-bottom{
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 30px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            font-size: 13px;
        }

@media (max-width: 1024px){.anchor-wake .anchor-anchor-links{
                gap: 40px;
            }}

@media (max-width: 768px){.anchor-wake .anchor-bedrock{
                flex-direction: column;
                gap: 30px;
            }

.anchor-wake .anchor-anchor-links{
                flex-direction: column;
                gap: 30px;
            }}