:root {
            --hue-primary: #db5422;
            --hue-accent: #f87139;
            --hue-dark: #0b0f19;
            --hue-deep: #121826;
            --hue-surface: #1a2234;
            --hue-border: rgba(219, 84, 34, 0.25);
            --hue-bloom: #f0f4f8;
            --hue-muted: #94a3b8;
            --radius-main: 14px;
            --speed-tr: 0.25s ease;
        }

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

        body {
            background-color: var(--hue-dark);
            color: var(--hue-bloom);
            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;
        }

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

        /* 顶部导航黑名单隔离样式 */
        .crown {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(11, 15, 25, 0.92);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--hue-border);
        }

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

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

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

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

        .horn {
            padding: 8px 18px;
            font-size: 15px;
            font-weight: 500;
            color: var(--hue-muted);
            border-radius: 8px;
            transition: all var(--speed-tr);
        }

        .horn:hover {
            color: #ffffff;
            background: rgba(219, 84, 34, 0.15);
        }

        .horn.active {
            color: #ffffff;
            background: var(--hue-primary);
            box-shadow: 0 4px 14px rgba(219, 84, 34, 0.4);
        }

        /* 主容器 */
        .haven {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Hero 区域：split_diagonal 倾斜切角基因 */
        .rally {
            position: relative;
            padding: 64px 0 80px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            min-height: 560px;
            overflow: hidden;
        }

        .sigil-split {
            display: flex;
            flex-wrap: wrap;
            width: 100%;
            align-items: center;
            gap: 40px;
        }

        .whisper-left {
            flex: 1 1 520px;
            min-width: 0;
            z-index: 2;
        }

        .whisper-right {
            flex: 1 1 480px;
            min-width: 0;
            position: relative;
        }

        /* 对角斜切装饰背景 */
        .whisper-right::before {
            content: "";
            position: absolute;
            top: -20px;
            left: -20px;
            right: -20px;
            bottom: -20px;
            background: linear-gradient(135deg, rgba(219, 84, 34, 0.25) 0%, rgba(248, 113, 57, 0.05) 100%);
            clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
            border-radius: 20px;
            z-index: 0;
        }

        .notch-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 14px;
            background: rgba(219, 84, 34, 0.12);
            border: 1px solid var(--hue-border);
            border-radius: 30px;
            font-size: 13px;
            color: var(--hue-accent);
            margin-bottom: 24px;
        }

        .spark-corral {
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 800;
            line-height: 1.25;
            color: #ffffff;
            margin-bottom: 20px;
            word-break: keep-all;
        }

        .bloom-corral {
            font-size: 17px;
            color: var(--hue-muted);
            margin-bottom: 32px;
            max-width: 600px;
            line-height: 1.7;
        }

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

        .charge-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px 32px;
            background: linear-gradient(135deg, var(--hue-accent) 0%, var(--hue-primary) 100%);
            color: #ffffff;
            font-weight: 600;
            font-size: 16px;
            border-radius: var(--radius-main);
            box-shadow: 0 8px 24px rgba(219, 84, 34, 0.35);
            transition: all var(--speed-tr);
        }

        .charge-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(219, 84, 34, 0.5);
        }

        .nudge-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 28px;
            background: var(--hue-surface);
            border: 1px solid var(--hue-border);
            color: #ffffff;
            font-weight: 500;
            font-size: 15px;
            border-radius: var(--radius-main);
            transition: all var(--speed-tr);
        }

        .nudge-secondary:hover {
            background: rgba(219, 84, 34, 0.15);
            border-color: var(--hue-accent);
        }

        /* 统计数据微块 */
        .sigil-metrics {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .clod-metric {
            flex: 1 1 140px;
            min-width: 0;
        }

        .spark-num {
            font-size: 24px;
            font-weight: 700;
            color: var(--hue-accent);
        }

        .bloom-tether {
            font-size: 13px;
            color: var(--hue-muted);
        }

        /* Hero 视觉承载：Data UI 界面仿真 */
        .parcel-preview {
            position: relative;
            z-index: 1;
            background: var(--hue-deep);
            border: 1px solid var(--hue-border);
            border-radius: 16px;
            padding: 20px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(10px);
        }

        .notch-crown {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-bottom: 14px;
            margin-bottom: 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .spark-stock {
            font-size: 16px;
            font-weight: 600;
            color: #ffffff;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .notch-tag {
            font-size: 11px;
            padding: 2px 8px;
            background: rgba(34, 197, 94, 0.15);
            color: #4ade80;
            border-radius: 4px;
        }

        .sigil-chart {
            height: 180px;
            width: 100%;
            margin-bottom: 16px;
        }

        .sigil-orderbook {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 12px;
        }

        .clod-book-col {
            flex: 1 1 180px;
            min-width: 0;
            background: rgba(0, 0, 0, 0.25);
            padding: 10px;
            border-radius: 8px;
        }

        .strand-order {
            display: flex;
            justify-content: space-between;
            margin-bottom: 4px;
        }

        .bloom-ask { color: #f87171; }
        .bloom-bid { color: #4ade80; }

        /* 模块 2：专业级投资工具集 (capability) */
        .vault {
            padding: 80px 0;
            background: linear-gradient(180deg, var(--hue-dark) 0%, var(--hue-deep) 100%);
            border-top: 1px solid rgba(255, 255, 255, 0.04);
        }

        .spark-corral {
            text-align: center;
            font-size: clamp(26px, 3vw, 36px);
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 14px;
        }

        .bloom-corral {
            text-align: center;
            font-size: 16px;
            color: var(--hue-muted);
            max-width: 680px;
            margin: 0 auto 50px;
        }

        .sigil-tools {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
        }

        .parcel-tool {
            flex: 1 1 340px;
            min-width: 0;
            background: var(--hue-surface);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: var(--radius-main);
            padding: 32px 24px;
            transition: all var(--speed-tr);
            position: relative;
            overflow: hidden;
        }

        .parcel-tool:hover {
            transform: translateY(-4px);
            border-color: var(--hue-border);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
        }

        .hoof-tether {
            width: 52px;
            height: 52px;
            border-radius: 12px;
            background: rgba(219, 84, 34, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--hue-accent);
        }

        .spark-parcel {
            font-size: 20px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 12px;
        }

        .bloom-parcel {
            font-size: 14px;
            color: var(--hue-muted);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .sigil-sprout {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .strand-feature {
            font-size: 13px;
            color: var(--hue-bloom);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .strand-feature::before {
            content: "✓";
            color: var(--hue-accent);
            font-weight: bold;
        }

        /* 模块 3：牛牛圈投资社区 (detail) */
        .surge {
            padding: 80px 0;
            position: relative;
        }

        .parcel-community {
            background: radial-gradient(circle at 50% 0%, rgba(219, 84, 34, 0.15) 0%, rgba(18, 24, 38, 0.8) 70%);
            border: 1px solid var(--hue-border);
            border-radius: 20px;
            padding: 48px 36px;
        }

        .sigil-feed {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 40px;
        }

        .clod-post {
            flex: 1 1 280px;
            min-width: 0;
            background: rgba(11, 15, 25, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 20px;
        }

        .notch-user {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
        }

        .hoof-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--hue-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 14px;
            color: #fff;
        }

        .spark-username {
            font-size: 14px;
            font-weight: 600;
            color: #ffffff;
        }

        .bloom-post {
            font-size: 13px;
            color: var(--hue-muted);
            line-height: 1.5;
        }

        /* 模块 4：站内重点主题 (pathway) */
        .pasture {
            padding: 80px 0 100px;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
        }

        .sigil-paths {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
        }

        .plaque-path {
            flex: 1 1 320px;
            min-width: 0;
            background: var(--hue-deep);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-main);
            padding: 28px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: all var(--speed-tr);
        }

        .plaque-path:hover {
            border-color: var(--hue-accent);
            transform: translateY(-3px);
        }

        .horn-crest {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            font-weight: 600;
            color: var(--hue-accent);
            margin-top: 16px;
        }

        .horn-crest:hover {
            color: #ffffff;
        }

        /* 页脚区域：bedrock */
        .bedrock {
            background: #070a11;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 60px 0 30px;
        }

        .spur-inner {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: space-between;
        }

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

        .spark-brand {
            font-size: 22px;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }

        .bloom-bloom {
            font-size: 13px;
            color: var(--hue-muted);
            line-height: 1.6;
        }

        .sigil-links {
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
        }

        .clod-col {
            flex: 1 1 120px;
            min-width: 0;
        }

        .spark-subhead {
            font-size: 14px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 16px;
        }

        .sigil-spur-sprout {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .horn-spur {
            font-size: 13px;
            color: var(--hue-muted);
            transition: color var(--speed-tr);
        }

        .horn-spur:hover {
            color: var(--hue-accent);
        }

        .notch-bottom {
            max-width: 1320px;
            margin: 40px auto 0;
            padding: 24px 24px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
            font-size: 12px;
            color: #64748b;
        }

        /* 响应式调整 */
        @media (max-width: 992px) {
            .rally {
                padding: 40px 0;
            }
            .whisper-right::before {
                clip-path: none;
            }
        }

        @media (max-width: 768px) {
            .corral {
                height: auto;
                padding: 16px;
                gap: 12px;
            }
            .steer {
                width: 100%;
                justify-content: space-between;
            }
            .horn {
                padding: 6px 12px;
                font-size: 13px;
            }
            .spark-corral {
                font-size: 28px;
            }
            .parcel-community {
                padding: 24px 16px;
            }
        }

.crest-crown{
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(11, 15, 25, 0.92);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(219, 84, 34, 0.25);
        }

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

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

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

.crest-crown .crest-steer{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px;
            min-width: 0;
        }

.crest-crown .crest-horn{
            padding: 8px 18px;
            font-size: 15px;
            font-weight: 500;
            color: #94a3b8;
            border-radius: 8px;
            transition: all 0.25s ease;
        }

.crest-crown .crest-horn:hover{
            color: #ffffff;
            background: rgba(219, 84, 34, 0.15);
        }

.crest-crown .crest-horn.active{
            color: #ffffff;
            background: #db5422;
            box-shadow: 0 4px 14px rgba(219, 84, 34, 0.4);
        }

@media (max-width: 768px){.crest-crown .crest-corral{
                height: auto;
                padding: 16px;
                gap: 12px;
            }

.crest-crown .crest-steer{
                width: 100%;
                justify-content: space-between;
            }

.crest-crown .crest-horn{
                padding: 6px 12px;
                font-size: 13px;
            }}

.crest-crown {
    background: rgb(11, 15, 25);
    background-image: none;
}

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

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

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

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

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

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

.bedrock-bedrock{
            background: #070a11;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 60px 0 30px;
        }

.bedrock-bedrock .bedrock-spur-inner{
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: space-between;
        }

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

.bedrock-bedrock .bedrock-spark-brand{
            font-size: 22px;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }

.bedrock-bedrock .bedrock-bloom-bloom{
            font-size: 13px;
            color: #94a3b8;
            line-height: 1.6;
        }

.bedrock-bedrock .bedrock-sigil-links{
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
        }

.bedrock-bedrock .bedrock-clod-col{
            flex: 1 1 120px;
            min-width: 0;
        }

.bedrock-bedrock .bedrock-spark-subhead{
            font-size: 14px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 16px;
        }

.bedrock-bedrock .bedrock-sigil-spur-sprout{
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

.bedrock-bedrock .bedrock-horn-spur{
            font-size: 13px;
            color: #94a3b8;
            transition: color 0.25s ease;
        }

.bedrock-bedrock .bedrock-horn-spur:hover{
            color: #f87139;
        }

.bedrock-bedrock .bedrock-notch-bottom{
            max-width: 1320px;
            margin: 40px auto 0;
            padding: 24px 24px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
            font-size: 12px;
            color: #64748b;
        }