:root {
    --accent: #3c74db;
    --accent-glow: rgba(60, 116, 219, 0.35);
    --accent-light: #5b8ff9;
    --bg-dark: #090c15;
    --bg-surface: #111728;
    --bg-elevated: #1a233a;
    --text-primary: #f0f4fd;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --radius-main: 22px;
}

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

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

/* 布局外壳容器 */
.strand-corral {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

/* 统一复用导航栏 */
.ribbon {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(9, 12, 21, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

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

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

.hoof {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.15s ease;
}

.hoof:hover,
.hoof.active {
    color: var(--text-primary);
}

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

.hoof.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--accent);
    border-radius: 2px;
}

.thrust-steer {
    background: var(--accent);
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.15s ease;
    box-shadow: 0 4px 14px var(--accent-glow);
}

.thrust-steer:hover {
    background: var(--accent-light);
    transform: translateY(-1px);
}

/* 主内容大域 */
.paddock-corral {
    flex: 1;
}

/* 1. HERO 模块 (Pricing Hero) */
.crest-crest {
    padding: 100px 0 60px 0;
    background: radial-gradient(circle at 50% 15%, rgba(60, 116, 219, 0.2) 0%, rgba(9, 12, 21, 0) 70%);
    text-align: center;
}

.sheath-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(60, 116, 219, 0.12);
    border: 1px solid rgba(60, 116, 219, 0.3);
    padding: 6px 16px;
    border-radius: 100px;
    color: var(--accent-light);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.spark-crest {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glyph-crest {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 760px;
    margin: 0 auto 48px auto;
}

.flock-crest-props {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.plaque-prop {
    flex: 1;
    min-width: 260px;
    max-width: 360px;
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-main);
    padding: 28px 24px;
    text-align: left;
    transition: transform 0.15s ease, border-color 0.15s ease;
}

.plaque-prop:hover {
    transform: translateY(-4px);
    border-color: rgba(60, 116, 219, 0.4);
}

.ticker-prop {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(60, 116, 219, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--accent-light);
}

.spark-prop {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.glyph-prop {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* 2. 全球费率对比表 (Fee Rates Table) */
.apex-rates {
    padding: 70px 0;
}

.spark-apex {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
}

.glyph-apex {
    text-align: center;
    color: var(--text-secondary);
    font-size: 16px;
    max-width: 680px;
    margin: 0 auto 40px auto;
}

.slab-table-corral {
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-main);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.slate-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.slate-table th {
    background: var(--bg-elevated);
    padding: 20px 24px;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.slate-table td {
    padding: 20px 24px;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.slate-table tr:last-child td {
    border-bottom: none;
}

.slate-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.spark-market {
    color: var(--text-primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sheath-highlight {
    color: var(--accent-light);
    font-weight: 600;
}

/* 3. 阶梯模式与省钱逻辑 (Tier Calculator / Savings) */
.surge-tier {
    padding: 70px 0;
    background: linear-gradient(180deg, rgba(9, 12, 21, 0) 0%, rgba(26, 35, 58, 0.4) 50%, rgba(9, 12, 21, 0) 100%);
}

.flock-tier-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: stretch;
}

.plaque-tier-slab {
    flex: 1;
    min-width: 300px;
    background: var(--bg-elevated);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-main);
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.spark-tier-slab {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text-primary);
}

.glyph-tier-slab {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.flock-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tether-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(9, 12, 21, 0.6);
    padding: 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.ticker-step {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.glyph-step-desc {
    font-size: 14px;
    color: var(--text-primary);
}

.charge-calc {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3c74db 0%, #1e4bb5 100%);
    color: #ffffff;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.15s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 20px var(--accent-glow);
}

.charge-calc:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px var(--accent-glow);
}

/* 4. FAQ 常见问题解答 */
.bedrock-faq {
    padding: 70px 0 100px 0;
}

.flock-faq-gild {
    max-width: 900px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.plaque-faq {
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 24px 28px;
}

.spark-faq {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ticker-faq {
    color: var(--accent-light);
    flex-shrink: 0;
}

.glyph-faq {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    padding-left: 32px;
}

/* 页脚 (Crown) */
.crown-crown {
    background: #06080e;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 60px 0 40px 0;
    margin-top: auto;
}

.flock-crown-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 40px;
}

.slab-brand-info {
    max-width: 340px;
}

.spark-crown-brand {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
}

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

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

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

.spark-crown-col {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hoof-crown {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.15s ease;
}

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

.sheath-bottom-sheath {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
}

/* 响应式调整 */
@media (max-width: 768px) {
    .steer {
        height: auto;
        padding: 16px 0;
        gap: 16px;
    }
    
    .beacon {
        gap: 16px;
        width: 100%;
        justify-content: center;
    }

    .thrust-steer {
        display: none;
    }

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

    .spark-crest {
        font-size: 2.2rem;
    }

    .slate-table th,
    .slate-table td {
        padding: 12px 14px;
        font-size: 13px;
    }

    .glyph-faq {
        padding-left: 0;
    }

    .flock-crown-grid {
        flex-direction: column;
    }
}

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