:root {
      --hue-primary: #27e5c2;
      --hue-primary-glow: rgba(39, 229, 194, 0.25);
      --hue-primary-dark: #1ab094;
      --bg-darkest: #070a10;
      --bg-base: #0c111c;
      --bg-surface: #141c2e;
      --bg-elevated: #1d273e;
      --stroke-line: rgba(255, 255, 255, 0.08);
      --stroke-highlight: rgba(39, 229, 194, 0.3);
      --prose-main: #f0f4fc;
      --prose-subtle: #94a3b8;
      --prose-muted: #64748b;
      --radius-s: 6px;
      --radius-m: 10px;
      --radius-l: 16px;
      --transition-base: all 0.35s ease;
    }

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

    html {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
      background-color: var(--bg-darkest);
      color: var(--prose-main);
      line-height: 1.6;
      scroll-behavior: smooth;
    }

    body {
      overflow-x: hidden;
      background: radial-gradient(circle at 50% 0%, #152238 0%, var(--bg-darkest) 70%);
    }

    /* 文本换行规范 */
    h1, h2, h3, h4, h5, h6, p, span, a, div {
      word-break: break-word;
      overflow-wrap: break-word;
    }

    /* 全局通用布局 */
    .casing {
      width: 100%;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    .chassis {
      flex: 1 0 auto;
      width: 100%;
    }

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

    /* 顶部导航 */
    .router {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(12, 17, 28, 0.85);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--stroke-line);
      padding: 16px 32px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

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

    .emblem {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
    }

    .emblem img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .emblem-prose {
      font-size: 20px;
      font-weight: 700;
      letter-spacing: -0.5px;
      color: #ffffff;
      white-space: nowrap;
    }

    .router nav {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
    }

    .omnibar-hyper {
      padding: 8px 16px;
      font-size: 15px;
      font-weight: 500;
      color: var(--prose-subtle);
      text-decoration: none;
      border-radius: var(--radius-s);
      transition: var(--transition-base);
    }

    .omnibar-hyper:hover {
      color: var(--hue-primary);
      background-color: rgba(39, 229, 194, 0.08);
    }

    .omnibar-hyper.active {
      color: var(--hue-primary);
      background-color: rgba(39, 229, 194, 0.12);
      font-weight: 600;
    }

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

    /* 按钮样式 */
    .actuate {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 10px 22px;
      font-size: 15px;
      font-weight: 600;
      border-radius: var(--radius-m);
      text-decoration: none;
      cursor: pointer;
      transition: var(--transition-base);
      border: 1px solid transparent;
      white-space: nowrap;
    }

    .actuate-primary {
      background: linear-gradient(135deg, var(--hue-primary) 0%, var(--hue-primary-dark) 100%);
      color: #070a10;
      box-shadow: 0 4px 16px var(--hue-primary-glow);
    }

    .actuate-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(39, 229, 194, 0.4);
      filter: brightness(1.08);
    }

    .actuate-secondary {
      background-color: var(--bg-elevated);
      color: var(--prose-main);
      border-color: var(--stroke-line);
    }

    .actuate-secondary:hover {
      background-color: rgba(255, 255, 255, 0.08);
      border-color: var(--stroke-highlight);
      color: #ffffff;
      transform: translateY(-2px);
    }

    /* 徽章 */
    .badgelet {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 13px;
      font-weight: 600;
      background-color: rgba(39, 229, 194, 0.1);
      color: var(--hue-primary);
      border: 1px solid rgba(39, 229, 194, 0.25);
      margin-bottom: 16px;
    }

    /* HERO 区域: reverse_split (图左文右, 视觉主导) */
    .viewport {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      width: 100%;
      min-height: 82vh;
      padding: 40px 0 60px 0;
      position: relative;
      overflow: hidden;
    }

    .pixmap-chassis {
      flex: 1 1 58%;
      min-width: 0;
      position: relative;
    }

    .pixmap-dominant {
      width: 100%;
      height: auto;
      display: block;
      border-top-right-radius: var(--radius-l);
      border-bottom-right-radius: var(--radius-l);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(39, 229, 194, 0.15);
      border: 1px solid var(--stroke-line);
      border-left: none;
      object-fit: cover;
    }

    .prose-chassis {
      flex: 1 1 42%;
      min-width: 0;
      padding: 40px 5% 40px 48px;
    }

    .headline-primary {
      font-size: clamp(28px, 3.8vw, 46px);
      line-height: 1.2;
      font-weight: 800;
      color: #ffffff;
      margin-bottom: 20px;
      letter-spacing: -0.5px;
    }

    .prose-sub {
      font-size: 17px;
      color: var(--prose-subtle);
      margin-bottom: 32px;
      line-height: 1.7;
    }

    .actuate-cluster {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-bottom: 40px;
    }

    .nodule-strand {
      display: flex;
      flex-direction: column;
      gap: 12px;
      border-top: 1px solid var(--stroke-line);
      padding-top: 24px;
    }

    .nodule {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 15px;
      color: var(--prose-main);
    }

    /* 区块通用标题结构 */
    .headline-strand {
      margin-bottom: 48px;
    }

    .headline-strand.text-center {
      text-align: center;
    }

    .headline-secondary {
      font-size: clamp(24px, 2.8vw, 36px);
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 16px;
      letter-spacing: -0.3px;
    }

    .prose-lead {
      font-size: 17px;
      color: var(--prose-subtle);
      max-width: 760px;
      margin: 0 auto;
    }

    /* 顶层块 2: aside (性能控制面板) */
    .stage-capability {
      padding: 80px 0;
      background-color: rgba(12, 17, 28, 0.6);
      border-top: 1px solid var(--stroke-line);
      border-bottom: 1px solid var(--stroke-line);
    }

    .wafer-split {
      display: flex;
      flex-wrap: wrap;
      gap: 48px;
      align-items: center;
    }

    .wafer-media {
      flex: 1 1 500px;
      min-width: 0;
      border-radius: var(--radius-l);
      overflow: hidden;
      border: 1px solid var(--stroke-line);
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    }

    .pixmap-fit {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    .wafer-details {
      flex: 1 1 500px;
      min-width: 0;
    }

    .snippet-metric {
      background: linear-gradient(135deg, rgba(39, 229, 194, 0.1) 0%, rgba(20, 28, 46, 0.4) 100%);
      border: 1px solid var(--stroke-highlight);
      padding: 24px;
      border-radius: var(--radius-m);
      margin-bottom: 32px;
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .metric-headline {
      font-size: 44px;
      font-weight: 800;
      color: var(--hue-primary);
      line-height: 1;
    }

    .metric-prose {
      font-size: 15px;
      color: var(--prose-main);
      font-weight: 500;
    }

    .framelet-strand {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .framelet {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }

    .glyph-chassis {
      width: 44px;
      height: 44px;
      border-radius: var(--radius-m);
      background-color: var(--bg-elevated);
      border: 1px solid var(--stroke-line);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .headline-tertiary {
      font-size: 18px;
      font-weight: 600;
      color: #ffffff;
      margin-bottom: 6px;
    }

    .prose-body {
      font-size: 15px;
      color: var(--prose-subtle);
      line-height: 1.6;
    }

    /* 顶层块 3: div (三大核心能力矩阵) */
    .stage-pillars {
      padding: 100px 0;
    }

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

    .wafer-pillar {
      flex: 1 1 340px;
      min-width: 0;
      background-color: var(--bg-surface);
      border: 1px solid var(--stroke-line);
      border-radius: var(--radius-l);
      padding: 36px 28px;
      transition: var(--transition-base);
      display: flex;
      flex-direction: column;
    }

    .wafer-pillar:hover {
      transform: translateY(-6px);
      border-color: var(--stroke-highlight);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3), 0 0 20px var(--hue-primary-glow);
    }

    .glyph-badgelet {
      width: 54px;
      height: 54px;
      border-radius: var(--radius-m);
      background: rgba(39, 229, 194, 0.08);
      border: 1px solid rgba(39, 229, 194, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
    }

    .hyper-tracer {
      margin-top: auto;
      padding-top: 24px;
      color: var(--hue-primary);
      text-decoration: none;
      font-weight: 600;
      font-size: 15px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: var(--transition-base);
    }

    .hyper-tracer:hover {
      gap: 10px;
      color: #ffffff;
    }

    /* 顶层块 4: article (全场景与AI) */
    .stage-ecosystem {
      padding: 90px 0;
      background: radial-gradient(ellipse at bottom, rgba(21, 34, 56, 0.5) 0%, var(--bg-darkest) 70%);
      border-top: 1px solid var(--stroke-line);
    }

    .wafer-duo {
      display: flex;
      flex-wrap: wrap;
      gap: 32px;
    }

    .wafer-unit {
      flex: 1 1 480px;
      min-width: 0;
      background-color: rgba(20, 28, 46, 0.6);
      border: 1px solid var(--stroke-line);
      border-radius: var(--radius-l);
      padding: 40px;
    }

    .strand-simple {
      margin-top: 20px;
      padding-left: 20px;
      color: var(--prose-subtle);
      font-size: 14px;
    }

    .strand-simple li {
      margin-bottom: 8px;
    }

    /* 顶层块 5: div (全站路径承接) */
    .stage-routing {
      padding: 90px 0;
    }

    .wafer-quad {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }

    .snippet-route {
      flex: 1 1 260px;
      min-width: 0;
      background-color: var(--bg-surface);
      border: 1px solid var(--stroke-line);
      border-radius: var(--radius-m);
      padding: 24px;
      text-decoration: none;
      transition: var(--transition-base);
      display: block;
    }

    .snippet-route:hover {
      border-color: var(--hue-primary);
      transform: translateY(-4px);
      background-color: var(--bg-elevated);
    }

    .route-headline {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 18px;
      font-weight: 600;
      color: #ffffff;
      margin-bottom: 10px;
    }

    .snippet-route:hover .route-headline {
      color: var(--hue-primary);
    }

    .prose-small {
      font-size: 14px;
      color: var(--prose-subtle);
      line-height: 1.5;
    }

    /* 顶层块 6: div (FAQ) */
    .stage-faq {
      padding: 80px 0 100px 0;
      border-top: 1px solid var(--stroke-line);
    }

    .faq-strand {
      max-width: 860px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .faq-nodule {
      background-color: var(--bg-surface);
      border: 1px solid var(--stroke-line);
      border-radius: var(--radius-m);
      overflow: hidden;
      transition: var(--transition-base);
    }

    .faq-nodule[open] {
      border-color: var(--stroke-highlight);
      background-color: var(--bg-elevated);
    }

    .faq-summary {
      padding: 20px 24px;
      font-size: 17px;
      font-weight: 600;
      color: #ffffff;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      user-select: none;
      list-style: none;
    }

    .faq-summary::-webkit-details-marker {
      display: none;
    }

    .faq-summary svg {
      transition: transform 0.3s ease;
      color: var(--hue-primary);
    }

    .faq-nodule[open] .faq-summary svg {
      transform: rotate(180deg);
    }

    .faq-prose {
      padding: 0 24px 24px 24px;
      color: var(--prose-subtle);
      font-size: 15px;
      line-height: 1.7;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      margin-top: 4px;
      padding-top: 16px;
    }

    /* 页脚 */
    .dock {
      background-color: #06090e;
      border-top: 1px solid var(--stroke-line);
      padding: 60px 0 30px 0;
    }

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

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

    .dock-headline {
      font-size: 22px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 12px;
      display: block;
    }

    .dock-router, .dock-support {
      flex: 1 1 200px;
      min-width: 0;
    }

    .dock-labellet {
      font-size: 15px;
      font-weight: 600;
      color: #ffffff;
      margin-bottom: 18px;
      display: block;
    }

    .dock-hypers {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .hyper-dock {
      color: var(--prose-subtle);
      text-decoration: none;
      font-size: 14px;
      transition: var(--transition-base);
    }

    .hyper-dock:hover {
      color: var(--hue-primary);
    }

    .dock-bottom {
      border-top: 1px solid var(--stroke-line);
      padding-top: 24px;
      text-align: center;
    }

    .prose-legal {
      font-size: 13px;
      color: var(--prose-muted);
    }

    /* 响应式断点适配 */
    @media (max-width: 1024px) {
      .viewport {
        flex-direction: column;
        padding-top: 20px;
      }
      .pixmap-chassis {
        width: 100%;
        flex: 1 1 100%;
      }
      .pixmap-dominant {
        border-radius: var(--radius-l);
        border-left: 1px solid var(--stroke-line);
      }
      .prose-chassis {
        width: 100%;
        flex: 1 1 100%;
        padding: 40px 24px 20px 24px;
      }
    }

    @media (max-width: 768px) {
      .router {
        padding: 12px 16px;
      }
      .router nav {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 8px;
      }
      .wafer-split, .wafer-matrix, .wafer-duo, .wafer-quad {
        flex-direction: column;
      }
      .wafer-media, .wafer-details, .wafer-pillar, .wafer-unit, .snippet-route {
        width: 100%;
        flex: 1 1 100%;
      }
      .headline-primary {
        font-size: 28px;
      }
    }

.omnibar-router,
.omnibar-router *,
.omnibar-router *::before,
.omnibar-router *::after {
    box-sizing: border-box;
}

.omnibar-router nav,
.omnibar-router div,
.omnibar-router section,
.omnibar-router article,
.omnibar-router aside,
.omnibar-router p,
.omnibar-router h1,
.omnibar-router h2,
.omnibar-router h3,
.omnibar-router h4,
.omnibar-router h5,
.omnibar-router h6,
.omnibar-router a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

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

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

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

.omnibar-router a.omnibar-omnibar-hyper {
    --aisite-shell-nav-padding: 8px 16px;
    --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;
}

.omnibar-router a.omnibar-omnibar-hyper,
.omnibar-router a.omnibar-omnibar-hyper:hover,
.omnibar-router a.omnibar-omnibar-hyper:focus,
.omnibar-router a.omnibar-omnibar-hyper:active,
.omnibar-router a.omnibar-omnibar-hyper.active,
.omnibar-router a.omnibar-omnibar-hyper[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);
}

.omnibar-router{
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(12, 17, 28, 0.85);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      padding: 16px 32px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

.omnibar-router .omnibar-emblem-vessel{
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }

.omnibar-router .omnibar-emblem{
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
    }

.omnibar-router .omnibar-emblem img{
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

.omnibar-router .omnibar-emblem-prose{
      font-size: 20px;
      font-weight: 700;
      letter-spacing: -0.5px;
      color: #ffffff;
      white-space: nowrap;
    }

.omnibar-router nav{
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
    }

.omnibar-router .omnibar-omnibar-hyper{
      padding: 8px 16px;
      font-size: 15px;
      font-weight: 500;
      color: #94a3b8;
      text-decoration: none;
      border-radius: 6px;
      transition: all 0.35s ease;
    }

.omnibar-router .omnibar-omnibar-hyper:hover{
      color: #27e5c2;
      background-color: rgba(39, 229, 194, 0.08);
    }

.omnibar-router .omnibar-omnibar-hyper.active{
      color: #27e5c2;
      background-color: rgba(39, 229, 194, 0.12);
      font-weight: 600;
    }

.omnibar-router .omnibar-actuate-strand{
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }

.omnibar-router .omnibar-actuate{
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 10px 22px;
      font-size: 15px;
      font-weight: 600;
      border-radius: 10px;
      text-decoration: none;
      cursor: pointer;
      transition: all 0.35s ease;
      border: 1px solid transparent;
      white-space: nowrap;
    }

.omnibar-router .omnibar-actuate-primary{
      background: linear-gradient(135deg, #27e5c2 0%, #1ab094 100%);
      color: #070a10;
      box-shadow: 0 4px 16px rgba(39, 229, 194, 0.25);
    }

.omnibar-router .omnibar-actuate-primary:hover{
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(39, 229, 194, 0.4);
      filter: brightness(1.08);
    }

@media (max-width: 768px){.omnibar-router{
        padding: 12px 16px;
      }

.omnibar-router nav{
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 8px;
      }}

.omnibar-router {
    background: rgb(12, 17, 28);
    background-image: none;
}

.dock-dock,
.dock-dock *,
.dock-dock *::before,
.dock-dock *::after {
    box-sizing: border-box;
}

.dock-dock nav,
.dock-dock div,
.dock-dock section,
.dock-dock article,
.dock-dock aside,
.dock-dock p,
.dock-dock h1,
.dock-dock h2,
.dock-dock h3,
.dock-dock h4,
.dock-dock h5,
.dock-dock h6,
.dock-dock a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

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

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

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

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

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

.dock-dock .dock-prose-small{
      font-size: 14px;
      color: #94a3b8;
      line-height: 1.5;
    }

.dock-dock{
      background-color: #06090e;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding: 60px 0 30px 0;
    }

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

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

.dock-dock .dock-dock-headline{
      font-size: 22px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 12px;
      display: block;
    }

.dock-dock .dock-dock-router, .dock-dock .dock-dock-support{
      flex: 1 1 200px;
      min-width: 0;
    }

.dock-dock .dock-dock-labellet{
      font-size: 15px;
      font-weight: 600;
      color: #ffffff;
      margin-bottom: 18px;
      display: block;
    }

.dock-dock .dock-dock-hypers{
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

.dock-dock .dock-hyper-dock{
      color: #94a3b8;
      text-decoration: none;
      font-size: 14px;
      transition: all 0.35s ease;
    }

.dock-dock .dock-hyper-dock:hover{
      color: #27e5c2;
    }

.dock-dock .dock-dock-bottom{
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding-top: 24px;
      text-align: center;
    }

.dock-dock .dock-prose-legal{
      font-size: 13px;
      color: #64748b;
    }