:root {
  --bg-dark: #090b11;
  --bg-surface: #121624;
  --bg-patch: #1a2035;
  --bg-patch-hover: #222942;
  --primary: #5135db;
  --primary-light: #7054ff;
  --accent-cyan: #00f2fe;
  --accent-green: #00e676;
  --accent-red: #ff5252;
  --text-main: #f1f5f9;
  --text-sub: #94a3b8;
  --border: rgba(81, 53, 219, 0.25);
  --radius: 20px;
  --radius-sm: 12px;
  --transition: 0.25s ease;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.7;
  word-break: break-word;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Header Reused Style */
.crest {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 11, 17, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.corral {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

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

.mark img {
  height: 36px;
  width: auto;
}

.scout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.node {
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-sub);
  border-radius: 8px;
  transition: all var(--transition);
}

.node:hover,
.node.active {
  color: #ffffff;
  background: rgba(81, 53, 219, 0.18);
}

.spur {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 24px rgba(81, 53, 219, 0.35);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.spur:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(81, 53, 219, 0.5);
}

/* Page Layout Main */
main {
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* Hero Section (Acquire) */
.apex {
  padding: 70px 0 90px;
  background: 
    radial-gradient(circle at 70% 20%, rgba(81, 53, 219, 0.28) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(0, 242, 254, 0.12) 0%, transparent 50%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.apex-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: center;
}

.apex-lore {
  flex: 1 1 500px;
  min-width: 0;
}

.token-strike {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 99px;
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.25);
  color: var(--accent-cyan);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.horn-giant {
  font-size: 42px;
  line-height: 1.25;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
  white-space: normal;
}

.lore-lead {
  font-size: 17px;
  color: var(--text-sub);
  line-height: 1.7;
  margin-bottom: 36px;
}

.vision-shell {
  flex: 1 1 520px;
  min-width: 0;
  position: relative;
}

.vision-corral {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  transition: transform var(--transition);
}

.vision-corral:hover {
  transform: translateY(-4px);
}

/* Download Matrix Grid */
.cluster-downloads {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}

.patch-download {
  flex: 1 1 260px;
  min-width: 0;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition);
}

.patch-download:hover {
  background: var(--bg-patch);
  border-color: var(--primary-light);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.patch-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.glyph-token {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(81, 53, 219, 0.2), rgba(0, 242, 254, 0.15));
  border: 1px solid rgba(81, 53, 219, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  flex-shrink: 0;
}

.horn-patch {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.lore-mute {
  font-size: 13px;
  color: var(--text-sub);
  margin-top: 2px;
}

.streak-desc {
  font-size: 14px;
  color: var(--text-sub);
  margin-bottom: 20px;
  line-height: 1.6;
}

.charge-bolt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.charge-bolt:hover {
  filter: brightness(1.15);
  box-shadow: 0 6px 20px rgba(81, 53, 219, 0.4);
}

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

.charge-outline:hover {
  background: rgba(81, 53, 219, 0.15);
  border-color: var(--primary-light);
}

/* Feature Showcase Section (role: acquire) */
.surge {
  padding: 90px 0;
  background: var(--bg-dark);
  position: relative;
}

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

.horn-corral {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.lore-corral {
  font-size: 16px;
  color: var(--text-sub);
  line-height: 1.7;
}

.cluster-features {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.slate-feature {
  flex: 1 1 340px;
  min-width: 0;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.slate-feature:hover {
  transform: translateY(-6px);
  border-color: var(--primary-light);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
}

.slate-feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent-cyan));
  opacity: 0;
  transition: opacity var(--transition);
}

.slate-feature:hover::before {
  opacity: 1;
}

.glyph-crest {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(81, 53, 219, 0.15);
  border: 1px solid rgba(81, 53, 219, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  margin-bottom: 24px;
}

.horn-feature {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.lore-feature {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.7;
}

/* System Matrix Section (role: acquire) */
.zenith {
  padding: 90px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.patch-matrix {
  flex: 1 1 500px;
  min-width: 0;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.horn-matrix {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.streak-hoof {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 14px;
}

.streak-hoof:last-child {
  border-bottom: none;
}

.lore-key {
  color: var(--text-sub);
  font-weight: 500;
}

.lore-val {
  color: #ffffff;
  font-weight: 600;
}

.token-verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(0, 230, 118, 0.12);
  color: var(--accent-green);
  font-size: 12px;
  font-weight: 600;
}

/* FAQ Section (role: faq) */
.meadow-faq {
  padding: 90px 0;
  background: var(--bg-dark);
}

.cluster-faq {
  max-width: 860px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.patch-faq {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px 28px;
  transition: all var(--transition);
}

.patch-faq:hover {
  border-color: var(--primary-light);
  background: var(--bg-patch);
}

.horn-faq {
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lore-faq {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.7;
}

/* Footer Haven */
.haven {
  background: #06070b;
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
  color: var(--text-sub);
}

.bedrock {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 50px;
}

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

.horn-brand {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.lore-foot {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-sub);
}

.anchor-links {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  flex: 2 1 500px;
  min-width: 0;
  justify-content: flex-end;
}

.cluster-foot {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 120px;
}

.horn-foot {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.node-foot {
  font-size: 14px;
  color: var(--text-sub);
  transition: color var(--transition);
}

.node-foot:hover {
  color: var(--accent-cyan);
}

.sole {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  color: #64748b;
}

/* Responsive Rules */
@media (max-width: 1024px) {
  .apex-shell {
    gap: 36px;
  }
  .horn-giant {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .corral {
    height: auto;
    padding: 16px 20px;
    gap: 12px;
  }
  .scout {
    width: 100%;
    order: 3;
    overflow-x: auto;
    padding-bottom: 4px;
  }
  .node {
    padding: 6px 12px;
    font-size: 14px;
    white-space: nowrap;
  }
  .spur {
    padding: 8px 18px;
    font-size: 13px;
  }
  .horn-giant {
    font-size: 28px;
  }
  .horn-corral {
    font-size: 24px;
  }
  .anchor-links {
    justify-content: flex-start;
    gap: 28px;
  }
  .sole {
    flex-direction: column;
    text-align: center;
  }
}

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

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

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

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

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

.scout-crest a.scout-node {
    --aisite-shell-nav-padding: 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;
}

.scout-crest a.scout-node,
.scout-crest a.scout-node:hover,
.scout-crest a.scout-node:focus,
.scout-crest a.scout-node:active,
.scout-crest a.scout-node.active,
.scout-crest a.scout-node[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);
}

.scout-crest{
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(9, 11, 17, 0.85);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            padding: 16px 0;
        }

.scout-crest .scout-corral{
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

.scout-crest .scout-mark{
            display: flex;
            align-items: center;
            min-width: 0;
        }

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

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

.scout-crest .scout-scout a{
            color: #94a3b8;
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 99px;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.25s ease;
            white-space: nowrap;
        }

.scout-crest .scout-scout a:hover{
            color: #f1f5f9;
            background: rgba(255, 255, 255, 0.05);
        }

.scout-crest .scout-scout a.active{
            color: #ffffff;
            background: #5135db;
            box-shadow: 0 0 20px rgba(81, 53, 219, 0.4);
        }

.scout-crest .scout-spur{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 28px;
            border-radius: 99px;
            background: linear-gradient(135deg, #5135db, #7054ff);
            color: #ffffff;
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            border: 1px solid rgba(255, 255, 255, 0.15);
            box-shadow: 0 8px 24px rgba(81, 53, 219, 0.35);
            transition: all 0.25s ease;
            cursor: pointer;
            white-space: nowrap;
        }

.scout-crest .scout-spur:hover{
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(81, 53, 219, 0.5);
            background: linear-gradient(135deg, #7054ff, #00f2fe);
        }

@media (max-width: 768px){.scout-crest{
                padding: 12px 0;
            }

.scout-crest .scout-corral{
                flex-direction: column;
                gap: 16px;
            }

.scout-crest .scout-scout{
                justify-content: center;
                overflow-x: auto;
                width: 100%;
                padding-bottom: 4px;
            }}

.scout-crest {
    background: rgb(9, 11, 17);
    background-image: none;
}

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

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

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

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

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

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

.haven-sole{
            background: #05070a;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 80px 0 40px;
            font-size: 14px;
            color: #94a3b8;
        }

.haven-sole .haven-bedrock{
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 24px;
            display: grid;
            grid-template-columns: 2fr repeat(3, 1fr);
            gap: 48px;
            margin-bottom: 60px;
        }

.haven-sole .haven-brand-horn{
            font-size: 24px;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }

.haven-sole .haven-brand-lore{
            max-width: 320px;
            line-height: 1.7;
            margin-bottom: 24px;
        }

.haven-sole .haven-col-horn{
            font-size: 16px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 20px;
        }

.haven-sole .haven-col-herd{
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

.haven-sole .haven-col-herd a{
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.25s ease;
        }

.haven-sole .haven-col-herd a:hover{
            color: #00f2fe;
        }

.haven-sole .haven-lore-streak{
            max-width: 1320px;
            margin: 0 auto;
            padding: 30px 24px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
        }

@media (max-width: 768px){.haven-sole .haven-bedrock{
                grid-template-columns: 1fr;
                gap: 32px;
            }}