:root {
      --primary: #0060df;
      --secondary: #ff9400;
      --accent-gradient: linear-gradient(135deg, #ff9400 0%, #ff3d00 100%);
      --text-dark: #1d1d1f;
      --text-gray: #515154;
      --bg-light: #fcfcfd;
      --bg-soft: #f5f7fa;
      --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.02);
      --shadow-md: 0 12px 36px rgba(0, 0, 0, 0.04);
      --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.06);
      --radius: 6px;
      --transition: 0.35s ease;
    }

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

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans CJK SC", sans-serif;
      background-color: var(--bg-light);
      color: var(--text-dark);
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
    }

    /* 必须复用首页导航栏样式 */
    .brow {
      background: rgba(252, 252, 253, 0.8);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid #e2e8f0;
      position: sticky;
      top: 0;
      z-index: 100;
    }
    .brow-grove {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      height: 72px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
    }
    .crest {
      display: flex;
      align-items: center;
      min-width: 0;
    }
    .crest img {
      height: 40px;
      width: auto;
    }
    .orbit {
      display: flex;
      flex-wrap: wrap;
      gap: 32px;
      min-width: 0;
    }
    .path {
      text-decoration: none;
      color: var(--text-gray);
      font-size: 15px;
      font-weight: 500;
      transition: var(--transition);
      padding: 8px 0;
      position: relative;
    }
    .path:hover {
      color: var(--primary);
    }
    .path.active {
      color: var(--primary);
      font-weight: 600;
    }
    .path.active::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--primary);
    }

    /* 骨架主体grove容器 */
    .grove {
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 24px 80px;
    }

    /* Section 1: Hero (Asymmetric layout) */
    .blaze {
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      gap: 48px;
      padding: 60px 0 80px;
      align-items: center;
    }

    .fur {
      word-break: break-word;
      overflow-wrap: break-word;
    }

    .crown-primary {
      font-size: 42px;
      line-height: 1.25;
      font-weight: 800;
      color: var(--text-dark);
      margin-bottom: 20px;
      white-space: normal;
    }

    .whisper-lead {
      font-size: 18px;
      color: var(--text-gray);
      margin-bottom: 36px;
      line-height: 1.6;
      word-break: keep-all;
    }

    .ignite {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--primary);
      color: #ffffff;
      font-weight: 600;
      font-size: 16px;
      padding: 16px 36px;
      border-radius: var(--radius);
      border: 1px solid transparent;
      box-shadow: 0 4px 14px rgba(0, 96, 223, 0.2);
      text-decoration: none;
      transition: var(--transition);
      cursor: pointer;
    }
    .ignite:hover {
      background: #004ebd;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0, 96, 223, 0.3);
    }

    .clutch {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-top: 24px;
    }

    .spark {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: transparent;
      color: var(--primary);
      font-weight: 500;
      font-size: 14px;
      padding: 10px 20px;
      border-radius: var(--radius);
      border: 1px solid #e2e8f0;
      text-decoration: none;
      transition: var(--transition);
    }
    .spark:hover {
      background: var(--bg-soft);
      border-color: var(--primary);
    }

    .whisper-sub {
      font-size: 13px;
      color: #8a8a8f;
      margin-top: 14px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    /* 平台矩阵 */
    .ember {
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: var(--radius);
      padding: 28px;
      box-shadow: var(--shadow-md);
      word-break: break-word;
      overflow-wrap: break-word;
    }

    .crown-small {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 20px;
      color: var(--text-dark);
      border-bottom: 2px solid var(--bg-soft);
      padding-bottom: 12px;
    }

    .cub {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 0;
      border-bottom: 1px dashed #f0f2f5;
    }
    .cub:last-child {
      border-bottom: none;
    }

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

    .glint {
      width: 24px;
      height: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-gray);
      flex-shrink: 0;
    }

    .whisper-name {
      font-size: 14px;
      font-weight: 600;
      color: var(--text-dark);
    }

    .path-download {
      font-size: 13px;
      color: var(--primary);
      text-decoration: none;
      font-weight: 600;
      transition: var(--transition);
    }
    .path-download:hover {
      text-decoration: underline;
    }

    /* Section 2: Sync Showcase (div) */
    .pounce {
      padding: 80px 0;
      border-top: 1px solid #f0f2f5;
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 60px;
      align-items: center;
    }

    .crown-secondary {
      font-size: 32px;
      line-height: 1.3;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 16px;
    }

    .whisper-medium {
      font-size: 16px;
      color: var(--text-gray);
      margin-bottom: 32px;
    }

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

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

    .shard .glint {
      width: 40px;
      height: 40px;
      background: var(--bg-soft);
      border-radius: 50%;
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .whisper-bold {
      font-size: 16px;
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 4px;
    }

    .whisper-desc {
      font-size: 14px;
      color: var(--text-gray);
      line-height: 1.5;
    }

    .vista {
      width: 100%;
      height: auto;
      border-radius: var(--radius);
      box-shadow: var(--shadow-lg);
      object-fit: cover;
    }

    /* Section 3: Guide (aside) */
    .flare {
      padding: 80px 0 40px;
      border-top: 1px solid #f0f2f5;
    }

    .crown-tertiary {
      font-size: 28px;
      font-weight: 700;
      text-align: center;
      margin-bottom: 12px;
      color: var(--text-dark);
    }

    .whisper-center {
      text-align: center;
      font-size: 15px;
      color: var(--text-gray);
      max-width: 600px;
      margin: 0 auto 48px;
    }

    .canopy {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 32px;
    }

    .burrow {
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: var(--radius);
      padding: 32px;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }
    .burrow:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: #cbd5e1;
    }

    .burrow .glint {
      width: 48px;
      height: 48px;
      background: rgba(0, 96, 223, 0.05);
      color: var(--primary);
      border-radius: var(--radius);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }

    /* 页脚区域 */
    .tail {
      background: #f5f7fa;
      border-top: 1px solid #e2e8f0;
      padding: 48px 0;
    }

    .hearth {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
    }

    .sole-brand {
      font-size: 20px;
      font-weight: 700;
      color: var(--text-dark);
      letter-spacing: -0.5px;
    }

    .sole-path-clutch {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
    }

    .sole-path-clutch a {
      color: var(--text-gray);
      text-decoration: none;
      font-size: 14px;
      transition: var(--transition);
    }

    .sole-path-clutch a:hover {
      color: var(--primary);
    }

    .sole-copyright {
      font-size: 13px;
      color: #8a8a8f;
      width: 100%;
      text-align: center;
      margin-top: 32px;
      border-top: 1px solid #e2e8f0;
      padding-top: 24px;
    }

    /* 响应式断点 */
    @media (max-width: 1024px) {
      .blaze {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      .pounce {
        grid-template-columns: 1fr;
        gap: 40px;
      }
    }

    @media (max-width: 768px) {
      .brow-grove {
        height: auto;
        padding: 16px 24px;
        flex-direction: column;
        gap: 16px;
      }
      .orbit {
        gap: 16px;
        justify-content: center;
      }
      .crown-primary {
        font-size: 32px;
      }
      .hearth {
        flex-direction: column;
        text-align: center;
      }
    }

.trail-brow {
    font-family: var(--font);
    line-height: 1.7;
    word-break: break-word;
    color: var(--text-dark);
}
.trail-brow,
.trail-brow *,
.trail-brow *::before,
.trail-brow *::after {
    box-sizing: border-box;
}

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

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

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

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

.trail-brow a.trail-path.trail-active,
.trail-brow a.trail-path {
    --aisite-shell-nav-padding: 6px 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;
}

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

.trail-brow{
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(252, 252, 253, 0.9);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(226, 232, 240, 0.8);
            padding: 16px 0;
            transition: background 0.35s ease;
        }

.trail-brow .trail-brow-grove{
            max-width: 1160px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

.trail-brow .trail-crest{
            display: flex;
            align-items: center;
            min-width: 0;
        }

.trail-brow .trail-crest img{
            height: 36px;
            width: auto;
            display: block;
        }

.trail-brow .trail-orbit{
            display: flex;
            flex-wrap: wrap;
            gap: 28px;
            align-items: center;
        }

.trail-brow .trail-path{
            font-size: 14px;
            font-weight: 500;
            color: #515154;
            text-decoration: none;
            transition: color 0.35s ease;
            position: relative;
            padding: 6px 0;
        }

.trail-brow .trail-path:hover, .trail-brow .trail-path.trail-active{
            color: #0060df;
        }

.trail-brow .trail-path.trail-active::after{
            content: "";
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 0;
            height: 2px;
            background: #0060df;
            border-radius: 2px;
        }

@media (max-width: 768px){.trail-brow .trail-brow-grove{
                flex-direction: column;
                gap: 16px;
            }

.trail-brow .trail-orbit{
                justify-content: center;
                gap: 16px;
            }}

.trail-brow {
    background: rgb(252, 252, 253);
    background-image: none;
}

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

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

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

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

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

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

.tail-sole{
            background-color: #f5f7fa;
            border-top: 1px solid #e2e8f0;
            padding: 60px 0 40px;
        }

.tail-sole .tail-sole-grove{
            max-width: 1160px;
            margin: 0 auto;
            padding: 0 24px;
        }

.tail-sole .tail-sole-top{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #e2e8f0;
            padding-bottom: 30px;
            margin-bottom: 30px;
        }

.tail-sole .tail-sole-brand{
            font-size: 24px;
            font-weight: 800;
            color: #1d1d1f;
            letter-spacing: -0.5px;
        }

.tail-sole .tail-sole-beam{
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
        }

.tail-sole .tail-sole-path{
            font-size: 13.5px;
            color: #515154;
            text-decoration: none;
            transition: color 0.35s ease;
        }

.tail-sole .tail-sole-path:hover{
            color: #0060df;
        }

.tail-sole .tail-sole-bottom{
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
        }

.tail-sole .tail-sole-whisper{
            font-size: 13px;
            color: #515154;
        }

@media (max-width: 768px){.tail-sole .tail-sole-top{
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

.tail-sole .tail-sole-beam{
                justify-content: center;
            }

.tail-sole .tail-sole-bottom{
                flex-direction: column;
                text-align: center;
            }}