:root {
            --color-primary: #6e7cd5;
            --color-primary-hover: #5a66b5;
            --color-primary-light: #eff1fa;
            --color-secondary: #8a96e0;
            --color-bg: #f8f9fc;
            --color-surface: #ffffff;
            --color-text-main: #2d3748;
            --color-text-echo: #718096;
            --color-border: #e2e8f0;
            --radius-sm: 8px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --shadow-soft: 0 4px 20px rgba(110, 124, 213, 0.08);
            --shadow-hover: 0 10px 30px rgba(110, 124, 213, 0.15);
            --transition: all 0.35s ease;
            --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
            --hull-width: 1200px;
        }

        *, *::before, *::after {
            box-sizing: border-box;
            min-width: 0;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: var(--font-family);
            background-color: var(--color-bg);
            color: var(--color-text-main);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        /* 文本换行规范 */
        .echo, p, span, li {
            word-break: break-word;
            overflow-wrap: break-word;
            word-break: keep-all;
        }

        .apex {
            white-space: normal;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* 强制复用导航栏样式 */
        .crown-helm {
            background-color: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--color-border);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .hull-global {
            max-width: var(--hull-width);
            margin: 0 auto;
            padding: 0 5vw;
        }

        .helm-nexus {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
            flex-wrap: wrap;
        }

        .core img {
            height: 32px;
            width: auto;
        }

        .helm-array {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .wire, .wire-active {
            font-weight: 500;
            color: var(--color-text-echo);
            transition: var(--transition);
            font-size: 1rem;
        }

        .wire:hover {
            color: var(--color-primary);
        }

        .wire-active, .wire.active {
            color: var(--color-primary);
            position: relative;
        }

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

        @media (max-width: 768px) {
            .helm-array {
                display: none; /* 移动端简化，实际项目中通常有汉堡菜单，此处按骨架要求保持简洁 */
            }
        }

        /* 页面骨架通用容器 */
        .hull-inner {
            max-width: var(--hull-width);
            margin: 0 auto;
            padding: 0 4vw;
        }

        /* Block 1: Hero (Cinematic Strip Variant) */
        .flare-prism {
            background: linear-gradient(135deg, #e6e9f8 0%, #f0f2fa 50%, #e2e6fa 100%);
            padding: 6rem 0;
            border-bottom: 1px solid var(--color-border);
        }

        .band-flare {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 4rem;
        }

        .shell-intro {
            flex: 1;
            min-width: 300px;
        }

        .burst-apex {
            font-size: clamp(2.2rem, 4vw, 3.5rem);
            font-weight: 800;
            color: var(--color-text-main);
            line-height: 1.25;
            letter-spacing: -0.02em;
            margin: 0 0 1.5rem 0;
        }

        .echo-safe {
            font-size: 1.125rem;
            color: var(--color-text-echo);
            line-height: 1.8;
            margin-bottom: 2rem;
            max-width: 600px;
        }

        .shell-media {
            flex: 1;
            min-width: 300px;
            display: flex;
            justify-content: center;
        }

        .lens-frame {
            background-color: var(--color-surface);
            border-radius: var(--radius-lg);
            padding: 1rem;
            box-shadow: var(--shadow-soft);
            border: 1px solid var(--color-border);
            transform: translateY(0);
            transition: var(--transition);
        }

        .lens-frame:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .lens-frame img {
            border-radius: var(--radius-md);
            border: 1px solid var(--color-border);
        }

        /* Block 2: Steps (UI Data Structure Carrier) */
        .mesh-steps {
            padding: 5rem 0;
            background-color: var(--color-bg);
        }

        .apex-minor {
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            margin: 0 0 1rem 0;
            color: var(--color-text-main);
        }

        .echo-lead {
            text-align: center;
            color: var(--color-text-echo);
            max-width: 700px;
            margin: 0 auto 4rem auto;
            font-size: 1.1rem;
        }

        .band-flow {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            position: relative;
        }

        /* 模拟流程线 */
        .band-flow::before {
            content: '';
            position: absolute;
            top: 50px;
            left: 5%;
            width: 90%;
            height: 2px;
            background: linear-gradient(90deg, var(--color-primary-light) 0%, var(--color-primary) 50%, var(--color-primary-light) 100%);
            z-index: 0;
        }

        @media (max-width: 1024px) {
            .band-flow::before {
                display: none;
            }
        }

        .cell-step {
            flex: 1;
            min-width: 240px;
            background-color: var(--color-surface);
            border-radius: var(--radius-lg);
            padding: 2.5rem 2rem;
            box-shadow: var(--shadow-soft);
            border: 1px solid var(--color-border);
            position: relative;
            z-index: 1;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .cell-step:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
            border-color: var(--color-primary-light);
        }

        .glyph-seal {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, var(--color-primary-light), var(--color-surface));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: var(--color-primary);
            font-size: 1.5rem;
            font-weight: 800;
            border: 2px solid var(--color-surface);
            box-shadow: 0 4px 12px rgba(110, 124, 213, 0.15);
        }

        .cell-step svg {
            width: 28px;
            height: 28px;
            fill: currentColor;
        }

        .apex-step {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 0 0 1rem 0;
            color: var(--color-text-main);
        }

        .echo-step {
            font-size: 0.95rem;
            color: var(--color-text-echo);
            line-height: 1.6;
            margin: 0;
        }

        /* Block 3: Advanced Tips (Vault Grid) */
        .vault-tips {
            padding: 5rem 0 7rem 0;
            background-color: var(--color-surface);
            border-top: 1px solid var(--color-border);
        }

        .band-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .node-tip {
            background-color: var(--color-bg);
            border-radius: var(--radius-md);
            padding: 2.5rem;
            border: 1px solid var(--color-border);
            transition: var(--transition);
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            align-items: flex-start;
        }

        .node-tip:hover {
            background-color: var(--color-surface);
            box-shadow: var(--shadow-soft);
            border-color: var(--color-primary);
        }

        .glyph-surface {
            width: 48px;
            height: 48px;
            background-color: var(--color-primary-light);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-primary);
            flex-shrink: 0;
        }

        .glyph-surface svg {
            width: 24px;
            height: 24px;
            fill: currentColor;
        }

        .shell-tip-echo {
            flex: 1;
            min-width: 200px;
        }

        .apex-tip {
            font-size: 1.1rem;
            font-weight: 600;
            margin: 0 0 0.5rem 0;
            color: var(--color-text-main);
        }

        .echo-tip {
            font-size: 0.95rem;
            color: var(--color-text-echo);
            margin: 0;
        }

        /* Footer */
        .sole-base {
            background-color: #1a202c;
            color: #a0aec0;
            padding: 4rem 0;
            text-align: center;
        }

        .apex-brand {
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff;
            margin: 0 0 1rem 0;
            letter-spacing: 1px;
        }

        .echo-copyright {
            font-size: 0.9rem;
            margin: 0;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .flare-prism { padding: 4rem 0; }
            .band-flare { gap: 2rem; }
            .burst-apex { font-size: 2rem; }
            .mesh-steps, .vault-tips { padding: 3rem 0; }
            .cell-step { padding: 2rem 1.5rem; }
        }

.helm-crown-helm {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--color-text-main);
}
.helm-crown-helm,
.helm-crown-helm *,
.helm-crown-helm *::before,
.helm-crown-helm *::after {
    box-sizing: border-box;
}

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

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

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

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

.helm-crown-helm a.helm-wire-active,
.helm-crown-helm a.helm-wire {
    --aisite-shell-nav-padding: 0.5rem 0;
    --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;
}

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

.helm-crown-helm .helm-hull-global{
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 4vw;
        }

.helm-crown-helm{
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid #e2e8f0;
        }

.helm-crown-helm .helm-helm-nexus{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            padding: 1rem 0;
            min-width: 0;
        }

.helm-crown-helm .helm-core{
            display: flex;
            align-items: center;
            min-width: 0;
        }

.helm-crown-helm .helm-core img{
            height: 36px;
            width: auto;
            display: block;
        }

.helm-crown-helm .helm-helm-array{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            min-width: 0;
        }

.helm-crown-helm .helm-wire{
            font-size: 0.95rem;
            font-weight: 500;
            color: #718096;
            padding: 0.5rem 0;
            position: relative;
        }

.helm-crown-helm .helm-wire::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #6e7cd5;
            transition: all 0.35s ease;
            border-radius: 2px;
        }

.helm-crown-helm .helm-wire:hover{
            color: #6e7cd5;
        }

.helm-crown-helm .helm-wire:hover::after{
            width: 100%;
        }

.helm-crown-helm .helm-wire-active{
            font-size: 0.95rem;
            font-weight: 600;
            color: #6e7cd5;
            padding: 0.5rem 0;
            position: relative;
        }

.helm-crown-helm .helm-wire-active::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #6e7cd5;
            border-radius: 2px;
        }

@media (max-width: 768px){.helm-crown-helm{
                position: relative;
            }

.helm-crown-helm .helm-helm-nexus{
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }

.helm-crown-helm .helm-helm-array{
                gap: 1rem;
                width: 100%;
                overflow-x: auto;
                padding-bottom: 0.5rem;
            }}

.helm-crown-helm {
    background: rgb(255, 255, 255);
    background-image: none;
}

.base-sole-base {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--color-text-main);
}
.base-sole-base,
.base-sole-base *,
.base-sole-base *::before,
.base-sole-base *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.base-sole-base .base-hull-global{
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 4vw;
        }

.base-sole-base{
            background-color: #ffffff;
            border-top: 1px solid #e2e8f0;
            padding: 4rem 0 2rem 0;
            margin-top: auto;
        }

.base-sole-base .base-root-depth{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
            min-width: 0;
        }

.base-sole-base .base-base-apex{
            font-size: 1.5rem;
            font-weight: 800;
            color: #2d3748;
            letter-spacing: -0.02em;
        }

.base-sole-base .base-base-band{
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            min-width: 0;
        }

.base-sole-base .base-base-wire{
            color: #718096;
            font-size: 0.9rem;
        }

.base-sole-base .base-base-wire:hover{
            color: #6e7cd5;
        }

.base-sole-base .base-base-echo{
            width: 100%;
            text-align: center;
            color: #a0aec0;
            font-size: 0.85rem;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid #e2e8f0;
        }

@media (max-width: 768px){.base-sole-base .base-root-depth{
                flex-direction: column;
                align-items: flex-start;
            }}