: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;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  word-break: break-word;
  overflow-wrap: break-word;
}

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;
  -webkit-font-smoothing: antialiased;
}

/* Header Styles */
.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);
}

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

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

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

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

.node {
  color: var(--text-sub);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 99px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.25s ease;
  white-space: normal;
}

.node:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.node.active {
  color: #ffffff;
  background: var(--primary);
  box-shadow: 0 4px 12px rgba(81, 53, 219, 0.3);
}

.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;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 24px rgba(81, 53, 219, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  white-space: normal;
}

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

/* Layout Containers & Top-level Blocks */
.apex {
  padding: 80px 0 100px;
  background: radial-gradient(circle at 70% 30%, rgba(81, 53, 219, 0.25) 0%, transparent 60%),
              radial-gradient(circle at 20% 80%, rgba(0, 242, 254, 0.15) 0%, transparent 50%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.zenith {
  padding: 90px 0;
  background: var(--bg-dark);
}

.surge {
  padding: 90px 0;
  background: rgba(18, 22, 36, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.vault {
  padding: 90px 0;
  background: var(--bg-dark);
}

.meadow {
  padding: 90px 0;
  background: radial-gradient(circle at 50% 50%, rgba(81, 53, 219, 0.12) 0%, transparent 70%);
}

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

/* Content Elements */
.horn-giant {
  font-size: 46px;
  line-height: 1.25;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  white-space: normal;
}

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

.lore-lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-sub);
  max-width: 780px;
  margin-bottom: 40px;
}

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

/* Grid & Mosaic Collage Components */
.cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.patch {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  min-width: 0;
}

.patch:hover {
  transform: translateY(-4px);
  border-color: rgba(112, 84, 255, 0.5);
  background: var(--bg-patch-hover);
}

/* Data UI Components */
.slate {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.token {
  flex: 1 1 340px;
  min-width: 0;
}

.vision {
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  display: block;
}

.glyph {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(81, 53, 219, 0.15);
  border: 1px solid rgba(81, 53, 219, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent-cyan);
}

.streak {
  height: 6px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  margin-top: 12px;
}

.streak-inner {
  height: 100%;
  border-radius: 99px;
}

.hoof {
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(26, 32, 53, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

/* Stock Quote Ticker Simulation */
.track {
  background: #0d111d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px;
  font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
}

.steer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-size: 13px;
  color: var(--text-sub);
}

/* Footer Styles */
.sole {
  background: #05070c;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 0 30px;
}

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

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

.bedrock {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  text-align: center;
  color: var(--text-sub);
  font-size: 14px;
}

.charge {
  color: var(--text-sub);
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  transition: color 0.25s ease;
}

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

.bolt {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 600;
  margin-left: 8px;
}

.bolt-up {
  background: rgba(0, 230, 118, 0.15);
  color: var(--accent-green);
  border: 1px solid rgba(0, 230, 118, 0.3);
}

.bolt-down {
  background: rgba(255, 82, 82, 0.15);
  color: var(--accent-red);
  border: 1px solid rgba(255, 82, 82, 0.3);
}

/* Responsive Media Queries */
@media (max-width: 768px) {
  .corral {
    height: auto;
    padding: 16px;
    gap: 16px;
  }
  
  .scout {
    width: 100%;
    order: 3;
    justify-content: space-around;
  }
  
  .node {
    padding: 6px 12px;
    font-size: 13px;
  }
  
  .horn-giant {
    font-size: 30px;
  }
  
  .horn {
    font-size: 24px;
  }
  
  .apex, .zenith, .surge, .vault, .meadow {
    padding: 50px 0;
  }
  
  .slate {
    grid-template-columns: 1fr;
  }
}

.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;
            }}