: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-muted: #94a3b8;
    }

    * {
      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;
    }

    /* Layout Shells & Containers */
    .corral {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 24px;
      width: 100%;
    }

    .crest {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(9, 11, 17, 0.85);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(81, 53, 219, 0.2);
    }

    .crest .corral {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      height: 76px;
    }

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

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

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

    .node {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 15px;
      font-weight: 500;
      transition: color 0.25s ease;
      white-space: normal;
    }

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

    .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;
      min-width: 0;
    }

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

    /* Section 1: Intro / IPO Apex */
    .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%);
    }

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

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

    .token {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 16px;
      border-radius: 99px;
      background: rgba(81, 53, 219, 0.15);
      border: 1px solid rgba(0, 242, 254, 0.3);
      color: var(--accent-cyan);
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 24px;
    }

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

    .lore {
      font-size: 16px;
      color: var(--text-muted);
      line-height: 1.8;
      margin-bottom: 32px;
    }

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

    .patch {
      flex: 1 1 240px;
      min-width: 0;
      background: var(--bg-surface);
      border: 1px solid rgba(81, 53, 219, 0.25);
      border-radius: 20px;
      padding: 24px;
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
      transition: transform 0.25s ease, border-color 0.25s ease;
    }

    .patch:hover {
      transform: translateY(-4px);
      border-color: rgba(0, 242, 254, 0.4);
      background: var(--bg-patch-hover);
    }

    .glyph {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(81, 53, 219, 0.3), rgba(0, 242, 254, 0.1));
      border: 1px solid rgba(81, 53, 219, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      color: var(--accent-cyan);
    }

    .horn-sub {
      font-size: 18px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 8px;
      white-space: normal;
    }

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

    .vision img {
      width: 100%;
      height: auto;
      border-radius: 24px;
      border: 1px solid rgba(81, 53, 219, 0.3);
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
      display: block;
    }

    /* Section 2: Options Capability Section */
    .surge {
      padding: 90px 0;
      background: var(--bg-surface);
      border-top: 1px solid rgba(81, 53, 219, 0.15);
      border-bottom: 1px solid rgba(81, 53, 219, 0.15);
    }

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

    .streak .horn {
      font-size: 34px;
    }

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

    .hoof {
      background: var(--bg-patch);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 20px;
      padding: 32px;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      min-width: 0;
    }

    .hoof:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 45px rgba(81, 53, 219, 0.25);
      border-color: rgba(81, 53, 219, 0.4);
    }

    .bolt {
      display: inline-flex;
      padding: 4px 12px;
      border-radius: 6px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.5px;
      background: rgba(0, 230, 118, 0.15);
      color: var(--accent-green);
      margin-bottom: 16px;
    }

    .bolt.alt {
      background: rgba(255, 82, 82, 0.15);
      color: var(--accent-red);
    }

    /* Section 3: Algorithmic Orders (Article) */
    .meadow {
      padding: 90px 0;
      position: relative;
    }

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

    .patch-a {
      flex: 1 1 360px;
      min-width: 0;
      background: linear-gradient(180deg, rgba(26, 32, 53, 0.8) 0%, rgba(18, 22, 36, 0.9) 100%);
      border: 1px solid rgba(81, 53, 219, 0.3);
      border-radius: 22px;
      padding: 36px;
      box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
    }

    .herd {
      list-style: none;
      margin-top: 20px;
    }

    .herd li {
      position: relative;
      padding-left: 28px;
      margin-bottom: 14px;
      color: var(--text-muted);
      font-size: 15px;
    }

    .herd li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 10px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent-cyan);
      box-shadow: 0 0 10px var(--accent-cyan);
    }

    /* Section 4: Execution Speed & Security Proof (Article) */
    .proof {
      padding: 80px 0 100px;
      background: radial-gradient(ellipse at bottom, rgba(81, 53, 219, 0.15) 0%, transparent 70%);
    }

    .charge {
      background: var(--bg-surface);
      border: 1px solid rgba(0, 242, 254, 0.2);
      border-radius: 24px;
      padding: 48px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 40px;
    }

    .charge-corral {
      flex: 1 1 400px;
      min-width: 0;
    }

    .charge-side {
      flex: 1 1 300px;
      min-width: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }

    .stat-token {
      flex: 1 1 140px;
      min-width: 0;
      background: var(--bg-patch);
      border: 1px solid rgba(81, 53, 219, 0.3);
      border-radius: 16px;
      padding: 20px;
      text-align: center;
    }

    .stat-num {
      font-size: 32px;
      font-weight: 800;
      color: var(--accent-cyan);
      line-height: 1.2;
      margin-bottom: 4px;
    }

    .stat-lbl {
      font-size: 13px;
      color: var(--text-muted);
    }

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

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

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

    .anchor .horn-sub {
      font-size: 22px;
      color: #ffffff;
      margin-bottom: 12px;
    }

    .bedrock {
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 24px;
      text-align: center;
    }

    .bedrock .lore {
      font-size: 13px;
      margin-bottom: 0;
    }

    /* Responsive Breakpoints */
    @media (max-width: 768px) {
      .crest .corral {
        height: auto;
        padding: 16px 20px;
        gap: 16px;
      }

      .scout {
        gap: 16px;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 6px;
      }

      .horn {
        font-size: 28px;
      }

      .streak .horn {
        font-size: 24px;
      }

      .apex {
        padding: 50px 0 60px;
      }

      .charge {
        padding: 24px;
      }
    }

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