:root {
      --primary: #4e53ee;
      --primary-hover: #3b40d9;
      --primary-light: rgba(78, 83, 238, 0.12);
      --bg-dark: #090b14;
      --bg-card: #13172b;
      --bg-elevated: #1a203a;
      --text-main: #f1f5f9;
      --text-muted: #94a3b8;
      --radius: 14px;
      --border: 1px solid rgba(255, 255, 255, 0.08);
      --shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }

    * {
      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-dark);
      color: var(--text-main);
      line-height: 1.6;
      word-break: break-word;
      overflow-wrap: break-word;
    }

    /* Header Navigation Reuse */
    .crest {
      background: rgba(9, 11, 20, 0.85);
      backdrop-filter: blur(12px);
      border-bottom: var(--border);
      position: sticky;
      top: 0;
      z-index: 1000;
      width: 100%;
    }

    .casing-harbor {
      max-width: 1200px;
      margin: 0 auto;
      padding: 16px 24px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
    }

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

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

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

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

    .tether:hover,
    .tether.active {
      color: #ffffff;
    }

    .tether.active {
      color: var(--primary);
      font-weight: 600;
    }

    /* Hero Section (split_diagonal role variant) */
    .citadel {
      background: linear-gradient(135deg, #090b14 0%, #151833 50%, #0d1024 100%);
      padding: 72px 24px;
      border-bottom: var(--border);
      overflow: hidden;
    }

    .casing-bastion {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 48px;
    }

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

    .rampart-right {
      flex: 1 1 450px;
      min-width: 0;
      display: flex;
      justify-content: center;
    }

    .strand-seal {
      display: inline-flex;
      align-items: center;
      padding: 6px 14px;
      background: var(--primary-light);
      border: 1px solid rgba(78, 83, 238, 0.3);
      border-radius: 20px;
      color: #818cf8;
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 20px;
    }

    .signet-primary {
      font-size: clamp(32px, 4.5vw, 48px);
      font-weight: 800;
      line-height: 1.2;
      color: #ffffff;
      margin-bottom: 20px;
      word-break: keep-all;
    }

    .script-lead {
      font-size: 17px;
      color: var(--text-muted);
      margin-bottom: 32px;
      line-height: 1.7;
    }

    .pocket-latch {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-bottom: 36px;
    }

    .latch {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 28px;
      border-radius: 12px;
      font-size: 15px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.15s ease;
      cursor: pointer;
    }

    .latch-primary {
      background: var(--primary);
      color: #ffffff;
      border: 1px solid transparent;
      box-shadow: 0 4px 20px rgba(78, 83, 238, 0.4);
    }

    .latch-primary:hover {
      background: var(--primary-hover);
      transform: translateY(-2px);
      box-shadow: 0 6px 24px rgba(78, 83, 238, 0.5);
    }

    .latch-secondary {
      background: rgba(255, 255, 255, 0.05);
      color: var(--text-main);
      border: var(--border);
    }

    .latch-secondary:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.2);
    }

    .pocket-beacon {
      display: flex;
      flex-wrap: wrap;
      gap: 24px;
      padding-top: 24px;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .beacon-node {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      color: var(--text-muted);
    }

    .rune {
      width: 20px;
      height: 20px;
      color: var(--primary);
      flex-shrink: 0;
    }

    .visage-citadel {
      width: 100%;
      max-width: 540px;
      height: auto;
      border-radius: var(--radius);
      border: var(--border);
      box-shadow: var(--shadow);
      display: block;
    }

    /* Section 2: Platform Matrix Article */
    .sanctum {
      max-width: 1200px;
      margin: 0 auto;
      padding: 80px 24px;
    }

    .signet-secondary {
      font-size: clamp(24px, 3.2vw, 36px);
      font-weight: 700;
      color: #ffffff;
      text-align: center;
      margin-bottom: 12px;
    }

    .script-sub {
      font-size: 16px;
      color: var(--text-muted);
      text-align: center;
      max-width: 720px;
      margin: 0 auto 48px;
    }

    .casing-media {
      margin-bottom: 48px;
      border-radius: var(--radius);
      overflow: hidden;
      border: var(--border);
      box-shadow: var(--shadow);
    }

    .visage-matrix {
      width: 100%;
      height: auto;
      display: block;
    }

    .casing-vault {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 24px;
    }

    .vault-pod {
      background: var(--bg-card);
      border: var(--border);
      border-radius: var(--radius);
      padding: 32px;
      display: flex;
      flex-wrap: wrap;
      flex-direction: column;
      justify-content: space-between;
      transition: transform 0.15s ease, border-color 0.15s ease;
    }

    .vault-pod:hover {
      transform: translateY(-4px);
      border-color: rgba(78, 83, 238, 0.4);
    }

    .pod-crown {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 20px;
    }

    .rune-aegis {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: var(--primary-light);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      flex-shrink: 0;
    }

    .signet-node {
      font-size: 18px;
      font-weight: 700;
      color: #ffffff;
    }

    .script-meta {
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 16px;
      line-height: 1.6;
    }

    .casing-hash {
      background: var(--bg-dark);
      padding: 12px 14px;
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, 0.05);
      font-family: monospace;
      font-size: 12px;
      color: #a5b4fc;
      margin-bottom: 24px;
      word-break: break-all;
    }

    .latch-vault {
      width: 100%;
      background: rgba(78, 83, 238, 0.15);
      color: #ffffff;
      border: 1px solid rgba(78, 83, 238, 0.3);
      text-align: center;
    }

    .latch-vault:hover {
      background: var(--primary);
      border-color: var(--primary);
    }

    /* Section 3: Security Verification Div */
    .aegis {
      background: var(--bg-elevated);
      border-top: var(--border);
      border-bottom: var(--border);
      padding: 80px 24px;
    }

    .casing-capsule {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
    }

    .capsule-node {
      background: var(--bg-card);
      border: var(--border);
      border-radius: var(--radius);
      padding: 28px;
      position: relative;
    }

    .strand-step {
      font-size: 32px;
      font-weight: 900;
      color: var(--primary);
      opacity: 0.6;
      margin-bottom: 12px;
    }

    .pocket-tether {
      max-width: 1200px;
      margin: 40px auto 0;
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }

    .tether-script {
      color: #818cf8;
      text-decoration: none;
      font-size: 15px;
      font-weight: 500;
      transition: color 0.15s ease;
    }

    .tether-script:hover {
      color: #ffffff;
      text-decoration: underline;
    }

    /* Section 4: Release Notes Aside */
    .bastion-secondary {
      max-width: 1200px;
      margin: 0 auto;
      padding: 80px 24px;
    }

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

    .pod-left,
    .pod-right {
      flex: 1 1 450px;
      min-width: 0;
      background: var(--bg-card);
      border: var(--border);
      border-radius: var(--radius);
      padding: 32px;
    }

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

    .node-log {
      position: relative;
      padding-left: 24px;
      margin-bottom: 16px;
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .node-log::before {
      content: "";
      position: absolute;
      left: 0;
      top: 8px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--primary);
    }

    .casing-spec {
      margin-top: 20px;
    }

    .node-spec {
      display: flex;
      justify-content: space-between;
      padding: 12px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      font-size: 14px;
    }

    .node-spec:last-child {
      border-bottom: none;
    }

    .script-seal {
      color: var(--text-muted);
    }

    .script-value {
      color: var(--text-main);
      font-weight: 500;
    }

    /* Footer Base Reuse */
    .anchor {
      background: #06070d;
      border-top: var(--border);
      padding: 60px 24px 30px;
    }

    .casing-bedrock {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      gap: 48px;
      justify-content: space-between;
      margin-bottom: 48px;
    }

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

    .signet-base {
      font-size: 24px;
      font-weight: 800;
      color: #ffffff;
      margin-bottom: 12px;
    }

    .script-base {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .bedrock-harbor {
      display: flex;
      flex-wrap: wrap;
      gap: 48px;
      min-width: 0;
    }

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

    .signet-column {
      font-size: 15px;
      font-weight: 600;
      color: #ffffff;
      margin-bottom: 4px;
    }

    .tether-base {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 14px;
      transition: color 0.15s ease;
    }

    .tether-base:hover {
      color: #ffffff;
    }

    .haven-script {
      max-width: 1200px;
      margin: 0 auto;
      padding-top: 24px;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      text-align: center;
      font-size: 13px;
      color: var(--text-muted);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .casing-harbor {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
      }
      .harbor {
        gap: 12px;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
      }
      .citadel {
        padding: 40px 16px;
      }
      .sanctum,
      .aegis,
      .bastion-secondary {
        padding: 48px 16px;
      }
      .pocket-latch {
        flex-direction: column;
        width: 100%;
      }
      .latch {
        width: 100%;
      }
    }

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

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

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

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

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

.harbor-crest a.harbor-tether {
    --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;
}

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

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

.harbor-crest .harbor-casing-harbor{
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

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

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

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

.harbor-crest .harbor-tether{
            padding: 8px 16px;
            font-size: 15px;
            font-weight: 500;
            color: #94a3b8;
            border-radius: 8px;
            transition: all 0.15s ease;
            min-width: 0;
        }

.harbor-crest .harbor-tether:hover{
            color: #f1f5f9;
            background: rgba(78, 83, 238, 0.12);
        }

.harbor-crest .harbor-tether.active{
            color: #ffffff;
            background: #4e53ee;
            box-shadow: 0 0 15px rgba(78, 83, 238, 0.4);
        }

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

.harbor-crest .harbor-harbor{
                width: 100%;
                justify-content: flex-start;
                overflow-x: auto;
                padding-bottom: 4px;
            }

.harbor-crest .harbor-tether{
                padding: 6px 12px;
                font-size: 14px;
                white-space: nowrap;
            }}

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

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

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

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

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

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

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

.anchor-base .anchor-tether{
            padding: 8px 16px;
            font-size: 15px;
            font-weight: 500;
            color: #94a3b8;
            border-radius: 8px;
            transition: all 0.15s ease;
            min-width: 0;
        }

.anchor-base .anchor-tether:hover{
            color: #f1f5f9;
            background: rgba(78, 83, 238, 0.12);
        }

.anchor-base .anchor-tether.active{
            color: #ffffff;
            background: #4e53ee;
            box-shadow: 0 0 15px rgba(78, 83, 238, 0.4);
        }

.anchor-base{
            background: #06070d;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 60px 24px 30px 24px;
            color: #94a3b8;
            font-size: 14px;
        }

.anchor-base .anchor-haven{
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
        }

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

.anchor-base .anchor-signet-brand{
            font-size: 24px;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }

.anchor-base .anchor-script-brand{
            color: #94a3b8;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 16px;
        }

.anchor-base .anchor-pocket-base-links{
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }

.anchor-base .anchor-node-base-col{
            display: flex;
            flex-direction: column;
            gap: 10px;
            min-width: 140px;
        }

.anchor-base .anchor-signet-base-head{
            color: #ffffff;
            font-weight: 600;
            font-size: 15px;
            margin-bottom: 6px;
        }

.anchor-base .anchor-bedrock{
            max-width: 1300px;
            margin: 0 auto;
            padding-top: 30px;
            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;
        }

@media (max-width: 768px){.anchor-base .anchor-tether{
                padding: 6px 12px;
                font-size: 14px;
                white-space: nowrap;
            }}