:root {
            --bg-dark: #090b11;
            --bg-surface: #121624;
            --bg-patch: #1a2035;
            --bg-patch-hover: #222942;
            --primary: #5135db;
            --primary-light: #7054ff;
            --accent-cyan: #00f2fe;
            --accent-green: #00e676;
            --accent-red: #ff5252;
            --text-main: #f1f5f9;
            --text-muted: #94a3b8;
            --border: rgba(81, 53, 219, 0.25);
            --border-glow: rgba(0, 242, 254, 0.3);
            --radius: 20px;
            --radius-sm: 12px;
            --transition: 0.25s ease;
        }

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

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

        /* 顶部导航 */
        .crest {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(9, 11, 17, 0.85);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            padding: 16px 0;
        }

        .corral {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

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

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

        .scout {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px;
        }

        .scout a {
            color: var(--text-muted);
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 99px;
            font-size: 15px;
            font-weight: 500;
            transition: all var(--transition);
            white-space: nowrap;
        }

        .scout a:hover {
            color: var(--text-main);
            background: rgba(255, 255, 255, 0.05);
        }

        .scout a.active {
            color: #ffffff;
            background: var(--primary);
            box-shadow: 0 0 20px rgba(81, 53, 219, 0.4);
        }

        .spur {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 28px;
            border-radius: 99px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: #ffffff;
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            border: 1px solid rgba(255, 255, 255, 0.15);
            box-shadow: 0 8px 24px rgba(81, 53, 219, 0.35);
            transition: all var(--transition);
            cursor: pointer;
            white-space: nowrap;
        }

        .spur:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(81, 53, 219, 0.5);
            background: linear-gradient(135deg, var(--primary-light), var(--accent-cyan));
        }

        .charge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 28px;
            border-radius: 99px;
            background: rgba(255, 255, 255, 0.06);
            color: var(--text-main);
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            border: 1px solid rgba(255, 255, 255, 0.12);
            transition: all var(--transition);
            white-space: nowrap;
        }

        .charge:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.25);
            transform: translateY(-2px);
        }

        /* Hero区 - Mosaic Collage 拼贴原型 */
        .apex {
            position: relative;
            padding: 80px 0 100px;
            background: radial-gradient(circle at 70% 30%, rgba(81, 53, 219, 0.25) 0%, transparent 60%),
                        radial-gradient(circle at 20% 80%, rgba(0, 242, 254, 0.15) 0%, transparent 50%);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .mosaic-shell {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 24px;
            display: grid;
            grid-template-columns: 1.1fr 1.3fr;
            gap: 40px;
            align-items: center;
        }

        .zenith-lore {
            min-width: 0;
            word-break: break-word;
        }

        .token {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            border-radius: 99px;
            background: rgba(0, 242, 254, 0.08);
            border: 1px solid rgba(0, 242, 254, 0.25);
            color: var(--accent-cyan);
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 24px;
        }

        .horn-giant {
            font-size: 44px;
            line-height: 1.25;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 20px;
            letter-spacing: -0.5px;
            white-space: normal;
        }

        .horn-sub {
            font-size: 18px;
            color: var(--text-muted);
            margin-bottom: 36px;
            max-width: 540px;
            line-height: 1.7;
        }

        .bolt-cluster {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
            margin-bottom: 40px;
        }

        .streak-metrics {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .metric-hoof {
            min-width: 0;
        }

        .metric-num {
            font-size: 26px;
            font-weight: 700;
            color: #ffffff;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .metric-num span {
            color: var(--accent-green);
            font-size: 14px;
        }

        .metric-txt {
            font-size: 13px;
            color: var(--text-muted);
        }

        /* Mosaic Grid 拼贴块 */
        .mosaic-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            grid-template-rows: repeat(10, 42px);
            gap: 16px;
            position: relative;
        }

        .vision-patch {
            background: var(--bg-surface);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 20px;
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
            transition: transform var(--transition), border-color var(--transition);
        }

        .vision-patch:hover {
            transform: translateY(-4px);
            border-color: var(--accent-cyan);
        }

        .patch-a {
            grid-column: 1 / 8;
            grid-row: 1 / 6;
            background: linear-gradient(145deg, #161c2e, #0e1220);
        }

        .patch-b {
            grid-column: 8 / 13;
            grid-row: 1 / 7;
            background: linear-gradient(145deg, #1d1838, #110e24);
            border-color: rgba(81, 53, 219, 0.4);
        }

        .patch-c {
            grid-column: 1 / 7;
            grid-row: 6 / 11;
            background: linear-gradient(145deg, #111e28, #0b141b);
            border-color: rgba(0, 242, 254, 0.25);
        }

        .patch-d {
            grid-column: 7 / 13;
            grid-row: 7 / 11;
            background: linear-gradient(145deg, #1c1a2e, #131122);
        }

        .patch-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 12px;
        }

        .patch-horn {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-main);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .stamp-tiny {
            font-size: 11px;
            padding: 2px 8px;
            border-radius: 4px;
            background: rgba(0, 230, 118, 0.15);
            color: var(--accent-green);
        }

        .chart-sim {
            width: 100%;
            height: 80px;
            margin-top: 10px;
        }

        .order-row {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            padding: 4px 0;
            border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
        }

        .order-ask { color: var(--accent-red); }
        .order-bid { color: var(--accent-green); }

        /* 内容区块通用容器 */
        .meadow {
            max-width: 1320px;
            margin: 0 auto;
            padding: 100px 24px;
            min-width: 0;
        }

        .vault {
            background: var(--bg-surface);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            padding: 100px 0;
        }

        .vault-inner {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 24px;
        }

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

        .horn-sec {
            font-size: 34px;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 16px;
            white-space: normal;
        }

        .lore-sec {
            font-size: 16px;
            color: var(--text-muted);
            line-height: 1.8;
        }

        /* 核心能力网格 */
        .cluster-three {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 28px;
        }

        .slate-patch {
            background: var(--bg-patch);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 36px 30px;
            transition: all var(--transition);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .slate-patch:hover {
            background: var(--bg-patch-hover);
            transform: translateY(-6px);
            border-color: var(--primary-light);
            box-shadow: 0 20px 40px rgba(81, 53, 219, 0.2);
        }

        .glyph-box {
            width: 56px;
            height: 56px;
            border-radius: var(--radius-sm);
            background: linear-gradient(135deg, rgba(81, 53, 219, 0.3), rgba(0, 242, 254, 0.15));
            border: 1px solid rgba(81, 53, 219, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }

        .glyph-box svg {
            width: 28px;
            height: 28px;
            fill: var(--accent-cyan);
        }

        .horn-patch {
            font-size: 22px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 12px;
        }

        .lore-patch {
            font-size: 15px;
            color: var(--text-muted);
            margin-bottom: 24px;
            line-height: 1.7;
        }

        .node-node {
            color: var(--accent-cyan);
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: gap var(--transition);
        }

        .node-node:hover {
            gap: 10px;
            color: #ffffff;
        }

        /* 智能选股与社区生态 - FAQ & Dual Layout */
        .eco-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: start;
        }

        .faq-cluster {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .faq-hoof {
            background: var(--bg-dark);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-sm);
            overflow: hidden;
            transition: border-color var(--transition);
        }

        .faq-hoof[open] {
            border-color: var(--primary-light);
            background: rgba(81, 53, 219, 0.08);
        }

        .faq-summary {
            padding: 20px 24px;
            font-size: 17px;
            font-weight: 600;
            color: #ffffff;
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-summary::-webkit-details-marker {
            display: none;
        }

        .faq-summary::after {
            content: '+';
            font-size: 22px;
            color: var(--accent-cyan);
            transition: transform var(--transition);
        }

        .faq-hoof[open] .faq-summary::after {
            content: '−';
            transform: rotate(180deg);
        }

        .faq-body {
            padding: 0 24px 20px;
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.7;
        }

        /* 多屏交易卡片区 */
        .cross-shell {
            background: linear-gradient(135deg, rgba(81, 53, 219, 0.15), rgba(9, 11, 17, 0.9));
            border: 1px solid var(--border);
            border-radius: 28px;
            padding: 60px;
            margin-top: 40px;
        }

        .hub-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .hub-patch {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-sm);
            padding: 24px;
            text-decoration: none;
            color: var(--text-main);
            transition: all var(--transition);
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .hub-patch:hover {
            background: rgba(81, 53, 219, 0.2);
            border-color: var(--accent-cyan);
            transform: translateY(-4px);
        }

        .hub-horn {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .hub-desc {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* 页脚区 Sole */
        .sole {
            background: #05070a;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 80px 0 40px;
            font-size: 14px;
            color: var(--text-muted);
        }

        .bedrock {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 24px;
            display: grid;
            grid-template-columns: 2fr repeat(3, 1fr);
            gap: 48px;
            margin-bottom: 60px;
        }

        .brand-horn {
            font-size: 24px;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }

        .brand-lore {
            max-width: 320px;
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .col-horn {
            font-size: 16px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 20px;
        }

        .col-herd {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .col-herd a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color var(--transition);
        }

        .col-herd a:hover {
            color: var(--accent-cyan);
        }

        .lore-streak {
            max-width: 1320px;
            margin: 0 auto;
            padding: 30px 24px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
        }

        /* 响应式调整 */
        @media (max-width: 1024px) {
            .mosaic-shell {
                grid-template-columns: 1fr;
            }
            .mosaic-grid {
                grid-template-rows: repeat(10, 36px);
            }
            .eco-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .horn-giant {
                font-size: 32px;
            }
            .crest {
                padding: 12px 0;
            }
            .corral {
                flex-direction: column;
                gap: 16px;
            }
            .scout {
                justify-content: center;
                overflow-x: auto;
                width: 100%;
                padding-bottom: 4px;
            }
            .mosaic-grid {
                display: flex;
                flex-direction: column;
            }
            .cross-shell {
                padding: 30px 20px;
            }
            .bedrock {
                grid-template-columns: 1fr;
                gap: 32px;
            }
        }

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

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

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

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

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

.scout-crest a.scout-node {
    --aisite-shell-nav-padding: 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;
}

.scout-crest a.scout-node,
.scout-crest a.scout-node:hover,
.scout-crest a.scout-node:focus,
.scout-crest a.scout-node:active,
.scout-crest a.scout-node.active,
.scout-crest a.scout-node[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);
}

.scout-crest{
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(9, 11, 17, 0.85);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            padding: 16px 0;
        }

.scout-crest .scout-corral{
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

.scout-crest .scout-mark{
            display: flex;
            align-items: center;
            min-width: 0;
        }

.scout-crest .scout-mark img{
            height: 38px;
            width: auto;
            display: block;
        }

.scout-crest .scout-scout{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px;
        }

.scout-crest .scout-scout a{
            color: #94a3b8;
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 99px;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.25s ease;
            white-space: nowrap;
        }

.scout-crest .scout-scout a:hover{
            color: #f1f5f9;
            background: rgba(255, 255, 255, 0.05);
        }

.scout-crest .scout-scout a.active{
            color: #ffffff;
            background: #5135db;
            box-shadow: 0 0 20px rgba(81, 53, 219, 0.4);
        }

.scout-crest .scout-spur{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 28px;
            border-radius: 99px;
            background: linear-gradient(135deg, #5135db, #7054ff);
            color: #ffffff;
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            border: 1px solid rgba(255, 255, 255, 0.15);
            box-shadow: 0 8px 24px rgba(81, 53, 219, 0.35);
            transition: all 0.25s ease;
            cursor: pointer;
            white-space: nowrap;
        }

.scout-crest .scout-spur:hover{
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(81, 53, 219, 0.5);
            background: linear-gradient(135deg, #7054ff, #00f2fe);
        }

@media (max-width: 768px){.scout-crest{
                padding: 12px 0;
            }

.scout-crest .scout-corral{
                flex-direction: column;
                gap: 16px;
            }

.scout-crest .scout-scout{
                justify-content: center;
                overflow-x: auto;
                width: 100%;
                padding-bottom: 4px;
            }}

.scout-crest {
    background: rgb(9, 11, 17);
    background-image: none;
}

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

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

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

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

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

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

.haven-sole{
            background: #05070a;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 80px 0 40px;
            font-size: 14px;
            color: #94a3b8;
        }

.haven-sole .haven-bedrock{
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 24px;
            display: grid;
            grid-template-columns: 2fr repeat(3, 1fr);
            gap: 48px;
            margin-bottom: 60px;
        }

.haven-sole .haven-brand-horn{
            font-size: 24px;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }

.haven-sole .haven-brand-lore{
            max-width: 320px;
            line-height: 1.7;
            margin-bottom: 24px;
        }

.haven-sole .haven-col-horn{
            font-size: 16px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 20px;
        }

.haven-sole .haven-col-herd{
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

.haven-sole .haven-col-herd a{
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.25s ease;
        }

.haven-sole .haven-col-herd a:hover{
            color: #00f2fe;
        }

.haven-sole .haven-lore-streak{
            max-width: 1320px;
            margin: 0 auto;
            padding: 30px 24px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
        }

@media (max-width: 768px){.haven-sole .haven-bedrock{
                grid-template-columns: 1fr;
                gap: 32px;
            }}