:root {
  --primary: #f9a84b;
  --primary-dark: #d97706;
  --primary-light: #fffbeb;
  --bg-light: #f8fafc;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --white: #ffffff;
  --shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 40px -10px rgba(249, 168, 75, 0.18);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --transition: all 0.25s 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-light);
  color: var(--slate-900);
  line-height: 1.7;
  word-break: break-word;
  overflow-wrap: break-word;
}

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

/* 全局版心与布局组件 */
.orbit {
  width: 100%;
  overflow-x: hidden;
}

.meadow {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.flock {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

/* 强制导航结构与样式复用 */
.horns {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-100);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 14px 0;
}

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

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

.peak {
  font-size: 15px;
  font-weight: 500;
  color: var(--slate-700);
  position: relative;
  padding: 6px 0;
}

.peak:hover,
.peak.active {
  color: var(--primary-dark);
}

.peak.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-dark);
  border-radius: 2px;
}

.node {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.charge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 14px rgba(249, 168, 75, 0.35);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.charge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 168, 75, 0.45);
}

.strike {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: var(--white);
  color: var(--slate-800);
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--slate-200);
  cursor: pointer;
  white-space: nowrap;
}

.strike:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
  background: var(--primary-light);
}

/* 主内容区域通用容器 */
.arena {
  width: 100%;
}

/* 区块 1: Intro Section (account_hero) */
.surge {
  padding: 80px 0 90px;
  background: linear-gradient(135deg, #fffbeb 0%, #fff7ed 40%, #f8fafc 100%);
  border-bottom: 1px solid var(--slate-100);
  position: relative;
}

.node-pasture {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 48px;
}

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

.node-right {
  flex: 1 1 450px;
  min-width: 0;
}

.plaque {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(249, 168, 75, 0.15);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 20px;
}

.bond-pasture {
  font-size: 38px;
  line-height: 1.25;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.spark-pasture {
  font-size: 17px;
  color: var(--slate-600);
  margin-bottom: 32px;
  line-height: 1.7;
}

.node-checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.stamp-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--slate-800);
  font-weight: 500;
}

.lore-check {
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.chain-pasture {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: block;
}

/* 区块 2: Capability Section (depth_trading) */
.pasture {
  padding: 90px 0;
  background: var(--white);
  border-bottom: 1px solid var(--slate-100);
}

.node-pasture {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 56px;
}

.bond-meadow {
  font-size: 32px;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 16px;
  line-height: 1.3;
}

.spark-meadow {
  font-size: 16px;
  color: var(--slate-600);
  margin-bottom: 32px;
}

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

.vault-feature {
  background: var(--bg-light);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--slate-100);
  transition: var(--transition);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.vault-feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(249, 168, 75, 0.3);
}

.lore-box {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #fffbeb 0%, #ffe49e 100%);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bond-feature {
  font-size: 18px;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 6px;
}

.spark-feature {
  font-size: 14px;
  color: var(--slate-600);
  line-height: 1.6;
}

/* 区块 3: Article Section (market_features) */
.zenith {
  padding: 90px 0;
  background: var(--bg-light);
  border-bottom: 1px solid var(--slate-100);
}

.node-trace {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

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

.vault-vault {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--slate-100);
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.vault-vault:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px -5px rgba(15, 23, 42, 0.12);
  border-color: var(--primary);
}

.lore-vault {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: var(--radius);
  background: var(--primary-light);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.bond-vault {
  font-size: 20px;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 12px;
}

.spark-vault {
  font-size: 15px;
  color: var(--slate-600);
  line-height: 1.7;
  flex-grow: 1;
}

/* 区块 4: Div Steps Section (onboarding_process) */
.node-steps {
  padding: 90px 0;
  background: var(--white);
}

.node-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
  position: relative;
}

.stamp-step {
  background: var(--bg-light);
  padding: 30px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--slate-100);
  position: relative;
  transition: var(--transition);
}

.stamp-step:hover {
  background: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.plaque-num {
  font-size: 36px;
  font-weight: 900;
  color: var(--primary);
  opacity: 0.8;
  margin-bottom: 16px;
  line-height: 1;
}

.bond-step {
  font-size: 17px;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 8px;
}

.spark-step {
  font-size: 14px;
  color: var(--slate-600);
  line-height: 1.6;
}

/* 行动呼吁横幅 */
.node-charge-pasture {
  margin-top: 60px;
  background: linear-gradient(135deg, var(--slate-900) 0%, var(--slate-800) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  color: var(--white);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.bond-charge {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}

.spark-charge {
  color: var(--slate-500);
  font-size: 15px;
}

/* 页脚区域复用规范 */
.anchor {
  background: var(--slate-900);
  color: var(--slate-500);
  padding: 70px 0 30px;
  font-size: 14px;
  border-top: 1px solid var(--slate-800);
}

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

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

.bond-brand {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.spark-brand {
  line-height: 1.7;
  color: var(--slate-500);
  margin-bottom: 20px;
}

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

.node-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bond-col {
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.peak-crown {
  color: var(--slate-500);
}

.peak-crown:hover {
  color: var(--primary);
}

.trough {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: var(--slate-500);
  font-size: 13px;
}

/* 响应式样式规范 */
@media (max-width: 1024px) {
  .bond-pasture {
    font-size: 32px;
  }
  .beacon {
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .flock {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .beacon {
    width: 100%;
    justify-content: flex-start;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
  }
  .node {
    width: 100%;
  }
  .charge {
    width: 100%;
  }
  .surge, .pasture, .zenith, .node-steps {
    padding: 50px 0;
  }
  .bond-pasture {
    font-size: 26px;
  }
  .bond-meadow {
    font-size: 24px;
  }
  .node-pasture, .node-pasture {
    gap: 32px;
  }
  .node-charge-pasture {
    padding: 32px 24px;
  }
  .node-timeline {
    grid-template-columns: 1fr;
  }
}

.horns-horns {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--dark);
}
.horns-horns,
.horns-horns *,
.horns-horns *::before,
.horns-horns *::after {
    box-sizing: border-box;
}

.horns-horns [role="navigation"],
.horns-horns div,
.horns-horns section,
.horns-horns article,
.horns-horns aside,
.horns-horns p,
.horns-horns h1,
.horns-horns h2,
.horns-horns h3,
.horns-horns h4,
.horns-horns h5,
.horns-horns h6,
.horns-horns a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

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

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

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

.horns-horns a.horns-peak-2.horns-horns-peak {
    --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;
}

.horns-horns a.horns-peak-2.horns-horns-peak,
.horns-horns a.horns-peak-2.horns-horns-peak:hover,
.horns-horns a.horns-peak-2.horns-horns-peak:focus,
.horns-horns a.horns-peak-2.horns-horns-peak:active,
.horns-horns a.horns-peak-2.horns-horns-peak.active,
.horns-horns a.horns-peak-2.horns-horns-peak[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);
}

.horns-horns{
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(226, 232, 240, 0.8);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
        }

.horns-horns .horns-meadow{
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 20px;
        }

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

.horns-horns .horns-crest, .horns-horns .horns-crest{
            display: flex;
            align-items: center;
        }

.horns-horns .horns-crest img, .horns-horns .horns-crest img{
            height: 40px;
            width: auto;
            display: block;
        }

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

.horns-horns .horns-peak-2, .horns-horns .horns-horns-peak{
            font-size: 15px;
            font-weight: 500;
            color: #334155;
            transition: color 0.25s ease;
            position: relative;
            padding: 6px 0;
        }

.horns-horns .horns-peak-2:hover, .horns-horns .horns-peak-2.active, .horns-horns .horns-horns-peak:hover, .horns-horns .horns-horns-peak.active{
            color: #d97706;
        }

.horns-horns .horns-peak-2.active::after, .horns-horns .horns-horns-peak.active::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: #f9a84b;
            border-radius: 2px;
        }

.horns-horns .horns-charge{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 24px;
            background: linear-gradient(135deg, #f9a84b 0%, #d97706 100%);
            color: #ffffff;
            font-weight: 600;
            font-size: 15px;
            border-radius: 8px;
            box-shadow: 0 4px 14px rgba(249, 168, 75, 0.35);
            transition: all 0.25s ease;
            cursor: pointer;
            border: none;
        }

.horns-horns .horns-charge:hover{
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(249, 168, 75, 0.45);
            color: #ffffff;
        }

@media (max-width: 768px){.horns-horns .horns-flock{
                height: auto;
                padding: 16px 0;
                flex-direction: column;
                gap: 16px;
            }

.horns-horns .horns-beacon{
                gap: 16px;
                justify-content: center;
            }}

.horns-horns {
    background: rgb(255, 255, 255);
    background-image: none;
}

.anchor-anchor {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    word-break: break-word;
    color: var(--dark);
}
.anchor-anchor,
.anchor-anchor *,
.anchor-anchor *::before,
.anchor-anchor *::after {
    box-sizing: border-box;
}

.anchor-anchor [role="navigation"],
.anchor-anchor div,
.anchor-anchor section,
.anchor-anchor article,
.anchor-anchor aside,
.anchor-anchor p,
.anchor-anchor h1,
.anchor-anchor h2,
.anchor-anchor h3,
.anchor-anchor h4,
.anchor-anchor h5,
.anchor-anchor h6,
.anchor-anchor a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

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

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

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

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

.anchor-anchor .anchor-meadow{
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 20px;
        }

.anchor-anchor{
            background-color: #0f172a;
            color: #94a3b8;
            padding: 60px 0 30px;
            border-top: 1px solid #1e293b;
        }

.anchor-anchor .anchor-bedrock{
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 40px;
        }

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

.anchor-anchor .anchor-bond-crown-brand{
            font-size: 22px;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 12px;
        }

.anchor-anchor .anchor-spark-crown-desc{
            font-size: 14px;
            line-height: 1.6;
            color: #94a3b8;
        }

.anchor-anchor .anchor-node-links{
            flex: 1 1 180px;
            min-width: 0;
        }

.anchor-anchor .anchor-bond-crown-col{
            font-size: 16px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 16px;
        }

.anchor-anchor .anchor-vista-crown{
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

.anchor-anchor .anchor-peak-crown{
            font-size: 14px;
            color: #94a3b8;
            transition: color 0.25s ease;
        }

.anchor-anchor .anchor-peak-crown:hover{
            color: #f9a84b;
        }

.anchor-anchor .anchor-trough{
            padding-top: 30px;
            border-top: 1px solid #1e293b;
            text-align: center;
            font-size: 13px;
            color: #64748b;
        }