: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-line: rgba(81, 53, 219, 0.25);
            --border-glow: rgba(0, 242, 254, 0.3);
            --radius-main: 20px;
            --radius-pill: 99px;
            --transition-speed: 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: break-word;
            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 var(--border-line);
        }

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

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

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

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

        .node {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: color var(--transition-speed);
            white-space: nowrap;
        }

        .node:hover,
        .node.active {
            color: #ffffff;
        }

        .node.active {
            position: relative;
            font-weight: 600;
        }

        .node.active::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-light), var(--accent-cyan));
            border-radius: 2px;
        }

        .spur {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 22px;
            border-radius: var(--radius-pill);
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: #ffffff;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            border: 1px solid rgba(255, 255, 255, 0.15);
            box-shadow: 0 6px 20px rgba(81, 53, 219, 0.35);
            transition: transform var(--transition-speed), box-shadow var(--transition-speed);
            cursor: pointer;
            white-space: nowrap;
        }

        .spur:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(81, 53, 219, 0.5);
        }

        /* 主容器 */
        main {
            display: block;
            width: 100%;
        }

        .meadow {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Section 1: Intro Article - 首屏多因子量化选股 */
        .apex {
            padding: 70px 0 90px;
            background: radial-gradient(circle at 70% 20%, rgba(81, 53, 219, 0.28) 0%, transparent 60%),
                        radial-gradient(circle at 15% 85%, rgba(0, 242, 254, 0.18) 0%, transparent 50%);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

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

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

        .vault-right {
            flex: 1 1 500px;
            min-width: 0;
        }

        .token-glow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            background: rgba(81, 53, 219, 0.2);
            border: 1px solid rgba(112, 84, 255, 0.4);
            border-radius: var(--radius-pill);
            color: var(--accent-cyan);
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 24px;
        }

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

        .horn-giant span {
            background: linear-gradient(135deg, #ffffff 30%, var(--accent-cyan) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .lore-lead {
            font-size: 17px;
            color: var(--text-muted);
            margin-bottom: 32px;
            line-height: 1.8;
        }

        .herd-factors {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 36px;
        }

        .hoof-factor {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            background: var(--bg-surface);
            padding: 16px 20px;
            border-radius: 14px;
            border: 1px solid var(--border-line);
            transition: border-color var(--transition-speed);
        }

        .hoof-factor:hover {
            border-color: var(--primary-light);
        }

        .glyph-stamp {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: rgba(81, 53, 219, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .glyph-stamp svg {
            width: 20px;
            height: 20px;
            fill: none;
            stroke: var(--accent-cyan);
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .lore-factor-horn {
            font-weight: 700;
            font-size: 16px;
            color: #ffffff;
            margin-bottom: 4px;
        }

        .lore-factor-desc {
            font-size: 14px;
            color: var(--text-muted);
        }

        .vision-frame {
            position: relative;
            background: var(--bg-surface);
            border-radius: var(--radius-main);
            padding: 12px;
            border: 1px solid var(--border-glow);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
            overflow: hidden;
        }

        .vision-frame img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
            object-fit: cover;
        }

        /* Data UI Overlay Badge on Image */
        .slate-metric {
            position: absolute;
            bottom: 24px;
            right: 24px;
            background: rgba(18, 22, 36, 0.92);
            backdrop-filter: blur(12px);
            border: 1px solid var(--border-glow);
            border-radius: 14px;
            padding: 14px 20px;
            display: flex;
            align-items: center;
            gap: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        }

        .metric-num {
            font-size: 24px;
            font-weight: 800;
            color: var(--accent-green);
        }

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

        /* Section 2: Technical Pattern Recognition (Capability) */
        .surging {
            padding: 90px 0;
            position: relative;
        }

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

        .horn-sub {
            font-size: 32px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 16px;
            letter-spacing: -0.3px;
        }

        .lore-sub {
            font-size: 16px;
            color: var(--text-muted);
        }

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

        .patch-a {
            background: var(--bg-surface);
            border: 1px solid var(--border-line);
            border-radius: var(--radius-main);
            padding: 30px;
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
            transition: transform var(--transition-speed), border-color var(--transition-speed);
            display: flex;
            flex-direction: column;
        }

        .patch-a:hover {
            transform: translateY(-4px);
            border-color: var(--primary-light);
        }

        .streak-tag {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 20px;
        }

        .token-mini {
            padding: 4px 12px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 600;
            background: rgba(0, 230, 118, 0.15);
            color: var(--accent-green);
            border: 1px solid rgba(0, 230, 118, 0.3);
        }

        .token-mini.red {
            background: rgba(255, 82, 82, 0.15);
            color: var(--accent-red);
            border-color: rgba(255, 82, 82, 0.3);
        }

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

        .lore-patch {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 24px;
            flex: 1;
        }

        /* SVG Visualization Canvas Box */
        .vault-canvas {
            background: rgba(9, 11, 17, 0.7);
            border-radius: 12px;
            padding: 16px;
            border: 1px dashed rgba(255, 255, 255, 0.1);
        }

        .svg-chart {
            width: 100%;
            height: 120px;
            display: block;
        }

        /* Section 3: Aside - AI Financial Analysis (FAQ / Financial Analysis) */
        .zenith {
            padding: 80px 0;
            background: var(--bg-surface);
            border-top: 1px solid var(--border-line);
            border-bottom: 1px solid var(--border-line);
            margin: 30px 0;
        }

        .cluster-financial {
            display: flex;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .vault-financial-info {
            flex: 1 1 450px;
            min-width: 0;
        }

        .vault-financial-demo {
            flex: 1 1 500px;
            min-width: 0;
            background: var(--bg-dark);
            border: 1px solid var(--border-line);
            border-radius: var(--radius-main);
            padding: 28px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
        }

        .streak-report-crest {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-bottom: 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            margin-bottom: 20px;
        }

        .horn-stock {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
        }

        .lore-code {
            font-size: 13px;
            color: var(--accent-cyan);
            font-family: monospace;
        }

        .herd-metrics {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin-bottom: 24px;
        }

        .hoof-metric-box {
            background: var(--bg-patch);
            padding: 14px 18px;
            border-radius: 10px;
        }

        .lore-m-horn {
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 4px;
        }

        .lore-m-val {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
        }

        .patch-warning {
            background: rgba(255, 82, 82, 0.1);
            border: 1px solid rgba(255, 82, 82, 0.25);
            border-radius: 10px;
            padding: 14px 18px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .glyph-warning {
            width: 20px;
            height: 20px;
            stroke: var(--accent-red);
            fill: none;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .lore-warning {
            font-size: 13px;
            color: #ff8a8a;
            line-height: 1.5;
        }

        /* Section 4: Real-time Anomaly Alert (Closing) */
        .bedrock {
            padding: 90px 0;
            background: radial-gradient(circle at 50% 50%, rgba(81, 53, 219, 0.15) 0%, transparent 70%);
        }

        .cluster-alerts {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin-top: 48px;
        }

        .slate-alert {
            background: var(--bg-surface);
            border: 1px solid var(--border-line);
            border-radius: 16px;
            padding: 24px;
            display: flex;
            align-items: flex-start;
            gap: 16px;
            transition: border-color var(--transition-speed);
        }

        .slate-alert:hover {
            border-color: var(--accent-cyan);
        }

        .glyph-flash {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            background: rgba(0, 242, 254, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .glyph-flash svg {
            width: 22px;
            height: 22px;
            stroke: var(--accent-cyan);
            fill: none;
            stroke-width: 2;
        }

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

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

        .vault-spur-apex {
            margin-top: 70px;
            background: linear-gradient(135deg, rgba(81, 53, 219, 0.4), rgba(0, 242, 254, 0.15));
            border: 1px solid var(--border-glow);
            border-radius: var(--radius-main);
            padding: 48px;
            text-align: center;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .horn-spur {
            font-size: 28px;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 16px;
        }

        .lore-spur {
            font-size: 15px;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto 30px;
        }

        /* 页脚统一样式 */
        .sole {
            background: #06080d;
            border-top: 1px solid var(--border-line);
            padding: 60px 0 30px;
        }

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

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

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

        .lore-brand {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .cluster-foot-links {
            display: flex;
            gap: 60px;
            flex-wrap: wrap;
        }

        .vault-foot-col {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .horn-foot-col {
            font-size: 14px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 4px;
        }

        .node-foot {
            font-size: 13px;
            color: var(--text-muted);
            text-decoration: none;
            transition: color var(--transition-speed);
        }

        .node-foot:hover {
            color: var(--accent-cyan);
        }

        .streak-copyright {
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }

        .lore-lore {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .corral {
                height: auto;
                padding: 16px;
                gap: 16px;
            }

            .scout {
                gap: 16px;
                width: 100%;
                overflow-x: auto;
                padding-bottom: 8px;
            }

            .horn-giant {
                font-size: 30px;
            }

            .horn-sub {
                font-size: 24px;
            }

            .herd-metrics {
                grid-template-columns: 1fr;
            }

            .vault-spur-apex {
                padding: 28px 20px;
            }

            .cluster-foot-links {
                gap: 30px;
            }
        }

.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;
            }}