:root {
            --accent: #dc7c9f;
            --accent-dark: #b85b7d;
            --accent-light: #f9ecf1;
            --bg-main: #fcfbfa;
            --bg-alt: #f4efef;
            --bg-dark: #1b1619;
            --surface: #ffffff;
            --text-primary: #1e191b;
            --text-secondary: #5c5357;
            --text-muted: #8e8488;
            --border: #e8dfdf;
            --radius-lg: 20px;
            --radius-md: 14px;
            --shadow: 0 12px 32px rgba(220, 124, 159, 0.08);
            --shadow-hover: 0 16px 40px rgba(220, 124, 159, 0.16);
            --max-width: 1200px;
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
            background-color: var(--bg-main);
            color: var(--text-primary);
            line-height: 1.7;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        /* 强制继承首页导航栏结构与样式 */
        .sentry {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(252, 251, 250, 0.92);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            padding: 16px 0;
        }

        .cocoon {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        .sheath {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

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

        .emblem img {
            height: 38px;
            width: auto;
            display: block;
        }

        .conduit {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 24px;
        }

        .nexus {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: color 0.15s ease;
            position: relative;
            padding: 6px 0;
        }

        .nexus:hover,
        .nexus.active {
            color: var(--accent-dark);
            font-weight: 600;
        }

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

        /* 主容器 */
        main {
            display: block;
            width: 100%;
        }

        /* 首屏展示区 - asymmetric_grid 视觉同族变体 */
        .citadel {
            padding: 72px 0 64px;
            background: linear-gradient(180deg, rgba(220, 124, 159, 0.06) 0%, rgba(252, 251, 250, 0) 100%);
            border-bottom: 1px solid rgba(232, 223, 223, 0.5);
        }

        .cluster-citadel {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 48px;
        }

        .node-citadel-info {
            flex: 1 1 500px;
            min-width: 0;
        }

        .node-citadel-media {
            flex: 1 1 420px;
            min-width: 0;
        }

        .ribbon-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: var(--accent-light);
            color: var(--accent-dark);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 20px;
            border: 1px solid rgba(220, 124, 159, 0.2);
        }

        .mantra-citadel {
            font-size: 38px;
            line-height: 1.25;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 18px;
            white-space: normal;
        }

        .whisper-citadel {
            font-size: 17px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 32px;
        }

        .cluster-highlights {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 36px;
        }

        .capsule-feature {
            flex: 1 1 200px;
            min-width: 0;
            background: var(--surface);
            padding: 16px;
            border-radius: var(--radius-md);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.02);
        }

        .glyph-seal {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: var(--accent-light);
            color: var(--accent-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .whisper-feature-mantra {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-primary);
        }

        .trigger-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px 36px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 600;
            background-color: var(--accent);
            color: #ffffff;
            text-decoration: none;
            box-shadow: 0 8px 20px rgba(220, 124, 159, 0.3);
            transition: all 0.15s ease;
            border: none;
            cursor: pointer;
        }

        .trigger-primary:hover {
            background-color: var(--accent-dark);
            transform: translateY(-2px);
            box-shadow: 0 12px 24px rgba(220, 124, 159, 0.4);
        }

        .prism-citadel {
            width: 100%;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-hover);
            border: 1px solid var(--border);
            display: block;
            object-fit: cover;
            background-color: var(--bg-alt);
        }

        /* 模块2：平台矩阵 (section) */
        .halo {
            padding: 88px 0;
            background-color: var(--bg-main);
        }

        .mantra-vault {
            font-size: 28px;
            font-weight: 800;
            color: var(--text-primary);
            text-align: center;
            margin-bottom: 12px;
            white-space: normal;
        }

        .whisper-vault-sub {
            font-size: 16px;
            color: var(--text-secondary);
            text-align: center;
            max-width: 680px;
            margin: 0 auto 56px;
        }

        .cluster-platforms {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
        }

        .capsule-platform {
            flex: 1 1 260px;
            min-width: 0;
            background: var(--surface);
            border-radius: var(--radius-lg);
            padding: 32px 24px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
            transition: all 0.15s ease;
            display: flex;
            flex-direction: column;
        }

        .capsule-platform:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(220, 124, 159, 0.4);
        }

        .glyph-platform {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: linear-gradient(135deg, var(--accent-light) 0%, #ffffff 100%);
            color: var(--accent-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            border: 1px solid rgba(220, 124, 159, 0.2);
        }

        .mantra-platform {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .whisper-platform-desc {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .cluster-meta {
            margin-bottom: 24px;
            padding-top: 16px;
            border-top: 1px dashed var(--border);
            display: flex;
            flex-direction: column;
            gap: 8px;
            font-size: 13px;
            color: var(--text-muted);
        }

        .node-meta-row {
            display: flex;
            justify-content: space-between;
        }

        .trigger-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            padding: 12px 20px;
            border-radius: 24px;
            font-size: 14px;
            font-weight: 600;
            background-color: var(--accent-light);
            color: var(--accent-dark);
            text-decoration: none;
            transition: all 0.15s ease;
            border: 1px solid rgba(220, 124, 159, 0.3);
            cursor: pointer;
        }

        .trigger-secondary:hover {
            background-color: var(--accent);
            color: #ffffff;
            border-color: var(--accent);
        }

        /* 模块3：安全签名与指纹校验 (article) */
        .pinnacle {
            padding: 88px 0;
            background-color: var(--bg-alt);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .capsule-verify {
            background: var(--surface);
            border-radius: var(--radius-lg);
            padding: 40px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
        }

        .cluster-terminal {
            background-color: var(--bg-dark);
            color: #f0e6e8;
            border-radius: var(--radius-md);
            padding: 24px;
            font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
            font-size: 14px;
            line-height: 1.8;
            margin: 28px 0;
            overflow-x: auto;
            border: 1px solid #362d32;
        }

        .whisper-code-cmd {
            color: #dc7c9f;
        }

        .whisper-code-out {
            color: #a89d9e;
        }

        .cluster-hash-table {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 24px;
        }

        .node-hash-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 14px 20px;
            background-color: var(--bg-main);
            border-radius: var(--radius-md);
            border: 1px solid var(--border);
            gap: 12px;
        }

        .whisper-platform-tag {
            font-weight: 700;
            font-size: 14px;
            color: var(--text-primary);
            min-width: 140px;
        }

        .whisper-hash-val {
            font-family: monospace;
            font-size: 13px;
            color: var(--text-secondary);
            background: var(--bg-alt);
            padding: 4px 10px;
            border-radius: 6px;
            word-break: break-all;
        }

        /* 模块4：版本日志 (section) */
        .enclave {
            padding: 88px 0;
            background-color: var(--bg-main);
        }

        .cluster-timeline {
            max-width: 840px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        .capsule-timeline-node {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            background: var(--surface);
            padding: 32px;
            border-radius: var(--radius-lg);
            border: 1px solid var(--border);
            box-shadow: 0 6px 20px rgba(0,0,0,0.03);
            position: relative;
        }

        .node-timeline-date {
            flex: 0 0 160px;
            min-width: 0;
        }

        .ribbon-version {
            font-size: 18px;
            font-weight: 800;
            color: var(--accent-dark);
            display: block;
        }

        .whisper-date-stamp {
            font-size: 13px;
            color: var(--text-muted);
            margin-top: 4px;
        }

        .node-timeline-detail {
            flex: 1 1 400px;
            min-width: 0;
        }

        .mantra-timeline {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 12px;
        }

        .strand-logs {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .node-log {
            font-size: 14px;
            color: var(--text-secondary);
            position: relative;
            padding-left: 20px;
        }

        .node-log::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--accent);
            font-size: 18px;
            line-height: 1;
        }

        /* 模块5：常见问题 (aside) */
        .sanctum {
            padding: 88px 0;
            background-color: var(--bg-alt);
            border-top: 1px solid var(--border);
        }

        .cluster-faq {
            max-width: 840px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .capsule-faq {
            background: var(--surface);
            border-radius: var(--radius-md);
            padding: 24px 28px;
            border: 1px solid var(--border);
        }

        .mantra-faq {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .glyph-q {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background-color: var(--accent-light);
            color: var(--accent-dark);
            font-size: 12px;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .whisper-faq-answer {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.7;
            padding-left: 34px;
        }

        /* 页脚区域 - 使用 section 包裹 */
        .bedrock {
            background-color: var(--bg-dark);
            color: #d1c7ca;
            padding: 64px 0 40px;
            border-top: 1px solid #362d32;
        }

        .cluster-trace {
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
            justify-content: space-between;
            margin-bottom: 48px;
        }

        .node-trace-brand {
            flex: 1 1 320px;
            min-width: 0;
        }

        .mantra-brand-whisper {
            font-size: 22px;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .whisper-trace-slogan {
            font-size: 14px;
            color: #a89d9e;
            line-height: 1.6;
        }

        .cluster-trace-links {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            flex: 2 1 400px;
            justify-content: flex-end;
        }

        .node-trace-col {
            min-width: 140px;
        }

        .mantra-trace-col {
            font-size: 15px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 16px;
        }

        .strand-trace {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .nexus-trace {
            color: #a89d9e;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.15s ease;
        }

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

        .trace-copyright {
            text-align: center;
            padding-top: 32px;
            border-top: 1px solid #362d32;
            font-size: 13px;
            color: #8e8488;
        }

        /* 响应式调整 */
        @media (max-width: 992px) {
            .cluster-citadel {
                gap: 32px;
            }
            .mantra-citadel {
                font-size: 30px;
            }
            .cluster-trace-links {
                justify-content: flex-start;
            }
        }

        @media (max-width: 768px) {
            .conduit {
                gap: 12px;
            }
            .nexus {
                font-size: 14px;
            }
            .mantra-citadel {
                font-size: 26px;
            }
            .capsule-timeline-node {
                flex-direction: column;
                gap: 12px;
            }
            .node-timeline-date {
                flex: 0 0 auto;
            }
            .capsule-verify {
                padding: 24px;
            }
            .whisper-faq-answer {
                padding-left: 0;
            }
        }

.sentry-sentry {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    line-height: 1.7;
    word-break: keep-all;
    color: var(--text-primary);
}
.sentry-sentry,
.sentry-sentry *,
.sentry-sentry *::before,
.sentry-sentry *::after {
    box-sizing: border-box;
}

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

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

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

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

.sentry-sentry a.sentry-nexus {
    --aisite-shell-nav-padding: 6px 12px;
    --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;
}

.sentry-sentry a.sentry-nexus,
.sentry-sentry a.sentry-nexus:hover,
.sentry-sentry a.sentry-nexus:focus,
.sentry-sentry a.sentry-nexus:active,
.sentry-sentry a.sentry-nexus.active,
.sentry-sentry a.sentry-nexus[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);
}

.sentry-sentry header.sentry-sentry{
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(252, 251, 250, 0.92);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid #e8dfdf;
            padding: 16px 24px;
        }

.sentry-sentry .sentry-cocoon{
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 24px;
        }

.sentry-sentry .sentry-sheath{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            min-width: 0;
        }

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

.sentry-sentry .sentry-emblem img{
            height: 38px;
            width: auto;
            display: block;
        }

.sentry-sentry [role="navigation"].sentry-conduit{
            display: flex;
            flex-wrap: wrap;
            gap: 28px;
            align-items: center;
            min-width: 0;
        }

.sentry-sentry .sentry-nexus{
            color: #5c5357;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.15s ease;
            padding: 6px 12px;
            border-radius: 8px;
            white-space: nowrap;
        }

.sentry-sentry .sentry-nexus:hover, .sentry-sentry .sentry-nexus.active{
            color: #b85b7d;
            background-color: #f9ecf1;
        }

@media (max-width: 768px){.sentry-sentry header.sentry-sentry{
                padding: 12px 16px;
            }

.sentry-sentry [role="navigation"].sentry-conduit{
                gap: 12px;
                margin-top: 12px;
                width: 100%;
            }

.sentry-sentry .sentry-nexus{
                font-size: 14px;
                padding: 4px 8px;
            }}

.bedrock-bedrock {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    line-height: 1.7;
    word-break: keep-all;
    color: var(--text-primary);
}
.bedrock-bedrock,
.bedrock-bedrock *,
.bedrock-bedrock *::before,
.bedrock-bedrock *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.bedrock-bedrock .bedrock-cocoon{
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 24px;
        }

.bedrock-bedrock [role="contentinfo"].bedrock-bedrock{
            padding: 64px 0 32px;
        }

.bedrock-bedrock .bedrock-anchor-trace{
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: space-between;
            margin-bottom: 48px;
            min-width: 0;
        }

.bedrock-bedrock .bedrock-haven-brand{
            flex: 2 1 320px;
            min-width: 0;
        }

.bedrock-bedrock .bedrock-mantra-brand{
            font-size: 20px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 12px;
        }

.bedrock-bedrock .bedrock-whisper-trace{
            font-size: 14px;
            line-height: 1.7;
            max-width: 400px;
        }

.bedrock-bedrock .bedrock-haven-links{
            flex: 1 1 160px;
            min-width: 0;
        }

.bedrock-bedrock .bedrock-mantra-trace-head{
            font-size: 15px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 20px;
        }

.bedrock-bedrock .bedrock-strand-trace{
            display: flex;
            flex-direction: column;
            gap: 12px;
            min-width: 0;
        }

.bedrock-bedrock .bedrock-nexus-trace{
            color: #a3989d;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.15s ease;
        }

.bedrock-bedrock .bedrock-nexus-trace:hover{
            color: #dc7c9f;
        }

.bedrock-bedrock .bedrock-trace-copyright{
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 28px;
            font-size: 13px;
            text-align: center;
            color: #6d6468;
        }