:root {
  --bg-dark: #07080d;
  --bg-surface: #0e111a;
  --bg-card: rgba(18, 22, 36, 0.85);
  --font-head: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --text-main: #f0f3fc;
  --text-sub: #94a3b8;
  --text-muted: #64748b;
  --accent: #6a26f1;
  --accent-glow: #8b5cf6;
  --success: #10b981;
  --border: rgba(106, 38, 241, 0.3);
  --border-hover: rgba(139, 92, 246, 0.6);
  --radius: 12px;
  --radius-sm: 8px;
}

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

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

/* Header Reused Styles */
.tip {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 8, 13, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  width: 100%;
}

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

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

.emblem {
  display: flex;
  align-items: center;
  min-width: 0;
}

.emblem img {
  height: 40px;
  width: auto;
  display: block;
}

.flock {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.path {
  color: var(--text-sub);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.35s ease;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  white-space: normal;
}

.path:hover,
.path.active {
  color: #ffffff;
  background: rgba(106, 38, 241, 0.15);
  border: 1px solid rgba(106, 38, 241, 0.3);
}

.stamp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-glow) 100%);
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(106, 38, 241, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.35s ease;
  white-space: normal;
  min-width: 0;
}

.stamp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(106, 38, 241, 0.6);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Page Layout Components */
.corral {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 24px;
}

.crown {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 16px;
  white-space: normal;
}

.script {
  font-size: 16px;
  color: var(--text-sub);
  line-height: 1.75;
  margin-bottom: 24px;
}

/* Section 1: Hero Intro */
.surge {
  padding: 50px 0 70px 0;
  background: radial-gradient(circle at 50% 0%, rgba(106, 38, 241, 0.18) 0%, rgba(7, 8, 13, 0) 70%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.vault {
  flex: 1 1 300px;
  min-width: 0;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(106, 38, 241, 0.15);
  transition: all 0.35s ease;
}

.vault:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(106, 38, 241, 0.35);
}

.spark {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: rgba(106, 38, 241, 0.2);
  border: 1px solid rgba(139, 92, 246, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent-glow);
}

.spark svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Section 2: Steps Process (aside) */
.rally {
  background: var(--bg-surface);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0;
}

.paddock {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.calf {
  flex: 1 1 240px;
  min-width: 0;
  background: rgba(18, 22, 36, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: all 0.35s ease;
}

.calf:hover {
  background: rgba(18, 22, 36, 0.95);
  border-color: var(--accent-glow);
  transform: translateY(-3px);
}

.ribbon {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(106, 38, 241, 0.25);
  color: var(--accent-glow);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  border: 1px solid rgba(139, 92, 246, 0.3);
}

/* Section 3: Checklist */
.crest {
  padding: 80px 0;
}

.slab {
  background: linear-gradient(135deg, rgba(14, 17, 26, 0.9) 0%, rgba(18, 22, 36, 0.95) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.hoof {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.charge {
  flex: 1 1 300px;
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(7, 8, 13, 0.5);
  padding: 20px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.charge .spark {
  margin-bottom: 0;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--success);
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.3);
}

/* Section 4: FAQ (article) */
.arena {
  background: var(--bg-surface);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0;
}

.realm {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.steer {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.35s ease;
}

.steer:hover {
  border-color: var(--border);
}

.steer h3 {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.steer h3::before {
  content: "Q";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.steer p {
  color: var(--text-sub);
  font-size: 15px;
  line-height: 1.7;
  padding-left: 34px;
}

/* CTA Footer Block */
.horns {
  background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-dark) 100%);
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}

.bedrock {
  max-width: 700px;
  margin: 0 auto;
}

/* Footer Sole */
.sole {
  background: #040508;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 50px 0 30px 0;
  color: var(--text-muted);
  font-size: 14px;
}

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

.tail {
  flex: 1 1 260px;
  min-width: 0;
}

.tail h4 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 16px;
}

.tail ul {
  list-style: none;
}

.tail ul li {
  margin-bottom: 10px;
}

.tail a {
  color: var(--text-sub);
  text-decoration: none;
  transition: color 0.35s ease;
}

.tail a:hover {
  color: #ffffff;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}

/* Responsive Rules */
@media (max-width: 1024px) {
  .orbit {
    height: auto;
    padding: 16px 0;
    gap: 16px;
  }
  .crown {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .flock {
    gap: 10px;
    width: 100%;
    justify-content: center;
  }
  .orbit {
    justify-content: center;
  }
  .vault,
  .calf,
  .charge {
    flex: 1 1 100%;
  }
  .crown {
    font-size: 24px;
  }
  .corral {
    padding: 40px 16px;
  }
  .slab {
    padding: 24px;
  }
}

.horns-tip {
    font-family: var(--font-head);
    line-height: 1.7;
    color: var(--text-main);
}
.horns-tip,
.horns-tip *,
.horns-tip *::before,
.horns-tip *::after {
    box-sizing: border-box;
}

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

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

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

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

.horns-tip a.horns-path {
    --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;
}

.horns-tip a.horns-path,
.horns-tip a.horns-path:hover,
.horns-tip a.horns-path:focus,
.horns-tip a.horns-path:active,
.horns-tip a.horns-path.active,
.horns-tip a.horns-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);
}

.horns-tip .horns-shell{
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

.horns-tip{
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(7, 8, 13, 0.85);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(106, 38, 241, 0.22);
        }

.horns-tip .horns-orbit{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            height: 76px;
        }

.horns-tip .horns-emblem{
            display: flex;
            align-items: center;
            min-width: 0;
        }

.horns-tip .horns-emblem img{
            height: 38px;
            width: auto;
            display: block;
        }

.horns-tip .horns-flock{
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px;
            list-style: none;
        }

.horns-tip .horns-path{
            padding: 8px 16px;
            font-size: 15px;
            font-weight: 500;
            color: #94a3b8;
            border-radius: 8px;
            border: 1px solid transparent;
            min-width: 0;
        }

.horns-tip .horns-path:hover, .horns-tip .horns-path.active{
            color: #ffffff;
            background: rgba(106, 38, 241, 0.18);
            border-color: rgba(106, 38, 241, 0.22);
            text-shadow: 0 0 10px rgba(106, 38, 241, 0.4);
        }

.horns-tip .horns-stamp{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 24px;
            font-size: 15px;
            font-weight: 600;
            border-radius: 8px;
            background: linear-gradient(135deg, #6a26f1 0%, #8b5cf6 100%);
            color: #ffffff;
            box-shadow: 0 4px 18px rgba(106, 38, 241, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.2);
            cursor: pointer;
            transition: all 0.35s ease;
            min-width: 0;
        }

.horns-tip .horns-stamp:hover{
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(106, 38, 241, 0.6);
            background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
        }

@media (max-width: 768px){.horns-tip .horns-orbit{
                height: auto;
                padding: 16px 0;
                gap: 16px;
            }

.horns-tip .horns-flock{
                width: 100%;
                justify-content: space-between;
                overflow-x: auto;
                padding-bottom: 4px;
            }

.horns-tip .horns-path{
                padding: 6px 10px;
                font-size: 13px;
                white-space: nowrap;
            }}

.horns-tip {
    background: rgb(7, 8, 13);
    background-image: none;
}

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

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

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

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

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

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

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

.meadow-sole{
            background: #040508;
            border-top: 1px solid rgba(106, 38, 241, 0.22);
            padding: 60px 0 30px 0;
            font-size: 14px;
            color: #64748b;
        }

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

.meadow-sole .meadow-bedrock{
            flex: 1 1 300px;
            min-width: 0;
        }

.meadow-sole .meadow-bedrock-brand{
            font-size: 22px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }

.meadow-sole .meadow-bedrock-desc{
            font-size: 13px;
            color: #64748b;
            margin-bottom: 20px;
            line-height: 1.6;
        }

.meadow-sole .meadow-cluster-sole-links{
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }

.meadow-sole .meadow-sole-column{
            display: flex;
            flex-direction: column;
            gap: 10px;
            min-width: 140px;
        }

.meadow-sole .meadow-sole-column .meadow-crown{
            font-size: 14px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 6px;
        }

.meadow-sole .meadow-sole-column a{
            color: #64748b;
            font-size: 13px;
        }

.meadow-sole .meadow-sole-column a:hover{
            color: #00f2fe;
        }

.meadow-sole .meadow-tail{
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding-top: 24px;
            text-align: center;
            font-size: 12px;
            color: #64748b;
        }