: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;
  --up-color: #10b981;
  --down-color: #ef4444;
}

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

body {
  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;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* 导航规范整合 */
.ribbon {
  background-color: rgba(9, 12, 21, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

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

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

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

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

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

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

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

.hoof.active {
  color: var(--accent-light);
  font-weight: 600;
  position: relative;
}

.hoof.active::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-light);
  border-radius: 2px;
}

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

.thrust-steer:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(60, 116, 219, 0.45);
}

/* 主容器及顶层块结构混排 */
.crest {
  padding: 110px 0 80px 0;
  background: radial-gradient(circle at 50% 20%, rgba(60, 116, 219, 0.18) 0%, rgba(9, 12, 21, 0) 70%);
}

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

.apex {
  padding: 90px 0;
  background-color: var(--bg-dark);
}

.corral {
  padding: 90px 0;
  background: linear-gradient(180deg, #111728 0%, #090c15 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* 内容布局与排版 */
.paddock {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.spark-crest {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.2px;
  color: var(--text-primary);
  margin-bottom: 24px;
  text-align: center;
  white-space: normal;
}

.spark-crest span {
  background: linear-gradient(135deg, #f0f4fd 30%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glyph-lead {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto 48px auto;
  text-align: center;
  line-height: 1.7;
}

.flock-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.slab {
  flex: 1 1 340px;
  min-width: 0;
  background: var(--bg-elevated);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-main);
  padding: 36px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  position: relative;
  overflow: hidden;
}

.slab:hover {
  transform: translateY(-4px);
  border-color: rgba(91, 143, 249, 0.3);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 0 20px var(--accent-glow);
}

.ticker-emblem {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(60, 116, 219, 0.2) 0%, rgba(91, 143, 249, 0.05) 100%);
  border: 1px solid rgba(91, 143, 249, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent-light);
}

.spark-sub {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.3;
}

.spark-corral {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.glyph-body {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* 盘口数据与 UI 模拟专用组件 */
.slate-dashboard {
  background: #0d121f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-main);
  padding: 28px;
  margin-top: 40px;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.6);
}

.flock-split {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.strand-half {
  flex: 1 1 480px;
  min-width: 0;
}

.sheath-quote {
  background: #151c2e;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px;
}

.tether-depth {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 8px 12px;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.tether-depth:last-child {
  border-bottom: none;
}

.glyph-up {
  color: var(--up-color);
  font-weight: 600;
}

.glyph-down {
  color: var(--down-color);
  font-weight: 600;
}

.plaque-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: rgba(60, 116, 219, 0.15);
  border: 1px solid rgba(91, 143, 249, 0.3);
  border-radius: 20px;
  color: var(--accent-light);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.charge-stub {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #3c74db 0%, #1e4bb5 100%);
  color: #ffffff;
  padding: 16px 36px;
  border-radius: 22px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 10px 25px rgba(60, 116, 219, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  margin-top: 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.charge-stub:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(60, 116, 219, 0.5);
}

/* 页脚区域规范 */
.trough {
  background-color: #06080e;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 0 30px 0;
}

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

.bedrock {
  flex: 1 1 280px;
  min-width: 0;
}

.spark-bedrock {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.flock-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hoof-trough {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.15s ease;
}

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

.crown {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .beacon {
    gap: 16px;
    margin-top: 12px;
  }
  .steer {
    height: auto;
    padding: 16px 0;
  }
  .crest {
    padding: 60px 0 40px 0;
  }
  .surge,
  .apex,
  .corral {
    padding: 50px 0;
  }
  .spark-crest {
    font-size: 2rem;
  }
  .flock-grid {
    gap: 20px;
  }
}

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