:root {
            --primary: #5e75fa;
            --primary-glow: rgba(94, 117, 250, 0.35);
            --accent: #38bdf8;
            --surface: #141b2d;
            --surface-light: #1e2942;
            --text-main: #f1f5f9;
            --text-muted: #94a3b8;
            --radius: 20px;
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: #0b0f19;
            color: var(--text-main);
            line-height: 1.7;
            word-break: break-word;
            overflow-wrap: break-word;
            -webkit-font-smoothing: antialiased;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: all 0.35s ease;
        }

        /* 强制导航栏组件 - 完全复用首页规范 */
        .visor {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 80px;
            background: rgba(11, 15, 25, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 5%;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            flex-wrap: wrap;
        }

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

        .sigil img {
            height: 36px;
            width: auto;
            display: block;
        }

        .passage {
            display: flex;
            align-items: center;
            gap: 32px;
            flex-wrap: wrap;
            min-width: 0;
        }

        .tether {
            color: var(--text-muted);
            font-size: 15px;
            font-weight: 500;
            position: relative;
            padding: 8px 0;
        }

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

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

        .trigger {
            background: linear-gradient(135deg, #5e75fa 0%, #4355d6 100%);
            color: #ffffff;
            border: none;
            padding: 12px 26px;
            border-radius: 14px;
            font-size: 15px;
            font-weight: 600;
            box-shadow: 0 4px 20px var(--primary-glow);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.35s ease;
            white-space: nowrap;
            min-width: 0;
        }

        .trigger:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(94, 117, 250, 0.5);
            color: #ffffff;
        }

        /* 结构主容器 */
        .sheath {
            width: 100%;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .sanctum {
            flex: 1;
            width: 100%;
            padding-top: 80px;
        }

        /* Block 1: Section Apex (Intro) */
        .apex {
            width: 100%;
            padding: 100px 5% 80px 5%;
            background: linear-gradient(180deg, rgba(30, 41, 66, 0.4) 0%, rgba(11, 15, 25, 1) 100%);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            justify-content: center;
        }

        .haven {
            max-width: 1200px;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .seal-pill {
            padding: 6px 20px;
            background: rgba(94, 117, 250, 0.12);
            border: 1px solid rgba(94, 117, 250, 0.3);
            border-radius: 30px;
            color: var(--accent);
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.05em;
            margin-bottom: 24px;
            display: inline-block;
        }

        .rubric-primary {
            font-size: clamp(32px, 5vw, 54px);
            font-weight: 800;
            line-height: 1.25;
            color: #ffffff;
            letter-spacing: -0.02em;
            margin-bottom: 24px;
            max-width: 900px;
            word-break: break-word;
        }

        .rune-lead {
            font-size: clamp(16px, 2vw, 19px);
            color: var(--text-muted);
            max-width: 820px;
            margin-bottom: 48px;
            line-height: 1.7;
        }

        .stratum-metrics {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            justify-content: center;
            width: 100%;
            max-width: 1000px;
        }

        .capsule-stat {
            flex: 1;
            min-width: 240px;
            background: var(--surface);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius);
            padding: 28px 24px;
            text-align: center;
            transition: all 0.35s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .capsule-stat:hover {
            border-color: rgba(94, 117, 250, 0.4);
            transform: translateY(-4px);
        }

        .stat-number {
            font-size: 38px;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 6px;
            background: linear-gradient(135deg, #ffffff 0%, var(--accent) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .stat-desc {
            font-size: 14px;
            color: var(--text-muted);
        }

        /* Block 2: Article Citadel (Proof - Matrix) */
        .citadel {
            width: 100%;
            padding: 90px 5%;
            background: #0b0f19;
            display: flex;
            justify-content: center;
        }

        .sanctum-sub {
            max-width: 1200px;
            width: 100%;
        }

        .head-stratum {
            text-align: center;
            margin-bottom: 60px;
        }

        .rubric-secondary {
            font-size: clamp(26px, 3.5vw, 38px);
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 16px;
            letter-spacing: -0.01em;
        }

        .rune-sub {
            font-size: 16px;
            color: var(--text-muted);
            max-width: 720px;
            margin: 0 auto;
        }

        .stratum-matrix {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            width: 100%;
        }

        .capsule-chain {
            background: var(--surface);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius);
            padding: 32px 28px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: all 0.35s ease;
            position: relative;
            overflow: hidden;
            min-width: 0;
        }

        .capsule-chain::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            opacity: 0;
            transition: opacity 0.35s ease;
        }

        .capsule-chain:hover {
            transform: translateY(-5px);
            border-color: rgba(94, 117, 250, 0.3);
            box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
        }

        .capsule-chain:hover::before {
            opacity: 1;
        }

        .chain-visor {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .glyph-seal {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: rgba(94, 117, 250, 0.1);
            border: 1px solid rgba(94, 117, 250, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .glyph-seal svg {
            width: 28px;
            height: 28px;
        }

        .chain-rubric-box {
            flex: 1;
            min-width: 0;
        }

        .chain-name {
            font-size: 20px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 4px;
        }

        .chain-tag {
            font-size: 12px;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-weight: 600;
        }

        .chain-desc {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 24px;
            line-height: 1.6;
        }

        .specs-cluster {
            display: flex;
            flex-direction: column;
            gap: 10px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding-top: 18px;
        }

        .spec-node {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 13px;
        }

        .spec-seal {
            color: var(--text-muted);
        }

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

        /* Block 3: Div Detail (Cross-chain Interop) */
        .vault-matrix {
            width: 100%;
            padding: 90px 5%;
            background: linear-gradient(180deg, #0b0f19 0%, #141b2d 100%);
            display: flex;
            justify-content: center;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .haven-inner {
            max-width: 1200px;
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
            align-items: center;
        }

        .interop-info {
            flex: 1;
            min-width: 300px;
        }

        .interop-visual {
            flex: 1;
            min-width: 300px;
            background: var(--surface-light);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius);
            padding: 32px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            position: relative;
        }

        .feature-point {
            display: flex;
            gap: 16px;
            margin-top: 24px;
        }

        .point-glyph {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: rgba(56, 189, 248, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: var(--accent);
        }

        .point-sheath h3 {
            font-size: 17px;
            color: #ffffff;
            margin-bottom: 6px;
        }

        .point-sheath p {
            font-size: 14px;
            color: var(--text-muted);
        }

        /* SVG Visualization UI mockup */
        .ui-node-graph {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Block 4: Aside Context (DApp Connectivity) */
        .bedrock-context {
            width: 100%;
            padding: 90px 5%;
            background: #0b0f19;
            display: flex;
            justify-content: center;
        }

        .dapp-sanctum {
            max-width: 1200px;
            width: 100%;
            background: linear-gradient(135deg, rgba(94, 117, 250, 0.15) 0%, rgba(56, 189, 248, 0.05) 100%);
            border: 1px solid rgba(94, 117, 250, 0.3);
            border-radius: var(--radius);
            padding: 60px 40px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .dapp-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            margin: 40px 0;
            width: 100%;
            justify-content: center;
        }

        .slab-protocol {
            flex: 1;
            min-width: 260px;
            background: rgba(11, 15, 25, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 24px;
            text-align: left;
        }

        .slab-protocol h4 {
            font-size: 18px;
            color: #ffffff;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .slab-protocol p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* 页脚区域 */
        .plinth {
            width: 100%;
            background: #070a12;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 60px 5% 40px 5%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .anchor-cluster {
            max-width: 1200px;
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 24px;
            margin-bottom: 40px;
        }

        .brand-rune {
            font-size: 24px;
            font-weight: 800;
            color: #ffffff;
            letter-spacing: -0.02em;
        }

        .plinth-links {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }

        .plinth-links a {
            color: var(--text-muted);
            font-size: 14px;
        }

        .plinth-links a:hover {
            color: var(--accent);
        }

        .copyright-rune {
            font-size: 13px;
            color: rgba(148, 163, 184, 0.6);
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 24px;
            width: 100%;
            max-width: 1200px;
        }

        /* 响应式断点 */
        @media (max-width: 768px) {
            .visor {
                height: auto;
                padding: 16px 5%;
                gap: 16px;
            }

            .passage {
                gap: 16px;
                width: 100%;
                justify-content: center;
            }

            .trigger {
                width: 100%;
            }

            .apex {
                padding-top: 120px;
            }

            .stratum-matrix {
                grid-template-columns: 1fr;
            }

            .dapp-sanctum {
                padding: 32px 20px;
            }

            .anchor-cluster {
                flex-direction: column;
                text-align: center;
            }
        }

.beacon-visor{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(11, 15, 25, 0.85);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 16px 32px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

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

.beacon-visor .beacon-sigil img{
            height: 38px;
            width: auto;
            display: block;
        }

.beacon-visor .beacon-passage{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 24px;
            min-width: 0;
        }

.beacon-visor .beacon-tether{
            color: #94a3b8;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.35s ease;
            padding: 8px 14px;
            border-radius: 12px;
            display: inline-flex;
            align-items: center;
        }

.beacon-visor .beacon-tether:hover, .beacon-visor .beacon-tether.active{
            color: #ffffff;
            background: rgba(94, 117, 250, 0.15);
        }

.beacon-visor .beacon-trigger{
            background: linear-gradient(135deg, #5e75fa 0%, #4355d6 100%);
            color: #ffffff;
            border: none;
            padding: 12px 26px;
            border-radius: 14px;
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(94, 117, 250, 0.35);
            transition: all 0.35s ease;
            min-width: 0;
        }

.beacon-visor .beacon-trigger:hover{
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(94, 117, 250, 0.5);
            color: #ffffff;
        }

@media (max-width: 768px){.beacon-visor{
                padding: 12px 20px;
            }

.beacon-visor .beacon-passage{
                display: none; 
            }}

.beacon-visor {
    background: rgb(11, 15, 25);
    background-image: none;
}

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

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

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

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

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

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

.bedrock-plinth .bedrock-rune-body{
            color: #94a3b8;
            font-size: 15px;
            line-height: 1.7;
        }

.bedrock-plinth{
            background: #070a12;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 60px 24px 40px 24px;
            width: 100%;
        }

.bedrock-plinth .bedrock-bedrock{
            max-width: 1240px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }

.bedrock-plinth .bedrock-brand-column{
            max-width: 360px;
        }

.bedrock-plinth .bedrock-brand-rubric{
            font-size: 24px;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 12px;
            letter-spacing: -0.01em;
        }

.bedrock-plinth .bedrock-links-column{
            display: flex;
            flex-wrap: wrap;
            gap: 60px;
        }

.bedrock-plinth .bedrock-stratum-links{
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

.bedrock-plinth .bedrock-stratum-rubric{
            font-size: 15px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 8px;
        }

.bedrock-plinth .bedrock-plinth-tether{
            color: #94a3b8;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.35s ease;
        }

.bedrock-plinth .bedrock-plinth-tether:hover{
            color: #5e75fa;
        }

.bedrock-plinth .bedrock-copyright-row{
            max-width: 1240px;
            margin: 40px auto 0 auto;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            color: #94a3b8;
            font-size: 13px;
        }

@media (max-width: 768px){.bedrock-plinth .bedrock-links-column{
                gap: 32px;
            }}