: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;
      --transition: 0.15s ease;
    }

    * {
      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;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: all var(--transition);
    }

    /* 顶层封装容器 */
    .strand {
      width: 100%;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

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

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

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

    .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);
      font-size: 15px;
      font-weight: 500;
      position: relative;
      padding: 8px 0;
    }

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

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

    .thrust-steer {
      background: linear-gradient(135deg, var(--accent) 0%, #1e4bb5 100%);
      color: #ffffff;
      font-size: 14px;
      font-weight: 600;
      padding: 10px 22px;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      box-shadow: 0 4px 15px var(--accent-glow);
    }

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

    /* 主内容区域骨架 */
    .corral {
      flex: 1;
      width: 100%;
    }

    /* Section 1: Hero Acquire Block */
    .crest {
      padding: 90px 0 70px 0;
      background: radial-gradient(circle at 50% 15%, rgba(60, 116, 219, 0.2) 0%, rgba(9, 12, 21, 0) 70%);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .crest-paddock {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      flex-wrap: wrap;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .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: clamp(1rem, 2vw, 1.25rem);
      color: var(--text-secondary);
      max-width: 780px;
      margin-bottom: 40px;
    }

    /* 下载平台快速选择入口 */
    .flock-crest {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      width: 100%;
      max-width: 1000px;
      margin-bottom: 50px;
    }

    .plaque-dl {
      flex: 1;
      min-width: 220px;
      background: var(--bg-surface);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--radius-main);
      padding: 28px 24px;
      display: flex;
      flex-wrap: wrap;
      flex-direction: column;
      align-items: center;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      transition: all var(--transition);
    }

    .plaque-dl:hover {
      transform: translateY(-5px);
      border-color: var(--accent);
      box-shadow: 0 15px 35px var(--accent-glow);
    }

    .ticker-wrap {
      width: 56px;
      height: 56px;
      border-radius: 16px;
      background: var(--bg-elevated);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      color: var(--accent-light);
      border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .spark-dl {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 6px;
    }

    .glyph-sub {
      font-size: 0.85rem;
      color: var(--text-muted);
      margin-bottom: 20px;
    }

    .charge-dl {
      width: 100%;
      background: linear-gradient(135deg, var(--accent) 0%, #1e4bb5 100%);
      color: #ffffff;
      font-weight: 600;
      font-size: 14px;
      padding: 12px 0;
      border-radius: 12px;
      text-align: center;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .charge-dl:hover {
      opacity: 0.95;
      box-shadow: 0 0 15px var(--accent-glow);
    }

    .sheath-tags {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 24px;
      width: 100%;
    }

    .tether-tag {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.9rem;
      color: var(--text-secondary);
    }

    .ticker-check {
      width: 18px;
      height: 18px;
      color: #10b981;
    }

    /* Section 2: Platform Matrix (<aside>) */
    .surge {
      padding: 90px 0;
      background: var(--bg-surface);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

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

    .sheath-head {
      margin-bottom: 50px;
      text-align: center;
    }

    .spark-sec {
      font-size: clamp(1.8rem, 3.5vw, 2.5rem);
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 12px;
    }

    .glyph-sec {
      font-size: 1rem;
      color: var(--text-secondary);
    }

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

    .slab-matrix {
      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;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

    .slab-matrix:hover {
      border-color: rgba(60, 116, 219, 0.4);
    }

    .tether-feature {
      margin-bottom: 24px;
    }

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

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

    .flock-details {
      margin-top: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .tether-detail {
      font-size: 0.88rem;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    /* Section 3: Version Specs (<article>) */
    .apex {
      padding: 90px 0;
      background: var(--bg-dark);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

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

    .flock-specs {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
    }

    .slate-spec {
      flex: 1;
      min-width: 320px;
      background: var(--bg-surface);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--radius-main);
      padding: 32px;
    }

    .spark-spec-spark {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 20px;
      padding-bottom: 12px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .tether-gild {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .tether-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      font-size: 0.92rem;
    }

    .glyph-pulse {
      color: var(--text-secondary);
    }

    .glyph-val {
      color: var(--text-primary);
      font-weight: 600;
      font-family: monospace;
      background: rgba(255, 255, 255, 0.04);
      padding: 4px 8px;
      border-radius: 6px;
    }

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

    .tether-log-tether {
      padding-left: 16px;
      position: relative;
      margin-bottom: 12px;
    }

    .tether-log-tether::before {
      content: '';
      position: absolute;
      left: 0;
      top: 8px;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent);
    }

    /* Section 4: Installation Guide (<div>) */
    .paddock-steps {
      padding: 90px 0;
      background: radial-gradient(circle at 50% 80%, rgba(60, 116, 219, 0.12) 0%, rgba(9, 12, 21, 0) 70%);
    }

    .paddock-steps-vault {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .flock-steps {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      counter-reset: step-counter;
      list-style: none;
    }

    .tether-step {
      flex: 1;
      min-width: 260px;
      background: var(--bg-surface);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--radius-main);
      padding: 36px 28px;
      position: relative;
      display: flex;
      flex-direction: column;
    }

    .tether-step::before {
      counter-increment: step-counter;
      content: "0" counter(step-counter);
      font-size: 2.2rem;
      font-weight: 900;
      color: var(--accent);
      opacity: 0.8;
      margin-bottom: 16px;
      line-height: 1;
    }

    .spark-step {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 10px;
    }

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

    /* 页脚底部设计 */
    .crown {
      background: #06080e;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding: 60px 0 40px 0;
      color: var(--text-muted);
      font-size: 0.88rem;
    }

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

    .bedrock-brand {
      flex: 1;
      min-width: 250px;
    }

    .spark-crown-brand {
      font-size: 1.4rem;
      font-weight: 800;
      color: var(--text-primary);
      margin-bottom: 12px;
      letter-spacing: -0.5px;
    }

    .glyph-crown-slogan {
      color: var(--text-secondary);
      font-size: 0.9rem;
      margin-bottom: 16px;
    }

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

    .flock-crown-col {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .spark-crown-col {
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 6px;
    }

    .hoof-crown {
      color: var(--text-muted);
      font-size: 0.88rem;
    }

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

    .sheath-glyph {
      max-width: 1200px;
      margin: 40px auto 0 auto;
      padding: 24px 24px 0 24px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      text-align: center;
      font-size: 0.8rem;
      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 {
        padding: 60px 0 40px 0;
      }
      .surge,
      .apex,
      .paddock-steps {
        padding: 50px 0;
      }
      .plaque-dl,
      .slab-matrix,
      .slate-spec,
      .tether-step {
        min-width: 100%;
      }
    }

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