: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;
            --shadow: 0 12px 32px rgba(220, 124, 159, 0.08);
            --shadow-hover: 0 16px 36px rgba(220, 124, 159, 0.16);
            --radius: 18px;
        }

        * {
            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;
            overflow-x: hidden;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        /* 顶部导航 Header Reuse */
        header.sentry {
            position: sticky;
            top: 0;
            z-index: 1000;
            background-color: rgba(252, 251, 250, 0.92);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            transition: all 0.15s ease;
        }

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

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

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

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

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

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

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

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

        /* Main Content Container */
        main {
            display: block;
            width: 100%;
        }

        /* Typography & Utility Components */
        .mantra {
            color: var(--text-primary);
            font-weight: 800;
            line-height: 1.25;
            letter-spacing: -0.02em;
            word-break: keep-all;
        }

        .whisper {
            color: var(--text-secondary);
            font-size: 16px;
            line-height: 1.7;
        }

        .glyph {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            flex-shrink: 0;
        }

        .trigger {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 28px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: all 0.15s ease;
            word-break: keep-all;
        }

        .pulse {
            background-color: var(--accent);
            color: #ffffff;
            box-shadow: 0 8px 20px rgba(220, 124, 159, 0.3);
        }

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

        .latch {
            background-color: var(--surface);
            color: var(--text-primary);
            border: 1px solid var(--border);
        }

        .latch:hover {
            border-color: var(--accent);
            color: var(--accent-dark);
            background-color: var(--accent-light);
        }

        /* Section 1: Hero Article (encryption_hero) */
        article.citadel {
            padding: 80px 0 64px;
            background: linear-gradient(180deg, rgba(220, 124, 159, 0.06) 0%, rgba(252, 251, 250, 0) 100%);
        }

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

        .halo {
            flex: 1 1 480px;
            min-width: 0;
        }

        .halo .mantra {
            font-size: 38px;
            margin-bottom: 20px;
        }

        .halo .whisper {
            font-size: 18px;
            margin-bottom: 32px;
        }

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

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

        .packet .glyph {
            width: 36px;
            height: 36px;
            background: var(--accent-light);
            color: var(--accent-dark);
        }

        .packet-whisper {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
        }

        /* Hero Graphic (Data UI Dataflow simulation) */
        .sanctum {
            flex: 1 1 440px;
            min-width: 0;
            background: var(--surface);
            border-radius: var(--radius);
            border: 1px solid var(--border);
            padding: 32px;
            box-shadow: var(--shadow);
            position: relative;
        }

        .strand-crest {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding-bottom: 16px;
            margin-bottom: 20px;
            border-bottom: 1px dashed var(--border);
        }

        .strand-mantra {
            font-size: 14px;
            font-weight: 700;
            color: var(--accent-dark);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .strand-status {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            color: #2e7d32;
            background: #e8f5e9;
            padding: 4px 10px;
            border-radius: 12px;
            font-weight: 600;
        }

        .strand-dot {
            width: 8px;
            height: 8px;
            background-color: #4caf50;
            border-radius: 50%;
        }

        .data-flow {
            display: flex;
            flex-wrap: wrap;
            flex-direction: column;
            gap: 16px;
        }

        .node-capsule {
            background: var(--bg-main);
            padding: 16px;
            border-radius: 12px;
            border: 1px solid var(--border);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }

        .node-meta {
            min-width: 0;
        }

        .node-seal {
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 2px;
        }

        .node-code {
            font-family: monospace;
            font-size: 13px;
            color: var(--accent-dark);
            font-weight: 600;
        }

        .flow-arrow {
            display: flex;
            justify-content: center;
            color: var(--accent);
        }

        /* Section 2: Div Container (tech_stack) */
        div.vault {
            padding: 88px 0;
            background-color: var(--surface);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

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

        .crest .mantra {
            font-size: 32px;
            margin-bottom: 16px;
        }

        .tech-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 28px;
        }

        .capsule {
            flex: 1 1 320px;
            min-width: 0;
            background: var(--bg-main);
            border-radius: var(--radius);
            padding: 36px 30px;
            border: 1px solid var(--border);
            box-shadow: 0 4px 20px rgba(0,0,0,0.02);
            transition: all 0.15s ease;
        }

        .capsule:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            border-color: var(--accent);
        }

        .capsule .glyph {
            width: 52px;
            height: 52px;
            background: var(--accent-light);
            color: var(--accent-dark);
            margin-bottom: 24px;
        }

        .capsule .mantra {
            font-size: 20px;
            margin-bottom: 14px;
        }

        .capsule-strand {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px dashed var(--border);
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .capsule-node {
            font-size: 14px;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .capsule-node::before {
            content: "";
            width: 6px;
            height: 6px;
            background-color: var(--accent);
            border-radius: 50%;
            display: inline-block;
        }

        /* Section 3: Article Container (burn_after_reading) */
        article.sanctum-section {
            padding: 88px 0;
            background-color: var(--bg-main);
        }

        .burn-sheath {
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
            align-items: center;
        }

        .burn-info {
            flex: 1 1 480px;
            min-width: 0;
        }

        .burn-info .mantra {
            font-size: 32px;
            margin-bottom: 18px;
        }

        .burn-cards {
            flex: 1 1 440px;
            min-width: 0;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .enclave {
            background: var(--surface);
            padding: 24px 28px;
            border-radius: 16px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: flex-start;
            transition: transform 0.15s ease;
        }

        .enclave:hover {
            transform: translateX(6px);
            border-color: var(--accent);
        }

        .enclave .glyph {
            width: 44px;
            height: 44px;
            background: var(--accent-light);
            color: var(--accent-dark);
        }

        .enclave-sheath {
            flex: 1 1 240px;
            min-width: 0;
        }

        .enclave-sheath .mantra {
            font-size: 17px;
            margin-bottom: 6px;
        }

        .enclave-sheath .whisper {
            font-size: 14px;
        }

        /* Section 4: Section Container (anti_forensics) */
        section.enclave-section {
            padding: 88px 0;
            background-color: var(--bg-alt);
        }

        .anti-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            margin-top: 48px;
        }

        .shield-capsule {
            flex: 1 1 300px;
            min-width: 0;
            background: var(--surface);
            padding: 32px;
            border-radius: var(--radius);
            border: 1px solid var(--border);
            position: relative;
            overflow: hidden;
        }

        .shield-capsule::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background-color: var(--accent);
        }

        .shield-capsule .mantra {
            font-size: 19px;
            margin-bottom: 12px;
        }

        .shield-capsule .whisper {
            font-size: 14px;
        }

        /* Section 5: Aside Container (architecture_compare) */
        aside.compare-aside {
            padding: 88px 0;
            background-color: var(--surface);
            border-top: 1px solid var(--border);
        }

        .matrix-sheath {
            margin-top: 48px;
            background: var(--bg-main);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .matrix-row {
            display: flex;
            flex-wrap: wrap;
            border-bottom: 1px solid var(--border);
        }

        .matrix-row:last-child {
            border-bottom: none;
        }

        .matrix-head {
            background: rgba(220, 124, 159, 0.08);
            font-weight: 700;
        }

        .matrix-cell {
            padding: 20px 24px;
            flex: 1 1 200px;
            min-width: 0;
            display: flex;
            align-items: center;
            font-size: 15px;
            word-break: break-word;
        }

        .matrix-cell.highlight {
            background: rgba(220, 124, 159, 0.04);
            color: var(--accent-dark);
            font-weight: 600;
        }

        .matrix-cell.feature-name {
            flex: 0 0 200px;
            font-weight: 600;
            color: var(--text-primary);
            background: var(--surface);
            border-right: 1px solid var(--border);
        }

        /* Footer Bedrock */
        section.bedrock {
            background-color: var(--bg-dark);
            color: #ffffff;
            padding: 64px 0 32px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

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

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

        .haven-brand {
            font-size: 22px;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 14px;
            letter-spacing: -0.01em;
        }

        .haven-desc {
            color: #a89f9f;
            font-size: 14px;
            line-height: 1.7;
            max-width: 320px;
        }

        .trace-links {
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
            flex: 1 1 400px;
            min-width: 0;
        }

        .trace-col {
            display: flex;
            flex-direction: column;
            gap: 12px;
            flex: 1 1 140px;
            min-width: 0;
        }

        .trace-head {
            font-size: 15px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 4px;
        }

        .trace-nexus {
            color: #a89f9f;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.15s ease;
            word-break: keep-all;
        }

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

        .bottom-ribbon {
            padding-top: 32px;
            border-top: 1px solid rgba(255,255,255,0.08);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            font-size: 13px;
            color: #8e8488;
        }

        /* Responsive Breakpoints */
        @media (max-width: 1024px) {
            .halo .mantra {
                font-size: 32px;
            }
            .crest .mantra,
            .burn-info .mantra {
                font-size: 28px;
            }
        }

        @media (max-width: 768px) {
            .sheath {
                height: auto;
                padding: 16px 0;
                gap: 16px;
            }
            .conduit {
                gap: 16px;
                width: 100%;
                justify-content: space-between;
            }
            .matrix-cell.feature-name {
                flex: 1 1 100%;
                border-right: none;
                border-bottom: 1px solid var(--border);
            }
            .matrix-cell {
                flex: 1 1 100%;
            }
            .halo .mantra {
                font-size: 28px;
            }
            .crest .mantra,
            .burn-info .mantra {
                font-size: 24px;
            }
            article.citadel,
            div.vault,
            article.sanctum-section,
            section.enclave-section,
            aside.compare-aside {
                padding: 56px 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;
        }