/* 继承首页视觉家族变量 */
        :root {
            --text-main: #1a1f36;
            --text-muted: #697386;
            --bg-page: #f7f9fc;
            --bg-surface: #ffffff;
            --bg-alt: #f0f3f8;
            --accent: #e67d66;
            --accent-hover: #d56a54;
            --radius-sm: 12px;
            --radius-md: 20px;
            --radius-lg: 32px;
            --shadow-soft: 0 8px 30px rgba(26, 31, 54, 0.04);
            --shadow-hover: 0 14px 40px rgba(230, 125, 102, 0.15);
            --transition: all 0.25s 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(--bg-page);
            color: var(--text-main);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

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

        /* 通用容器规范 */
        .cloud {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 5vw;
        }

        /* 文本换行规范 */
        .echo, .shout {
            word-break: break-word;
            overflow-wrap: break-word;
        }

        .echo {
            word-break: keep-all;
        }

        .shout {
            white-space: normal;
        }

        /* --- 导航栏样式 (严格复用) --- */
        .apex {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .radar {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            max-width: 1240px;
            margin: 0 auto;
            padding: 16px 5vw;
            min-width: 0;
        }

        .crest {
            flex-shrink: 0;
        }

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

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

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

        .wire:hover, .wire.active {
            color: var(--text-main);
        }

        .wire.active::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 3px;
            background-color: var(--accent);
            border-radius: 2px;
        }

        /* --- 区块 1: Hero (Launch) --- */
        .launch {
            padding: 80px 0 100px;
            margin: 40px 0 60px;
        }

        .blast {
            display: grid;
            grid-template-columns: 1fr 1fr; /* Asymmetric grid adaptation */
            gap: 60px;
            align-items: center;
        }

        .blast-shell {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .launch-shout {
            font-size: clamp(2.5rem, 4vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.02em;
            color: var(--text-main);
        }

        .launch-echo {
            font-size: 1.125rem;
            color: var(--text-muted);
            line-height: 1.8;
            max-width: 500px;
        }

        /* 按钮变体 */
        .ping {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: var(--accent);
            color: #ffffff;
            padding: 16px 36px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            border: 2px solid transparent;
            box-shadow: 0 4px 15px rgba(230, 125, 102, 0.3);
            cursor: pointer;
            align-self: flex-start;
            transform: translateY(0);
        }

        .ping:hover {
            background-color: var(--accent-hover);
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }

        .ping-glyph {
            margin-right: 12px;
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        /* Hero 视觉焦点 */
        .blast-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            background: linear-gradient(135deg, rgba(230,125,102,0.1) 0%, rgba(230,125,102,0.02) 100%);
            border-radius: var(--radius-lg);
            padding: 60px;
            border: 1px solid rgba(255,255,255,0.6);
        }

        .seal-art {
            width: 100%;
            max-width: 320px;
            height: auto;
            filter: drop-shadow(0 20px 40px rgba(230,125,102,0.15));
            transform: translateY(0);
            transition: transform 0.6s ease;
        }

        .blast-visual:hover .seal-art {
            transform: translateY(-10px) scale(1.02);
        }

        /* --- 区块 2: Guide (Nexus) --- */
        .nexus {
            margin: 80px 0;
            padding: 80px 5vw;
            background-color: var(--bg-surface);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-soft);
        }

        .nexus-shout {
            font-size: clamp(2rem, 3vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 48px;
            text-align: center;
        }

        .nexus-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            align-items: start;
        }

        .step-flock {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .node {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            background: var(--bg-alt);
            padding: 24px;
            border-radius: var(--radius-md);
            border: 1px solid rgba(0,0,0,0.03);
            transition: var(--transition);
        }

        .node:hover {
            transform: translateX(8px);
            background: var(--bg-surface);
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            border-color: rgba(230, 125, 102, 0.2);
        }

        .node-digit {
            flex-shrink: 0;
            width: 36px;
            height: 36px;
            background: var(--accent);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.1rem;
        }

        .node-shell {
            display: flex;
            flex-direction: column;
            gap: 8px;
            min-width: 0;
        }

        .node-shout {
            font-weight: 600;
            font-size: 1.125rem;
            color: var(--text-main);
        }

        .node-echo {
            font-size: 0.95rem;
            color: var(--text-muted);
        }

        .lens-shell {
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: 0 24px 48px rgba(0,0,0,0.12);
            border: 4px solid var(--bg-page);
        }

        .lens {
            width: 100%;
            height: auto;
            transform: scale(1);
            transition: transform 0.4s ease;
        }
        
        .lens-shell:hover .lens {
            transform: scale(1.03);
        }

        /* --- 区块 3: FAQ (Soar) --- */
        .soar {
            margin: 100px 0 80px;
        }

        .soar-apex {
            text-align: center;
            margin-bottom: 60px;
        }

        .soar-shout {
            font-size: clamp(2rem, 3vw, 2.5rem);
            font-weight: 700;
        }

        .soar-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .fold {
            background: rgba(255,255,255,0.9);
            backdrop-filter: blur(8px);
            border-radius: var(--radius-md);
            padding: 32px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            border: 1px solid rgba(255,255,255,1);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .fold:hover {
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
            transform: translateY(-4px);
        }

        .fold-glyph {
            width: 40px;
            height: 40px;
            background: rgba(230, 125, 102, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
        }
        
        .fold-glyph svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }

        .fold-shout {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--text-main);
        }

        .fold-echo {
            font-size: 1rem;
            color: var(--text-muted);
            line-height: 1.7;
        }

        /* --- 页脚 (Root) --- */
        .root {
            background-color: #111424;
            color: #fff;
            padding: 60px 5vw 40px;
            margin-top: auto;
        }

        .root-cloud {
            max-width: 1240px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 30px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 40px;
            margin-bottom: 30px;
        }

        .root-shout {
            font-size: 1.5rem;
            font-weight: 800;
            letter-spacing: 0.05em;
        }

        .root-chain {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            min-width: 0;
        }

        .root-wire {
            color: rgba(255,255,255,0.6);
            font-size: 0.95rem;
        }

        .root-wire:hover {
            color: #fff;
        }

        .root-echo {
            text-align: center;
            color: rgba(255,255,255,0.4);
            font-size: 0.85rem;
        }

        /* 响应式断点 */
        @media (max-width: 1024px) {
            .blast {
                gap: 40px;
            }
            .launch {
                padding: 60px 0 80px;
            }
        }

        @media (max-width: 768px) {
            .blast {
                grid-template-columns: 1fr;
            }
            .blast-shell {
                align-items: center;
                text-align: center;
            }
            .ping {
                align-self: center;
            }
            .nexus-grid {
                grid-template-columns: 1fr;
            }
            .chain {
                display: none; /* 简化移动端顶部，聚焦核心功能 */
            }
            .radar {
                justify-content: center;
            }
        }

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

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

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

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

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

.radar-apex a.radar-wire {
    --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;
}

.radar-apex a.radar-wire,
.radar-apex a.radar-wire:hover,
.radar-apex a.radar-wire:focus,
.radar-apex a.radar-wire:active,
.radar-apex a.radar-wire.active,
.radar-apex a.radar-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);
}

.radar-apex .radar-radar, .radar-apex .radar-chain{
            display: flex;
            flex-wrap: wrap;
        }

.radar-apex .radar-radar > *, .radar-apex .radar-chain > *{
            min-width: 0;
        }

.radar-apex{
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0,0,0,0.05);
            padding: 16px 5vw;
        }

.radar-apex .radar-radar{
            max-width: 1320px;
            margin: 0 auto;
            justify-content: space-between;
            align-items: center;
        }

.radar-apex .radar-crest{
            flex-shrink: 0;
            width: 140px;
        }

.radar-apex .radar-crest img{
            max-width: 100%;
            height: auto;
            display: block;
        }

.radar-apex .radar-chain{
            gap: 8px;
            align-items: center;
        }

.radar-apex .radar-wire{
            text-decoration: none;
            color: #697386;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 12px;
            transition: 0.25s ease;
            font-size: 0.95rem;
        }

.radar-apex .radar-wire:hover, .radar-apex .radar-wire.active{
            color: #e67d66;
            background-color: #fcf1ef;
        }

@media (max-width: 768px){.radar-apex .radar-radar{
                flex-direction: column;
                gap: 16px;
            }

.radar-apex .radar-chain{
                justify-content: center;
                flex-wrap: wrap;
            }}

.radar-apex {
    background: rgb(255, 255, 255);
    background-image: none;
}

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

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

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

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

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

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

.anchor-root{
            background-color: #1a1f36;
            color: rgba(255,255,255,0.7);
            padding: 80px 5vw 40px;
            margin-top: 60px;
        }

.anchor-root .anchor-root-flock{
            max-width: 1320px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 60px;
            padding-bottom: 60px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

.anchor-root .anchor-root-brand{
            font-size: 1.8rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 20px;
            display: block;
        }

.anchor-root .anchor-root-shout{
            color: #fff;
            font-size: 1.1rem;
            margin-bottom: 24px;
        }

.anchor-root .anchor-root-chain{
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

.anchor-root .anchor-root-wire{
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: color 0.25s ease;
        }

.anchor-root .anchor-root-wire:hover{
            color: #e67d66;
        }

.anchor-root .anchor-root-bottom{
            max-width: 1320px;
            margin: 30px auto 0;
            text-align: center;
            font-size: 0.9rem;
        }

@media (max-width: 1024px){.anchor-root .anchor-root-flock{
                grid-template-columns: 1fr 1fr;
            }}

@media (max-width: 768px){.anchor-root .anchor-root-flock{
                grid-template-columns: 1fr;
            }}