:root {
            --hue-primary: #da7895;
            --hue-primary-dark: #b85a75;
            --hue-primary-light: #faebf0;
            --hue-bg: #fbf7f8;
            --hue-surface: #ffffff;
            --hue-text-dark: #2c2225;
            --hue-text-muted: #6b5d63;
            --hue-border: rgba(218, 120, 149, 0.18);
            --radius-main: 22px;
            --radius-sub: 14px;
            --shadow-subtle: 0 10px 30px rgba(44, 34, 37, 0.05);
            --shadow-hover: 0 16px 40px rgba(218, 120, 149, 0.12);
            --transition-speed: 0.15s ease;
        }

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

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

        /* 顶层通用束水容器 */
        .haven {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

        /* 顶部导航控制塔 Block */
        div[role="banner"].apex {
            position: sticky;
            top: 0;
            z-index: 100;
            background-color: rgba(251, 247, 248, 0.88);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--hue-border);
            padding: 16px 0;
        }

        div[role="banner"].apex .haven {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

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

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

        .pathway {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }

        .cluster {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px;
            list-style: none;
        }

        .nexus {
            color: var(--hue-text-muted);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: var(--radius-sub);
            transition: all var(--transition-speed);
        }

        .nexus:hover,
        .nexus.active {
            color: var(--hue-primary-dark);
            background-color: var(--hue-primary-light);
        }

        .trigger {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: linear-gradient(135deg, #da7895 0%, #c45b79 100%);
            color: #ffffff;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 10px 22px;
            border-radius: var(--radius-sub);
            text-decoration: none;
            transition: all var(--transition-speed);
            box-shadow: 0 4px 14px rgba(218, 120, 149, 0.28);
            border: none;
            cursor: pointer;
        }

        .trigger:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(218, 120, 149, 0.4);
            color: #ffffff;
        }

        .clinch {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background-color: var(--hue-surface);
            color: var(--hue-text-dark);
            font-weight: 600;
            font-size: 0.95rem;
            padding: 10px 22px;
            border-radius: var(--radius-sub);
            text-decoration: none;
            transition: all var(--transition-speed);
            border: 1px solid var(--hue-border);
        }

        .clinch:hover {
            border-color: var(--hue-primary);
            color: var(--hue-primary-dark);
            background-color: var(--hue-primary-light);
        }

        /* HERO / BEACON 区块 (Article: Intro) */
        article.beacon {
            padding: 80px 0 60px 0;
            text-align: center;
            position: relative;
        }

        .capsule {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: var(--hue-primary-light);
            color: var(--hue-primary-dark);
            font-size: 0.85rem;
            font-weight: 600;
            padding: 6px 16px;
            border-radius: 50px;
            margin-bottom: 24px;
            border: 1px solid rgba(218, 120, 149, 0.25);
        }

        .crown-alpha {
            font-size: clamp(2.4rem, 5vw, 4.2rem);
            line-height: 1.15;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: var(--hue-text-dark);
            margin-bottom: 24px;
            max-width: 960px;
            margin-left: auto;
            margin-right: auto;
            white-space: normal;
        }

        .crown-alpha span {
            color: var(--hue-primary);
            background: linear-gradient(135deg, #da7895 0%, #a83d5a 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .script-sub {
            font-size: 1.15rem;
            color: var(--hue-text-muted);
            max-width: 780px;
            margin: 0 auto 36px auto;
            line-height: 1.7;
        }

        .league-actions {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
            margin-bottom: 60px;
        }

        /* 界面数据终端仿真区 (Data UI) */
        .veneer-terminal {
            background-color: var(--hue-surface);
            border-radius: var(--radius-main);
            border: 1px solid var(--hue-border);
            box-shadow: var(--shadow-subtle);
            padding: 30px;
            text-align: left;
            margin-top: 20px;
        }

        .ribbon-top {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding-bottom: 18px;
            border-bottom: 1px solid var(--hue-border);
            margin-bottom: 24px;
            gap: 12px;
        }

        .league-dots {
            display: flex;
            gap: 8px;
        }

        .unit-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #e0d5d8;
        }

        .unit-dot.active-dot {
            background-color: var(--hue-primary);
        }

        .league-status {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            width: 100%;
        }

        .vault-stat {
            flex: 1 1 200px;
            min-width: 0;
            background-color: var(--hue-bg);
            padding: 18px 20px;
            border-radius: var(--radius-sub);
            border: 1px solid rgba(218, 120, 149, 0.12);
        }

        .crown-stat {
            font-size: 0.82rem;
            color: var(--hue-text-muted);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 6px;
        }

        .script-val {
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--hue-text-dark);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* SECURITY VAULT 区块 (Section: Proof) */
        section.shield {
            padding: 70px 0;
            background-color: var(--hue-surface);
            border-top: 1px solid var(--hue-border);
            border-bottom: 1px solid var(--hue-border);
        }

        .league-split {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
        }

        .module-half {
            flex: 1 1 460px;
            min-width: 0;
        }

        .crown-beta {
            font-size: clamp(1.8rem, 3.5vw, 2.5rem);
            font-weight: 700;
            line-height: 1.25;
            color: var(--hue-text-dark);
            margin-bottom: 20px;
        }

        .script-body {
            font-size: 1.05rem;
            color: var(--hue-text-muted);
            margin-bottom: 24px;
            line-height: 1.8;
        }

        .league-points {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 30px;
        }

        .unit-point {
            display: flex;
            align-items: flex-start;
            gap: 14px;
        }

        .glyph-check {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background-color: var(--hue-primary-light);
            color: var(--hue-primary-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .aspect-vault {
            width: 100%;
            height: auto;
            border-radius: var(--radius-main);
            box-shadow: var(--shadow-subtle);
            border: 1px solid var(--hue-border);
            display: block;
        }

        /* FEATURE GRID 区块 (Aside: Capability) */
        aside.cocoon {
            padding: 80px 0;
        }

        .league-apex {
            text-align: center;
            max-width: 760px;
            margin: 0 auto 50px auto;
        }

        .league-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
        }

        .vault-vault {
            flex: 1 1 320px;
            min-width: 0;
            background-color: var(--hue-surface);
            border: 1px solid var(--hue-border);
            border-radius: var(--radius-main);
            padding: 32px;
            transition: all var(--transition-speed);
            display: flex;
            flex-direction: column;
        }

        .vault-vault:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(218, 120, 149, 0.4);
        }

        .glyph-insignia {
            width: 52px;
            height: 52px;
            border-radius: var(--radius-sub);
            background: linear-gradient(135deg, var(--hue-primary-light) 0%, #f3d4de 100%);
            color: var(--hue-primary-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .crown-gamma {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--hue-text-dark);
            margin-bottom: 12px;
        }

        .script-desc {
            font-size: 0.98rem;
            color: var(--hue-text-muted);
            line-height: 1.7;
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .nexus-inline {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--hue-primary-dark);
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            transition: gap var(--transition-speed);
        }

        .nexus-inline:hover {
            gap: 10px;
        }

        /* ACQUIRE / CTA & GUIDANCE 区块 (Article: Acquire) */
        article.haven-acquire {
            padding: 80px 0;
            background: linear-gradient(135deg, rgba(218, 120, 149, 0.08) 0%, rgba(251, 247, 248, 0.9) 100%);
            border-top: 1px solid var(--hue-border);
        }

        .veneer-trigger {
            background-color: var(--hue-surface);
            border: 1px solid var(--hue-border);
            border-radius: var(--radius-main);
            padding: 50px;
            box-shadow: var(--shadow-subtle);
            text-align: center;
        }

        .league-steps {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 40px 0;
            text-align: left;
        }

        .unit-step {
            flex: 1 1 220px;
            min-width: 0;
            background-color: var(--hue-bg);
            padding: 20px;
            border-radius: var(--radius-sub);
            border: 1px solid rgba(218, 120, 149, 0.12);
        }

        .crown-num {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--hue-primary);
            line-height: 1;
            margin-bottom: 10px;
        }

        /* FOOTER / ANCHOR 区块 (Section: Footer) */
        section.anchor {
            background-color: var(--hue-text-dark);
            color: #d1c8cb;
            padding: 60px 0 30px 0;
        }

        .bedrock-top {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

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

        .crown-brand {
            font-size: 1.6rem;
            font-weight: 800;
            color: #ffffff;
            letter-spacing: -0.01em;
            margin-bottom: 12px;
        }

        .script-foot {
            font-size: 0.92rem;
            color: #a4979b;
            line-height: 1.7;
        }

        .module-links {
            flex: 1 1 180px;
            min-width: 0;
        }

        .crown-foot {
            font-size: 1rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 16px;
        }

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

        .nexus-foot {
            color: #a4979b;
            text-decoration: none;
            font-size: 0.92rem;
            transition: color var(--transition-speed);
        }

        .nexus-foot:hover {
            color: var(--hue-primary);
        }

        .nadir-bottom {
            padding-top: 30px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            font-size: 0.88rem;
            color: #85787c;
        }

        /* 响应式断点适配 */
        @media (max-width: 768px) {
            article.beacon {
                padding: 50px 0 40px 0;
            }
            .veneer-trigger {
                padding: 30px 20px;
            }
            .veneer-terminal {
                padding: 20px;
            }
            .crown-alpha {
                font-size: 2rem;
            }
        }

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

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

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

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

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

.pathway-apex a.pathway-nexus.pathway-active,
.pathway-apex a.pathway-nexus {
    --aisite-shell-nav-padding: 8px 16px;
    --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;
}

.pathway-apex a.pathway-nexus.pathway-active,
.pathway-apex a.pathway-nexus.pathway-active:hover,
.pathway-apex a.pathway-nexus.pathway-active:focus,
.pathway-apex a.pathway-nexus.pathway-active:active,
.pathway-apex a.pathway-nexus.pathway-active.active,
.pathway-apex a.pathway-nexus.pathway-active[aria-current="page"],
.pathway-apex a.pathway-nexus,
.pathway-apex a.pathway-nexus:hover,
.pathway-apex a.pathway-nexus:focus,
.pathway-apex a.pathway-nexus:active,
.pathway-apex a.pathway-nexus.active,
.pathway-apex a.pathway-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);
}

.pathway-apex .pathway-haven{
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

.pathway-apex div[role="banner"].pathway-apex{
            position: sticky;
            top: 0;
            z-index: 100;
            background-color: rgba(251, 247, 248, 0.88);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(218, 120, 149, 0.18);
            padding: 16px 0;
        }

.pathway-apex div[role="banner"].pathway-apex .pathway-haven{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

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

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

.pathway-apex .pathway-pathway{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }

.pathway-apex .pathway-cluster{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px;
            list-style: none;
        }

.pathway-apex .pathway-nexus{
            color: #6b5d63;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 14px;
            transition: all 0.15s ease;
        }

.pathway-apex .pathway-nexus:hover, .pathway-apex .pathway-nexus.pathway-active{
            color: #b85a75;
            background-color: #faebf0;
        }

.pathway-apex .pathway-trigger{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: linear-gradient(135deg, #da7895 0%, #c45b79 100%);
            color: #ffffff;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 10px 22px;
            border-radius: 14px;
            text-decoration: none;
            transition: all 0.15s ease;
            box-shadow: 0 4px 14px rgba(218, 120, 149, 0.28);
            border: none;
            cursor: pointer;
        }

.pathway-apex .pathway-trigger:hover{
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(218, 120, 149, 0.4);
            color: #ffffff;
        }

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

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

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

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

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

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

.anchor-anchor .anchor-haven{
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

.anchor-anchor section.anchor-anchor{
            background-color: #2c2225;
            color: #d1c8cb;
            padding: 60px 0 30px 0;
        }

.anchor-anchor .anchor-bedrock-top{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

.anchor-anchor .anchor-module-brand{
            flex: 1 1 300px;
            min-width: 0;
        }

.anchor-anchor .anchor-crown-brand{
            font-size: 1.6rem;
            font-weight: 800;
            color: #ffffff;
            letter-spacing: -0.01em;
            margin-bottom: 12px;
        }

.anchor-anchor .anchor-script-foot{
            font-size: 0.92rem;
            color: #a4979b;
            line-height: 1.7;
        }

.anchor-anchor .anchor-module-links{
            flex: 1 1 180px;
            min-width: 0;
        }

.anchor-anchor .anchor-crown-foot{
            font-size: 1rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 16px;
        }

.anchor-anchor .anchor-cluster-foot{
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

.anchor-anchor .anchor-nexus-foot{
            color: #a4979b;
            text-decoration: none;
            font-size: 0.92rem;
            transition: color 0.15s ease;
        }

.anchor-anchor .anchor-nexus-foot:hover{
            color: #da7895;
        }

.anchor-anchor .anchor-nadir-bottom{
            padding-top: 30px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            font-size: 0.88rem;
            color: #85787c;
        }