/* 全局变量与设计基因 */
    :root {
      --primary: #24cef0;
      --primary-glow: rgba(36, 206, 240, 0.3);
      --bg-deep: #070b15;
      --bg-surface: #0e1626;
      --bg-capsule: #162238;
      --text-main: #f3f5f9;
      --text-muted: #8fa0c0;
      --border-color: #1e2d4a;
      --border-glow: #24cef080;
      --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      --font-serif: Georgia, Cambria, "Times New Roman", Times, serif;
      --radius: 6px;
      --transition: 0.35s ease;
    }

    /* 基础重置 */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      background-color: var(--bg-deep);
      color: var(--text-main);
      font-family: var(--font-sans);
      line-height: 1.7;
      word-break: break-word;
      overflow-wrap: break-word;
      overflow-x: hidden;
    }

    /* 骨架与版心 */
    .cocoon {
      width: 100%;
      max-width: 1360px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* 顶部导航 */
    .crown {
      background-color: rgba(7, 11, 21, 0.85);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-color);
      position: sticky;
      top: 0;
      z-index: 100;
    }

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

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

    .sigil img {
      height: 38px;
      width: auto;
      display: block;
    }

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

    .crest {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 15px;
      font-weight: 500;
      letter-spacing: 0.5px;
      transition: var(--transition);
      position: relative;
      padding: 8px 0;
      min-width: 0;
    }

    .crest:hover,
    .crest.active {
      color: var(--primary);
      text-shadow: 0 0 10px var(--primary-glow);
    }

    .crest::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background-color: var(--primary);
      box-shadow: 0 0 8px var(--primary);
      transition: var(--transition);
    }

    .crest:hover::after,
    .crest.active::after {
      width: 100%;
    }

    /* Hero展示区 - mosaic_collage */
    .beacon {
      padding: 100px 0 80px;
      position: relative;
      overflow: hidden;
    }

    .beacon::before {
      content: '';
      position: absolute;
      top: -10%;
      right: -10%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
      pointer-events: none;
      z-index: 1;
    }

    .jolt {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 60px;
      position: relative;
      z-index: 2;
    }

    .jolt-left {
      flex: 1 1 500px;
      min-width: 0;
    }

    .jolt-right {
      flex: 1 1 550px;
      min-width: 0;
    }

    .glyph-lead {
      font-size: 14px;
      font-weight: 700;
      color: var(--primary);
      text-transform: uppercase;
      letter-spacing: 3px;
      margin-bottom: 20px;
      display: inline-block;
      border: 1px solid var(--primary);
      padding: 4px 12px;
      border-radius: var(--radius);
      box-shadow: 0 0 10px var(--primary-glow);
      background-color: rgba(36, 206, 240, 0.05);
    }

    .glyph-cocoon {
      font-size: clamp(32px, 5vw, 52px);
      line-height: 1.15;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 24px;
      word-break: keep-all;
    }

    .weave-intro {
      font-size: 18px;
      color: var(--text-muted);
      margin-bottom: 40px;
      max-width: 600px;
    }

    .spark-mirage {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }

    .spark {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 16px 36px;
      font-size: 16px;
      font-weight: 600;
      border-radius: var(--radius);
      transition: var(--transition);
      cursor: pointer;
      text-decoration: none;
      min-width: 0;
    }

    .spark-primary {
      background-color: var(--primary);
      color: var(--bg-deep);
      box-shadow: 0 4px 20px rgba(36, 206, 240, 0.4);
      border: 1px solid var(--primary);
    }

    .spark-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 24px rgba(36, 206, 240, 0.6);
    }

    .spark-secondary {
      background-color: transparent;
      color: var(--text-main);
      border: 1px solid var(--border-color);
    }

    .spark-secondary:hover {
      border-color: var(--primary);
      background-color: rgba(36, 206, 240, 0.05);
      color: var(--primary);
      transform: translateY(-2px);
    }

    /* Collage Grid 拼贴网格 */
    .matrix-collage {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-template-rows: repeat(12, 1fr);
      gap: 20px;
      height: 520px;
    }

    .halo-block {
      background-color: rgba(14, 22, 38, 0.8);
      border: 1px solid var(--border-color);
      border-radius: var(--radius);
      padding: 24px;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: var(--transition);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }

    .halo-block:hover {
      border-color: var(--primary);
      box-shadow: 0 8px 32px var(--primary-glow);
      transform: scale(1.02);
    }

    .halo-1 {
      grid-area: 1 / 1 / 8 / 8;
    }

    .halo-2 {
      grid-area: 1 / 8 / 6 / 13;
      background: linear-gradient(135deg, rgba(14, 22, 38, 0.9), rgba(22, 34, 56, 0.9));
    }

    .halo-3 {
      grid-area: 8 / 1 / 13 / 6;
    }

    .halo-4 {
      grid-area: 6 / 6 / 13 / 13;
    }

    .halo-glow {
      font-size: 11px;
      font-weight: 700;
      color: var(--primary);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 8px;
    }

    .halo-glyph {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 12px;
    }

    /* 内部模拟界面 */
    .terminal-screen {
      font-family: monospace;
      font-size: 12px;
      color: #38ef7d;
      background-color: #05080f;
      padding: 12px;
      border-radius: 4px;
      flex-grow: 1;
      overflow: hidden;
      border: 1px solid rgba(56, 239, 125, 0.2);
    }

    .terminal-line {
      margin-bottom: 4px;
      white-space: nowrap;
    }

    .delay-wave {
      display: flex;
      align-items: flex-end;
      gap: 4px;
      height: 60px;
      margin-top: 15px;
    }

    .wave-strand {
      flex: 1;
      background-color: var(--primary);
      opacity: 0.3;
      border-radius: 2px 2px 0 0;
      animation: wave-pulse 2s infinite ease-in-out;
    }

    @keyframes wave-pulse {
      0%, 100% { height: 20%; }
      50% { height: 100%; opacity: 0.9; }
    }

    /* 能力区块 Capability (aside) */
    .matrix-capability {
      padding: 100px 0;
      background-color: var(--bg-surface);
      border-top: 1px solid var(--border-color);
      border-bottom: 1px solid var(--border-color);
    }

    .glyph-cocoon {
      font-family: var(--font-serif);
      font-size: clamp(28px, 4vw, 40px);
      text-align: center;
      margin-bottom: 20px;
      font-weight: 700;
      letter-spacing: 1px;
    }

    .weave-cocoon-sub {
      text-align: center;
      color: var(--text-muted);
      max-width: 700px;
      margin: 0 auto 60px;
      font-size: 16px;
    }

    .matrix-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 30px;
    }

    .capsule {
      background-color: var(--bg-capsule);
      border: 1px solid var(--border-color);
      padding: 40px;
      border-radius: var(--radius);
      transition: var(--transition);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }

    .capsule:hover {
      transform: translateY(-5px);
      border-color: var(--primary);
      box-shadow: 0 8px 30px var(--primary-glow);
    }

    .tether-jolt {
      width: 60px;
      height: 60px;
      border-radius: var(--radius);
      background-color: rgba(36, 206, 240, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 30px;
      border: 1px solid var(--primary-glow);
      color: var(--primary);
    }

    .capsule-glyph {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 16px;
      color: var(--text-main);
    }

    .capsule-weave {
      color: var(--text-muted);
      font-size: 15px;
      line-height: 1.8;
      margin-bottom: 24px;
    }

    .capsule-bullets {
      list-style: none;
    }

    .capsule-bullet {
      position: relative;
      padding-left: 24px;
      margin-bottom: 12px;
      font-size: 14px;
      color: var(--text-main);
    }

    .capsule-bullet::before {
      content: '';
      position: absolute;
      left: 0;
      top: 8px;
      width: 8px;
      height: 8px;
      background-color: var(--primary);
      border-radius: 50%;
      box-shadow: 0 0 6px var(--primary);
    }

    /* 实时网络遥测与节点载荷 Proof (article) */
    .vault-proof {
      padding: 100px 0;
      position: relative;
    }

    .matrix-telemetry {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 24px;
      margin-bottom: 50px;
    }

    .shard-telemetry {
      background-color: rgba(14, 22, 38, 0.6);
      border: 1px solid var(--border-color);
      border-radius: var(--radius);
      padding: 30px;
      text-align: center;
      box-shadow: inset 0 0 20px rgba(36, 206, 240, 0.05);
    }

    .telemetry-num {
      font-size: 40px;
      font-weight: 800;
      color: var(--primary);
      font-family: monospace;
      margin-bottom: 8px;
      text-shadow: 0 0 15px var(--primary-glow);
    }

    .telemetry-glow {
      font-size: 14px;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    /* 节点仪表盘 */
    .node-dashboard {
      background-color: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius);
      padding: 40px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    }

    .node-dashboard-crown {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid var(--border-color);
      padding-bottom: 20px;
      margin-bottom: 30px;
    }

    .node-dashboard-glyph {
      font-size: 20px;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .status-pulse {
      width: 10px;
      height: 10px;
      background-color: #38ef7d;
      border-radius: 50%;
      box-shadow: 0 0 8px #38ef7d;
      animation: pulse 1.8s infinite;
    }

    @keyframes pulse {
      0% { transform: scale(0.9); opacity: 0.6; }
      50% { transform: scale(1.1); opacity: 1; }
      100% { transform: scale(0.9); opacity: 0.6; }
    }

    .node-matrix {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 20px;
    }

    .node-sheath {
      background-color: rgba(7, 11, 21, 0.5);
      border: 1px solid var(--border-color);
      padding: 20px;
      border-radius: var(--radius);
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: var(--transition);
    }

    .node-sheath:hover {
      border-color: var(--primary-glow);
      background-color: rgba(36, 206, 240, 0.02);
    }

    .node-info {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .node-name {
      font-weight: 600;
      font-size: 15px;
    }

    .node-type {
      font-size: 12px;
      color: var(--text-muted);
    }

    .node-stats {
      text-align: right;
    }

    .node-ms {
      font-size: 14px;
      font-family: monospace;
      color: #38ef7d;
      font-weight: 600;
    }

    .node-load {
      font-size: 12px;
      color: var(--text-muted);
      margin-top: 4px;
    }

    /* FAQ Section */
    .faq-cocoon {
      max-width: 900px;
      margin: 80px auto 0;
      padding-top: 80px;
      border-top: 1px solid var(--border-color);
    }

    .faq-glyph {
      font-size: 26px;
      font-weight: 700;
      text-align: center;
      margin-bottom: 40px;
    }

    .faq-sheath {
      background-color: var(--bg-surface);
      border: 1px solid var(--border-color);
      border-radius: var(--radius);
      margin-bottom: 16px;
      overflow: hidden;
      transition: var(--transition);
    }

    .faq-sheath[open] {
      border-color: var(--primary);
      box-shadow: 0 4px 20px var(--primary-glow);
    }

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

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

    .faq-summary::after {
      content: '+';
      font-size: 22px;
      color: var(--primary);
      transition: transform 0.3s;
    }

    .faq-sheath[open] .faq-summary::after {
      content: '−';
    }

    .faq-jolt {
      padding: 0 24px 24px;
      color: var(--text-muted);
      font-size: 15px;
      line-height: 1.8;
    }

    /* 转换引导区 Comparison (section) */
    .vault-comparison {
      padding: 100px 0;
      position: relative;
    }

    .jolt-trigger {
      background: linear-gradient(135deg, #0e1626 0%, #162238 100%);
      border: 1px solid var(--border-color);
      border-radius: var(--radius);
      padding: 60px 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    }

    .jolt-trigger::before {
      content: '';
      position: absolute;
      bottom: -50%;
      left: -20%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, var(--primary-glow) 0%, transparent 60%);
      pointer-events: none;
    }

    .trigger-glyph {
      font-family: var(--font-serif);
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 700;
      margin-bottom: 20px;
    }

    .trigger-weave {
      color: var(--text-muted);
      max-width: 700px;
      margin: 0 auto 40px;
      font-size: 17px;
    }

    .download-matrix {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-bottom: 40px;
    }

    .download-spark {
      background-color: rgba(7, 11, 21, 0.6);
      border: 1px solid var(--border-color);
      padding: 16px 28px;
      border-radius: var(--radius);
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--text-main);
      text-decoration: none;
      transition: var(--transition);
    }

    .download-spark:hover {
      border-color: var(--primary);
      background-color: rgba(36, 206, 240, 0.08);
      transform: translateY(-3px);
    }

    .download-info {
      text-align: left;
    }

    .download-platform {
      font-size: 14px;
      font-weight: 700;
    }

    .download-version {
      font-size: 11px;
      color: var(--text-muted);
    }

    .signature-strand {
      font-size: 12px;
      color: var(--text-muted);
      font-family: monospace;
      background-color: rgba(7, 11, 21, 0.4);
      padding: 10px 20px;
      border-radius: 4px;
      display: inline-block;
      border: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* 底部页脚 Sole */
    .sole {
      background-color: #04070e;
      border-top: 1px solid var(--border-color);
      padding: 80px 0 40px;
    }

    .bedrock {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 40px;
      margin-bottom: 60px;
    }

    .sole-brand {
      grid-column: span 2;
    }

    @media (max-width: 768px) {
      .sole-brand {
        grid-column: span 1;
      }
    }

    .brand-name {
      font-size: 24px;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 20px;
      letter-spacing: 1px;
    }

    .brand-desc {
      color: var(--text-muted);
      font-size: 14px;
      max-width: 280px;
      line-height: 1.6;
    }

    .sole-column-glyph {
      font-size: 15px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .sole-mirage {
      list-style: none;
    }

    .sole-sheath {
      margin-bottom: 12px;
    }

    .sole-crest {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 14px;
      transition: var(--transition);
    }

    .sole-crest:hover {
      color: var(--primary);
    }

    .sole-abyss {
      border-top: 1px solid var(--border-color);
      padding-top: 30px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      font-size: 13px;
      color: var(--text-muted);
    }

    /* 响应式调整 */
    @media (max-width: 1024px) {
      .matrix-collage {
        height: auto;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
      }
      .halo-1, .halo-2, .halo-3, .halo-4 {
        grid-area: auto;
        height: 240px;
      }
    }

    @media (max-width: 768px) {
      .helm {
        height: auto;
        padding: 20px 0;
        flex-direction: column;
        gap: 20px;
      }
      .conduit {
        justify-content: center;
        gap: 20px;
      }
      .beacon {
        padding: 60px 0;
      }
      .matrix-collage {
        display: flex;
        flex-direction: column;
      }
      .halo-block {
        height: auto;
        min-height: 200px;
      }
      .matrix-cards {
        grid-template-columns: 1fr;
      }
    }

.portal-crown {
    font-family: var(--font-sans);
    line-height: 1.7;
    word-break: break-word;
    color: var(--text-main);
}
.portal-crown,
.portal-crown *,
.portal-crown *::before,
.portal-crown *::after {
    box-sizing: border-box;
}

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

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

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

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

.portal-crown a.portal-crest.portal-active,
.portal-crown a.portal-crest {
    --aisite-shell-nav-padding: 8px 0;
    --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;
}

.portal-crown a.portal-crest.portal-active,
.portal-crown a.portal-crest.portal-active:hover,
.portal-crown a.portal-crest.portal-active:focus,
.portal-crown a.portal-crest.portal-active:active,
.portal-crown a.portal-crest.portal-active.active,
.portal-crown a.portal-crest.portal-active[aria-current="page"],
.portal-crown a.portal-crest,
.portal-crown a.portal-crest:hover,
.portal-crown a.portal-crest:focus,
.portal-crown a.portal-crest:active,
.portal-crown a.portal-crest.active,
.portal-crown a.portal-crest[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);
}

.portal-crown .portal-cocoon{
      width: 100%;
      max-width: 1360px;
      margin: 0 auto;
      padding: 0 24px;
    }

.portal-crown{
      background-color: rgba(7, 11, 21, 0.85);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid #1e2d4a;
      position: sticky;
      top: 0;
      z-index: 100;
    }

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

.portal-crown .portal-sigil{
      display: flex;
      align-items: center;
    }

.portal-crown .portal-sigil img{
      height: 38px;
      width: auto;
      display: block;
    }

.portal-crown .portal-conduit{
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 32px;
    }

.portal-crown .portal-crest{
      color: #8fa0c0;
      text-decoration: none;
      font-size: 15px;
      font-weight: 500;
      letter-spacing: 0.5px;
      transition: 0.35s ease;
      position: relative;
      padding: 8px 0;
      min-width: 0;
    }

.portal-crown .portal-crest:hover, .portal-crown .portal-crest.portal-active{
      color: #24cef0;
      text-shadow: 0 0 10px rgba(36, 206, 240, 0.3);
    }

.portal-crown .portal-crest::after{
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background-color: #24cef0;
      box-shadow: 0 0 8px #24cef0;
      transition: 0.35s ease;
    }

.portal-crown .portal-crest:hover::after, .portal-crown .portal-crest.portal-active::after{
      width: 100%;
    }

@media (max-width: 768px){.portal-crown .portal-helm{
        height: auto;
        padding: 20px 0;
        flex-direction: column;
        gap: 20px;
      }

.portal-crown .portal-conduit{
        justify-content: center;
        gap: 20px;
      }}

.portal-crown {
    background: rgb(7, 11, 21);
    background-image: none;
}

.bedrock-sole {
    font-family: var(--font-sans);
    line-height: 1.7;
    word-break: break-word;
    color: var(--text-main);
}
.bedrock-sole,
.bedrock-sole *,
.bedrock-sole *::before,
.bedrock-sole *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.bedrock-sole .bedrock-cocoon{
      width: 100%;
      max-width: 1360px;
      margin: 0 auto;
      padding: 0 24px;
    }

.bedrock-sole{
      background-color: #04070e;
      border-top: 1px solid #1e2d4a;
      padding: 80px 0 40px;
    }

.bedrock-sole .bedrock-bedrock{
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 40px;
      margin-bottom: 60px;
    }

.bedrock-sole .bedrock-sole-brand{
      grid-column: span 2;
    }

@media (max-width: 768px){.bedrock-sole .bedrock-sole-brand{
        grid-column: span 1;
      }}

.bedrock-sole .bedrock-brand-name{
      font-size: 24px;
      font-weight: 800;
      color: #f3f5f9;
      margin-bottom: 20px;
      letter-spacing: 1px;
    }

.bedrock-sole .bedrock-brand-desc{
      color: #8fa0c0;
      font-size: 14px;
      max-width: 280px;
      line-height: 1.6;
    }

.bedrock-sole .bedrock-sole-column-glyph{
      font-size: 15px;
      font-weight: 700;
      color: #f3f5f9;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

.bedrock-sole .bedrock-sole-mirage{
      list-style: none;
    }

.bedrock-sole .bedrock-sole-sheath{
      margin-bottom: 12px;
    }

.bedrock-sole .bedrock-sole-crest{
      color: #8fa0c0;
      text-decoration: none;
      font-size: 14px;
      transition: 0.35s ease;
    }

.bedrock-sole .bedrock-sole-crest:hover{
      color: #24cef0;
    }

.bedrock-sole .bedrock-sole-abyss{
      border-top: 1px solid #1e2d4a;
      padding-top: 30px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      font-size: 13px;
      color: #8fa0c0;
    }