/* ==========================================
           富途牛牛 全极速金融科技终端 深度设计系统
           色彩规范：#3c74db 主音调 + 极夜科技底色
           类名规范：前缀 + 反指纹专有词汇表
           ========================================== */
        
        :root {
            --accent: #3c74db;
            --accent-glow: rgba(60, 116, 219, 0.35);
            --accent-light: #5b8ff9;
            --bg-dark: #090c15;
            --bg-surface: #111728;
            --bg-elevated: #1a233a;
            --border-soft: rgba(255, 255, 255, 0.08);
            --border-bright: rgba(60, 116, 219, 0.4);
            --text-primary: #f0f4fd;
            --text-secondary: #94a3b8;
            --text-muted: #64748b;
            --up-green: #00c087;
            --radius-main: 22px;
            --radius-sm: 12px;
            --shadow-depth: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(60, 116, 219, 0.15);
            --shadow-glow: 0 0 25px rgba(60, 116, 219, 0.4);
            --transition: all 0.15s ease;
        }

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

        html {
            scroll-behavior: smooth;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-primary);
            line-height: 1.6;
        }

        body {
            overflow-x: hidden;
            word-break: keep-all;
            overflow-wrap: break-word;
        }

        /* 顶层外壳与布局限制 */
        .strand {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            position: relative;
        }

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

        /* ================= 导航区域 (Ribbon / Beacon) ================= */
        .ribbon {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(9, 12, 21, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border-soft);
        }

        .steer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 76px;
        }

        .horn {
            display: flex;
            align-items: center;
        }

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

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

        .hoof {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            padding: 8px 18px;
            border-radius: 99px;
            transition: var(--transition);
            word-break: break-word;
        }

        .hoof:hover {
            color: var(--text-primary);
            background: rgba(255, 255, 255, 0.05);
        }

        .hoof.active {
            color: #ffffff;
            background: var(--accent);
            box-shadow: 0 0 15px var(--accent-glow);
        }

        .thrust-steer {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #3c74db 0%, #2557b8 100%);
            color: #ffffff;
            font-weight: 600;
            font-size: 14px;
            padding: 10px 22px;
            border-radius: 99px;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: 0 4px 14px rgba(60, 116, 219, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .thrust-steer:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-glow);
        }

        /* ================= 主体内容容器 ================= */
        .paddock {
            flex: 1;
        }

        /* ================= 顶层区块 1: Crest (Hero / Intro) ================= */
        .crest {
            position: relative;
            padding: 110px 0 80px 0;
            text-align: center;
            background: radial-gradient(circle at 50% 20%, rgba(60, 116, 219, 0.18) 0%, rgba(9, 12, 21, 0) 70%);
            border-bottom: 1px solid var(--border-soft);
            overflow: hidden;
        }

        .crest::before {
            content: '';
            position: absolute;
            top: -100px;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 400px;
            background: radial-gradient(ellipse, rgba(60, 116, 219, 0.25) 0%, rgba(0,0,0,0) 70%);
            pointer-events: none;
            filter: blur(50px);
        }

        .surge-corral {
            max-width: 1050px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .sheath-pulse {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(60, 116, 219, 0.12);
            border: 1px solid var(--border-bright);
            padding: 6px 18px;
            border-radius: 99px;
            margin-bottom: 28px;
        }

        .ticker-dot {
            width: 8px;
            height: 8px;
            background-color: var(--up-green);
            border-radius: 50%;
            box-shadow: 0 0 10px var(--up-green);
        }

        .glyph-pulse {
            font-size: 13px;
            font-weight: 600;
            color: var(--accent-light);
            letter-spacing: 0.5px;
        }

        /* 强约束：Hero 标题 clamp 超大字体 */
        .spark-crest {
            font-size: clamp(2.8rem, 6vw, 4.8rem);
            font-weight: 800;
            line-height: 1.12;
            letter-spacing: -1.5px;
            margin-bottom: 24px;
            background: linear-gradient(180deg, #ffffff 0%, #c4d7fe 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            word-break: break-word;
        }

        .glyph-crest {
            font-size: 1.25rem;
            color: var(--text-secondary);
            max-width: 820px;
            margin: 0 auto 40px auto;
            line-height: 1.7;
            word-break: break-word;
        }

        .flock-actions {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 60px;
        }

        .charge-crest {
            background: linear-gradient(135deg, #3c74db 0%, #1e4bb5 100%);
            color: #ffffff;
            font-size: 18px;
            font-weight: 700;
            padding: 16px 42px;
            border-radius: var(--radius-main);
            text-decoration: none;
            transition: var(--transition);
            box-shadow: var(--shadow-depth);
            border: 1px solid rgba(255, 255, 255, 0.25);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .charge-crest:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 0 35px rgba(60, 116, 219, 0.6);
        }

        .nudge-secondary {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-soft);
            color: var(--text-primary);
            font-size: 16px;
            font-weight: 600;
            padding: 16px 32px;
            border-radius: var(--radius-main);
            text-decoration: none;
            transition: var(--transition);
        }

        .nudge-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
        }

        /* 核心能力速览 (Hero 底部标签阵列) */
        .flock-bullets {
            display: flex;
            justify-content: center;
            gap: 32px;
            flex-wrap: wrap;
            margin-top: 20px;
        }

        .tether-bullet {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-secondary);
            font-size: 15px;
            font-weight: 500;
            background: rgba(17, 23, 40, 0.6);
            padding: 10px 20px;
            border-radius: 99px;
            border: 1px solid var(--border-soft);
            min-width: 0;
        }

        .ticker-check {
            width: 20px;
            height: 20px;
            color: var(--accent-light);
            flex-shrink: 0;
        }

        /* ================= 顶层区块 2: Article (Proof - 技术架构与性能指标) ================= */
        .slate-proof {
            padding: 90px 0;
            background: var(--bg-surface);
            border-bottom: 1px solid var(--border-soft);
            position: relative;
        }

        .apex-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px auto;
        }

        .spark-corral {
            font-size: 2.25rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: #ffffff;
            letter-spacing: -0.5px;
            word-break: break-word;
        }

        .glyph-corral {
            font-size: 1.1rem;
            color: var(--text-secondary);
            line-height: 1.7;
            word-break: break-word;
        }

        .flock-metrics {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
            margin-bottom: 50px;
        }

        .plaque-stat {
            flex: 1;
            min-width: 280px;
            background: var(--bg-elevated);
            border: 1px solid var(--border-soft);
            border-radius: var(--radius-main);
            padding: 36px 28px;
            position: relative;
            overflow: hidden;
            transition: var(--transition);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .plaque-stat::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--accent), transparent);
            opacity: 0;
            transition: var(--transition);
        }

        .plaque-stat:hover {
            transform: translateY(-5px);
            border-color: var(--border-bright);
            box-shadow: var(--shadow-depth);
        }

        .plaque-stat:hover::before {
            opacity: 1;
        }

        .spark-metric {
            font-size: 3.2rem;
            font-weight: 800;
            color: var(--accent-light);
            line-height: 1.1;
            margin-bottom: 12px;
            font-family: Consolas, Monaco, monospace;
        }

        .spark-stat-spark {
            font-size: 1.2rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 8px;
        }

        .glyph-stat-desc {
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* 架构技术特点长文本排版 */
        .slab-architecture-detail {
            background: rgba(9, 12, 21, 0.7);
            border: 1px solid var(--border-soft);
            border-radius: var(--radius-main);
            padding: 40px;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
        }

        .strand-arch-glyph {
            flex: 1;
            min-width: 300px;
        }

        .spark-subhead {
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 16px;
        }

        .glyph-paragraph {
            color: var(--text-secondary);
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .strand-arch-visual {
            flex: 1;
            min-width: 300px;
            background: var(--bg-dark);
            border: 1px solid var(--border-bright);
            border-radius: var(--radius-sm);
            padding: 24px;
            box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
        }

        .sheath-code-ribbon {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-bottom: 12px;
            margin-bottom: 16px;
            border-bottom: 1px solid var(--border-soft);
            font-size: 13px;
            color: var(--text-muted);
            font-family: monospace;
        }

        .glyph-code {
            font-family: Consolas, Monaco, "Courier New", monospace;
            font-size: 13.5px;
            color: #a5d6ff;
            line-height: 1.7;
        }

        .glyph-code span.green { color: var(--up-green); }
        .glyph-code span.yellow { color: #f2c94c; }

        /* ================= 顶层区块 3: Section (Detail - 全球交易矩阵 & 3个主题集成) ================= */
        .matrix-detail {
            padding: 100px 0;
            background: var(--bg-dark);
            border-bottom: 1px solid var(--border-soft);
        }

        .flock-cards {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
            margin-bottom: 70px;
        }

        .slab-market {
            flex: 1;
            min-width: 320px;
            background: var(--bg-surface);
            border: 1px solid var(--border-soft);
            border-radius: var(--radius-main);
            padding: 36px;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
        }

        .slab-market:hover {
            transform: translateY(-6px);
            border-color: var(--border-bright);
            box-shadow: var(--shadow-depth);
        }

        .ticker-pulse {
            width: 52px;
            height: 52px;
            background: rgba(60, 116, 219, 0.15);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            color: var(--accent-light);
            border: 1px solid rgba(60, 116, 219, 0.3);
        }

        .spark-slab-spark {
            font-size: 1.4rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 12px;
        }

        .glyph-slab-desc {
            color: var(--text-secondary);
            font-size: 0.98rem;
            line-height: 1.7;
            margin-bottom: 24px;
            flex-grow: 1;
        }

        .flock-gild {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 24px;
        }

        .tether-tether {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: var(--text-primary);
        }

        .hoof-slab-hoof {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--accent-light);
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            transition: var(--transition);
            margin-top: auto;
        }

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

        /* 3个主题摘要融合区 (下载切片, 费率预览, 智能看盘摘要) */
        .paddock-topics {
            background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-surface) 100%);
            border: 1px solid var(--border-soft);
            border-radius: var(--radius-main);
            padding: 48px;
        }

        .spark-topic-corral {
            font-size: 1.8rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 36px;
            text-align: center;
        }

        .flock-topic-grid {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }

        .plaque-topic {
            flex: 1;
            min-width: 260px;
            background: rgba(9, 12, 21, 0.6);
            border: 1px solid var(--border-soft);
            border-radius: var(--radius-sm);
            padding: 28px;
            transition: var(--transition);
        }

        .plaque-topic:hover {
            border-color: var(--accent);
            background: rgba(9, 12, 21, 0.9);
        }

        .spark-topic-spark {
            font-size: 1.15rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .glyph-topic-summary {
            font-size: 0.92rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 18px;
        }

        /* ================= 顶层区块 4: Div (Capability - 全球社区与生态) ================= */
        .flock-capability {
            padding: 100px 0;
            background: radial-gradient(ellipse at bottom, rgba(60, 116, 219, 0.15) 0%, rgba(9, 12, 21, 1) 70%);
            border-bottom: 1px solid var(--border-soft);
        }

        .corral-community {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
            align-items: center;
        }

        .strand-community-strand {
            flex: 1;
            min-width: 320px;
        }

        .strand-community-cards {
            flex: 1;
            min-width: 320px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .slate-social-feed {
            background: var(--bg-surface);
            border: 1px solid var(--border-soft);
            border-radius: var(--radius-sm);
            padding: 24px;
            transition: var(--transition);
        }

        .slate-social-feed:hover {
            border-color: var(--border-bright);
            transform: translateX(6px);
        }

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

        .ticker-avatar {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: linear-gradient(135deg, #3c74db, #9b51e0);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #ffffff;
            font-size: 14px;
        }

        .glyph-user-name {
            font-weight: 600;
            color: #ffffff;
            font-size: 15px;
        }

        .glyph-user-tag {
            font-size: 12px;
            color: var(--accent-light);
            background: rgba(60, 116, 219, 0.15);
            padding: 2px 8px;
            border-radius: 4px;
        }

        .glyph-post {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* ================= 页脚底座 (Crown / Bedrock) ================= */
        .crown {
            background: var(--bg-dark);
            padding: 70px 0 40px 0;
            color: var(--text-muted);
            font-size: 14px;
        }

        .bedrock-top {
            display: flex;
            justify-content: space-between;
            gap: 40px;
            flex-wrap: wrap;
            margin-bottom: 50px;
            padding-bottom: 40px;
            border-bottom: 1px solid var(--border-soft);
        }

        .strand-brand-info {
            max-width: 360px;
        }

        /* 页脚严格遵循规则：只用文字，不用 logo 图片 */
        .spark-brand-name {
            font-size: 1.6rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 14px;
            letter-spacing: -0.5px;
        }

        .glyph-crown-desc {
            color: var(--text-muted);
            line-height: 1.7;
            font-size: 0.92rem;
        }

        .flock-crown-links {
            display: flex;
            gap: 60px;
            flex-wrap: wrap;
        }

        .strand-crown-col {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .spark-crown-head {
            color: #ffffff;
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 6px;
        }

        .hoof-crown {
            color: var(--text-muted);
            text-decoration: none;
            transition: var(--transition);
        }

        .hoof-crown:hover {
            color: var(--accent-light);
        }

        .soil-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
            font-size: 13px;
        }

        /* 响应式断点适配 */
        @media (max-width: 992px) {
            .flock-metrics, .flock-cards, .flock-topic-grid {
                flex-direction: column;
            }
            .slab-architecture-detail, .corral-community {
                flex-direction: column;
            }
        }

        @media (max-width: 768px) {
            .steer {
                flex-direction: column;
                height: auto;
                padding: 16px 0;
                gap: 16px;
            }
            .beacon {
                justify-content: center;
            }
            .spark-crest {
                font-size: 2.5rem;
            }
            .crest {
                padding: 60px 0 40px 0;
            }
            .flock-actions {
                flex-direction: column;
                width: 100%;
            }
            .charge-crest, .nudge-secondary {
                width: 100%;
                text-align: center;
                justify-content: center;
            }
        }

.steer-ribbon {
    word-break: keep-all;
}
.steer-ribbon,
.steer-ribbon *,
.steer-ribbon *::before,
.steer-ribbon *::after {
    box-sizing: border-box;
}

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

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

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

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

.steer-ribbon a.steer-hoof {
    --aisite-shell-nav-padding: 8px 18px;
    --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;
}

.steer-ribbon a.steer-hoof,
.steer-ribbon a.steer-hoof:hover,
.steer-ribbon a.steer-hoof:focus,
.steer-ribbon a.steer-hoof:active,
.steer-ribbon a.steer-hoof.active,
.steer-ribbon a.steer-hoof[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);
}

.steer-ribbon .steer-vault{
            width: 100%;
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 24px;
        }

.steer-ribbon{
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(9, 12, 21, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

.steer-ribbon .steer-steer{
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 76px;
        }

.steer-ribbon .steer-horn{
            display: flex;
            align-items: center;
        }

.steer-ribbon .steer-horn img{
            height: 36px;
            width: auto;
            display: block;
        }

.steer-ribbon .steer-beacon{
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

.steer-ribbon .steer-hoof{
            color: #94a3b8;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            padding: 8px 18px;
            border-radius: 99px;
            transition: all 0.15s ease;
            word-break: break-word;
        }

.steer-ribbon .steer-hoof:hover{
            color: #f0f4fd;
            background: rgba(255, 255, 255, 0.05);
        }

.steer-ribbon .steer-hoof.active{
            color: #ffffff;
            background: #3c74db;
            box-shadow: 0 0 15px rgba(60, 116, 219, 0.35);
        }

.steer-ribbon .steer-thrust-steer{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #3c74db 0%, #2557b8 100%);
            color: #ffffff;
            font-weight: 600;
            font-size: 14px;
            padding: 10px 22px;
            border-radius: 99px;
            text-decoration: none;
            transition: all 0.15s ease;
            box-shadow: 0 4px 14px rgba(60, 116, 219, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

.steer-ribbon .steer-thrust-steer:hover{
            transform: translateY(-2px);
            box-shadow: 0 0 25px rgba(60, 116, 219, 0.4);
        }

@media (max-width: 768px){.steer-ribbon .steer-steer{
                flex-direction: column;
                height: auto;
                padding: 16px 0;
                gap: 16px;
            }

.steer-ribbon .steer-beacon{
                justify-content: center;
            }}

.steer-ribbon {
    background: rgb(9, 12, 21);
    background-image: none;
}

.trough-strand {
    word-break: keep-all;
}
.trough-strand,
.trough-strand *,
.trough-strand *::before,
.trough-strand *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.trough-strand{
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            position: relative;
        }

.trough-strand .trough-vault{
            width: 100%;
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 24px;
        }

.trough-strand .trough-ribbon{
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(9, 12, 21, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

.trough-strand .trough-steer{
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 76px;
        }

.trough-strand .trough-horn{
            display: flex;
            align-items: center;
        }

.trough-strand .trough-horn img{
            height: 36px;
            width: auto;
            display: block;
        }

.trough-strand .trough-beacon{
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

.trough-strand .trough-hoof{
            color: #94a3b8;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            padding: 8px 18px;
            border-radius: 99px;
            transition: all 0.15s ease;
            word-break: break-word;
        }

.trough-strand .trough-hoof:hover{
            color: #f0f4fd;
            background: rgba(255, 255, 255, 0.05);
        }

.trough-strand .trough-hoof.active{
            color: #ffffff;
            background: #3c74db;
            box-shadow: 0 0 15px rgba(60, 116, 219, 0.35);
        }

.trough-strand .trough-thrust-steer{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #3c74db 0%, #2557b8 100%);
            color: #ffffff;
            font-weight: 600;
            font-size: 14px;
            padding: 10px 22px;
            border-radius: 99px;
            text-decoration: none;
            transition: all 0.15s ease;
            box-shadow: 0 4px 14px rgba(60, 116, 219, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

.trough-strand .trough-thrust-steer:hover{
            transform: translateY(-2px);
            box-shadow: 0 0 25px rgba(60, 116, 219, 0.4);
        }

.trough-strand .trough-paddock{
            flex: 1;
        }

.trough-strand .trough-crest{
            position: relative;
            padding: 110px 0 80px 0;
            text-align: center;
            background: radial-gradient(circle at 50% 20%, rgba(60, 116, 219, 0.18) 0%, rgba(9, 12, 21, 0) 70%);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            overflow: hidden;
        }

.trough-strand .trough-crest::before{
            content: '';
            position: absolute;
            top: -100px;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 400px;
            background: radial-gradient(ellipse, rgba(60, 116, 219, 0.25) 0%, rgba(0,0,0,0) 70%);
            pointer-events: none;
            filter: blur(50px);
        }

.trough-strand .trough-surge-corral{
            max-width: 1050px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

.trough-strand .trough-sheath-pulse{
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(60, 116, 219, 0.12);
            border: 1px solid rgba(60, 116, 219, 0.4);
            padding: 6px 18px;
            border-radius: 99px;
            margin-bottom: 28px;
        }

.trough-strand .trough-glyph-pulse{
            font-size: 13px;
            font-weight: 600;
            color: #5b8ff9;
            letter-spacing: 0.5px;
        }

.trough-strand .trough-spark-crest{
            font-size: clamp(2.8rem, 6vw, 4.8rem);
            font-weight: 800;
            line-height: 1.12;
            letter-spacing: -1.5px;
            margin-bottom: 24px;
            background: linear-gradient(180deg, #ffffff 0%, #c4d7fe 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            word-break: break-word;
        }

.trough-strand .trough-glyph-crest{
            font-size: 1.25rem;
            color: #94a3b8;
            max-width: 820px;
            margin: 0 auto 40px auto;
            line-height: 1.7;
            word-break: break-word;
        }

.trough-strand .trough-flock-actions{
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 60px;
        }

.trough-strand .trough-charge-crest{
            background: linear-gradient(135deg, #3c74db 0%, #1e4bb5 100%);
            color: #ffffff;
            font-size: 18px;
            font-weight: 700;
            padding: 16px 42px;
            border-radius: 22px;
            text-decoration: none;
            transition: all 0.15s ease;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(60, 116, 219, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.25);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

.trough-strand .trough-charge-crest:hover{
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 0 35px rgba(60, 116, 219, 0.6);
        }

.trough-strand .trough-nudge-secondary{
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            color: #f0f4fd;
            font-size: 16px;
            font-weight: 600;
            padding: 16px 32px;
            border-radius: 22px;
            text-decoration: none;
            transition: all 0.15s ease;
        }

.trough-strand .trough-nudge-secondary:hover{
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.2);
        }

.trough-strand .trough-flock-bullets{
            display: flex;
            justify-content: center;
            gap: 32px;
            flex-wrap: wrap;
            margin-top: 20px;
        }

.trough-strand .trough-tether-bullet{
            display: flex;
            align-items: center;
            gap: 10px;
            color: #94a3b8;
            font-size: 15px;
            font-weight: 500;
            background: rgba(17, 23, 40, 0.6);
            padding: 10px 20px;
            border-radius: 99px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            min-width: 0;
        }

.trough-strand .trough-ticker-check{
            width: 20px;
            height: 20px;
            color: #5b8ff9;
            flex-shrink: 0;
        }

.trough-strand .trough-slate-proof{
            padding: 90px 0;
            background: #111728;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            position: relative;
        }

.trough-strand .trough-apex-intro{
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px auto;
        }

.trough-strand .trough-spark-corral{
            font-size: 2.25rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: #ffffff;
            letter-spacing: -0.5px;
            word-break: break-word;
        }

.trough-strand .trough-glyph-corral{
            font-size: 1.1rem;
            color: #94a3b8;
            line-height: 1.7;
            word-break: break-word;
        }

.trough-strand .trough-flock-metrics{
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
            margin-bottom: 50px;
        }

.trough-strand .trough-plaque-stat{
            flex: 1;
            min-width: 280px;
            background: #1a233a;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 22px;
            padding: 36px 28px;
            position: relative;
            overflow: hidden;
            transition: all 0.15s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

.trough-strand .trough-plaque-stat::before{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #3c74db, transparent);
            opacity: 0;
            transition: all 0.15s ease;
        }

.trough-strand .trough-plaque-stat:hover{
            transform: translateY(-5px);
            border-color: rgba(60, 116, 219, 0.4);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(60, 116, 219, 0.15);
        }

.trough-strand .trough-plaque-stat:hover::before{
            opacity: 1;
        }

.trough-strand .trough-spark-metric{
            font-size: 3.2rem;
            font-weight: 800;
            color: #5b8ff9;
            line-height: 1.1;
            margin-bottom: 12px;
            font-family: Consolas, Monaco, monospace;
        }

.trough-strand .trough-spark-stat-spark{
            font-size: 1.2rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 8px;
        }

.trough-strand .trough-glyph-stat-desc{
            font-size: 0.95rem;
            color: #64748b;
            line-height: 1.6;
        }

.trough-strand .trough-slab-architecture-detail{
            background: rgba(9, 12, 21, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 22px;
            padding: 40px;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
        }

.trough-strand .trough-strand-arch-glyph{
            flex: 1;
            min-width: 300px;
        }

.trough-strand .trough-spark-subhead{
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 16px;
        }

.trough-strand .trough-glyph-paragraph{
            color: #94a3b8;
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 16px;
        }

.trough-strand .trough-strand-arch-visual{
            flex: 1;
            min-width: 300px;
            background: #090c15;
            border: 1px solid rgba(60, 116, 219, 0.4);
            border-radius: 12px;
            padding: 24px;
            box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
        }

.trough-strand .trough-sheath-code-ribbon{
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-bottom: 12px;
            margin-bottom: 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            font-size: 13px;
            color: #64748b;
            font-family: monospace;
        }

.trough-strand .trough-glyph-code{
            font-family: Consolas, Monaco, "Courier New", monospace;
            font-size: 13.5px;
            color: #a5d6ff;
            line-height: 1.7;
        }

.trough-strand .trough-glyph-code span.green{ color: #00c087; }

.trough-strand .trough-glyph-code span.yellow{ color: #f2c94c; }

.trough-strand .trough-matrix-detail{
            padding: 100px 0;
            background: #090c15;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

.trough-strand .trough-flock-cards{
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
            margin-bottom: 70px;
        }

.trough-strand .trough-slab-market{
            flex: 1;
            min-width: 320px;
            background: #111728;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 22px;
            padding: 36px;
            transition: all 0.15s ease;
            display: flex;
            flex-direction: column;
        }

.trough-strand .trough-slab-market:hover{
            transform: translateY(-6px);
            border-color: rgba(60, 116, 219, 0.4);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(60, 116, 219, 0.15);
        }

.trough-strand .trough-ticker-pulse{
            width: 52px;
            height: 52px;
            background: rgba(60, 116, 219, 0.15);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            color: #5b8ff9;
            border: 1px solid rgba(60, 116, 219, 0.3);
        }

.trough-strand .trough-spark-slab-spark{
            font-size: 1.4rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 12px;
        }

.trough-strand .trough-glyph-slab-desc{
            color: #94a3b8;
            font-size: 0.98rem;
            line-height: 1.7;
            margin-bottom: 24px;
            flex-grow: 1;
        }

.trough-strand .trough-flock-gild{
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 24px;
        }

.trough-strand .trough-tether-tether{
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: #f0f4fd;
        }

.trough-strand .trough-hoof-slab-hoof{
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: #5b8ff9;
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            transition: all 0.15s ease;
            margin-top: auto;
        }

.trough-strand .trough-hoof-slab-hoof:hover{
            gap: 10px;
            color: #ffffff;
        }

.trough-strand .trough-paddock-topics{
            background: linear-gradient(180deg, #1a233a 0%, #111728 100%);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 22px;
            padding: 48px;
        }

.trough-strand .trough-spark-topic-corral{
            font-size: 1.8rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 36px;
            text-align: center;
        }

.trough-strand .trough-flock-topic-grid{
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }

.trough-strand .trough-plaque-topic{
            flex: 1;
            min-width: 260px;
            background: rgba(9, 12, 21, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            padding: 28px;
            transition: all 0.15s ease;
        }

.trough-strand .trough-plaque-topic:hover{
            border-color: #3c74db;
            background: rgba(9, 12, 21, 0.9);
        }

.trough-strand .trough-spark-topic-spark{
            font-size: 1.15rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

.trough-strand .trough-glyph-topic-summary{
            font-size: 0.92rem;
            color: #64748b;
            line-height: 1.6;
            margin-bottom: 18px;
        }

.trough-strand .trough-flock-capability{
            padding: 100px 0;
            background: radial-gradient(ellipse at bottom, rgba(60, 116, 219, 0.15) 0%, rgba(9, 12, 21, 1) 70%);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

.trough-strand .trough-corral-community{
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
            align-items: center;
        }

.trough-strand .trough-strand-community-strand{
            flex: 1;
            min-width: 320px;
        }

.trough-strand .trough-strand-community-cards{
            flex: 1;
            min-width: 320px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

.trough-strand .trough-slate-social-feed{
            background: #111728;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            padding: 24px;
            transition: all 0.15s ease;
        }

.trough-strand .trough-slate-social-feed:hover{
            border-color: rgba(60, 116, 219, 0.4);
            transform: translateX(6px);
        }

.trough-strand .trough-sheath-user-head{
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }

.trough-strand .trough-ticker-avatar{
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: linear-gradient(135deg, #3c74db, #9b51e0);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #ffffff;
            font-size: 14px;
        }

.trough-strand .trough-glyph-user-name{
            font-weight: 600;
            color: #ffffff;
            font-size: 15px;
        }

.trough-strand .trough-glyph-user-tag{
            font-size: 12px;
            color: #5b8ff9;
            background: rgba(60, 116, 219, 0.15);
            padding: 2px 8px;
            border-radius: 4px;
        }

.trough-strand .trough-glyph-post{
            font-size: 0.95rem;
            color: #94a3b8;
            line-height: 1.6;
        }

.trough-strand .trough-crown{
            background: #090c15;
            padding: 70px 0 40px 0;
            color: #64748b;
            font-size: 14px;
        }

.trough-strand .trough-bedrock-top{
            display: flex;
            justify-content: space-between;
            gap: 40px;
            flex-wrap: wrap;
            margin-bottom: 50px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

.trough-strand .trough-strand-brand-info{
            max-width: 360px;
        }

.trough-strand .trough-spark-brand-name{
            font-size: 1.6rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 14px;
            letter-spacing: -0.5px;
        }

.trough-strand .trough-glyph-crown-desc{
            color: #64748b;
            line-height: 1.7;
            font-size: 0.92rem;
        }

.trough-strand .trough-flock-crown-links{
            display: flex;
            gap: 60px;
            flex-wrap: wrap;
        }

.trough-strand .trough-strand-crown-col{
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

.trough-strand .trough-spark-crown-head{
            color: #ffffff;
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 6px;
        }

.trough-strand .trough-hoof-crown{
            color: #64748b;
            text-decoration: none;
            transition: all 0.15s ease;
        }

.trough-strand .trough-hoof-crown:hover{
            color: #5b8ff9;
        }

.trough-strand .trough-soil-bottom{
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
            font-size: 13px;
        }

@media (max-width: 992px){.trough-strand .trough-flock-metrics, .trough-strand .trough-flock-cards, .trough-strand .trough-flock-topic-grid{
                flex-direction: column;
            }

.trough-strand .trough-slab-architecture-detail, .trough-strand .trough-corral-community{
                flex-direction: column;
            }}

@media (max-width: 768px){.trough-strand .trough-steer{
                flex-direction: column;
                height: auto;
                padding: 16px 0;
                gap: 16px;
            }

.trough-strand .trough-beacon{
                justify-content: center;
            }

.trough-strand .trough-spark-crest{
                font-size: 2.5rem;
            }

.trough-strand .trough-crest{
                padding: 60px 0 40px 0;
            }

.trough-strand .trough-flock-actions{
                flex-direction: column;
                width: 100%;
            }

.trough-strand .trough-charge-crest, .trough-strand .trough-nudge-secondary{
                width: 100%;
                text-align: center;
                justify-content: center;
            }}