:root {
  --hue-primary: #3a63f9;
  --hue-primary-hover: #2950e8;
  --hue-accent: #00d2ff;
  --bg-main: #0b0f19;
  --bg-surface: #141c2e;
  --bg-surface-elevated: #1b263e;
  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --radius-sm: 7px;
  --radius-md: 10px;
  --radius-lg: 13px;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

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

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

a {
  color: var(--hue-accent);
  text-decoration: none;
  transition: all 0.15s ease;
}

a:hover {
  color: #55e2ff;
}

.orbit {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: radial-gradient(circle at 50% 0%, rgba(58, 99, 249, 0.08) 0%, transparent 70%);
}

.crest {
  width: 100%;
  background: rgba(20, 28, 46, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.sigil {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sigil img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.sigil span {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.weave {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.trace {
  padding: 8px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: all 0.15s ease;
}

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

.trace.active {
  color: #ffffff;
  background: var(--hue-primary);
  font-weight: 600;
}

.apex {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.beacon {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px;
  background: radial-gradient(circle at 10% 20%, rgba(58, 99, 249, 0.15) 0%, transparent 60%), var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  align-items: center;
}

.sheath {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.ribbon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(58, 99, 249, 0.15);
  border: 1px solid rgba(58, 99, 249, 0.3);
  border-radius: 20px;
  color: var(--hue-accent);
  font-size: 0.85rem;
  font-weight: 600;
  width: fit-content;
}

.rune {
  white-space: normal;
  color: #ffffff;
  letter-spacing: -0.02em;
}

h1.rune {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.25;
}

h2.rune {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 12px;
}

h3.rune {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.4;
}

.echo {
  color: var(--text-muted);
  font-size: 1.025rem;
  line-height: 1.7;
}

.cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.pulse {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background-color: var(--hue-primary);
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-md);
  box-shadow: 0 0 25px rgba(58, 99, 249, 0.35);
  transition: all 0.15s ease;
  border: none;
  cursor: pointer;
  min-width: 0;
}

.pulse:hover {
  background-color: var(--hue-primary-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(58, 99, 249, 0.5);
}

.warp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all 0.15s ease;
  min-width: 0;
}

.warp:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.visor {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--bg-surface-elevated);
}

.visor img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.matrix {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 36px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.vector {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  width: 100%;
}

.pod {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.15s ease, border-color 0.15s ease;
  min-width: 0;
}

.pod:hover {
  transform: translateY(-4px);
  border-color: rgba(58, 99, 249, 0.4);
}

.strand {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.glyph {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--hue-accent);
}

.glyph svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.capsule {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  background: rgba(11, 15, 25, 0.6);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-family: monospace;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.vault {
  background: linear-gradient(135deg, rgba(20, 28, 46, 0.9) 0%, rgba(27, 38, 62, 0.9) 100%);
  border: 1px solid rgba(0, 210, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.spark {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.shard {
  background: rgba(11, 15, 25, 0.5);
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: var(--radius-md);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.realm {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.datum {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.datum-pod {
  background: var(--bg-surface-elevated);
  padding: 24px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--hue-primary);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.datum-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--hue-accent);
}

.stem {
  background: #070a12;
  border-top: 1px solid var(--border);
  padding: 48px 24px 32px;
  margin-top: auto;
}

.nadir {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
}

.anchor {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
}

.anchor span.brand {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
}

.anchor-weave {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

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

.anchor-col h4 {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
}

.anchor-col a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.anchor-col a:hover {
  color: var(--hue-accent);
}

.echo {
  max-width: 1200px;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  color: var(--text-dim);
  font-size: 0.85rem;
}

details.pod {
  cursor: pointer;
}

details.pod summary {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  outline: none;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

details.pod summary::-webkit-details-marker {
  display: none;
}

details.pod summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--hue-accent);
}

details.pod[open] summary::after {
  content: "−";
}

@media (max-width: 768px) {
  .beacon {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 24px;
  }

  .matrix, .vault, .realm {
    padding: 24px;
  }

  .vector, .spark, .datum {
    grid-template-columns: 1fr;
  }

  .nexus {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .weave {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  h1.rune {
    font-size: 1.75rem;
  }

  h2.rune {
    font-size: 1.35rem;
  }
}

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

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

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

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

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

.nexus-crest a.nexus-trace {
    --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;
}

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

.nexus-crest{
            position: sticky;
            top: 0;
            z-index: 100;
            background-color: rgba(11, 15, 25, 0.88);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            padding: 0 24px;
        }

.nexus-crest .nexus-nexus{
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
            flex-wrap: wrap;
        }

.nexus-crest .nexus-sigil{
            display: flex;
            align-items: center;
            gap: 12px;
            min-width: 0;
        }

.nexus-crest .nexus-sigil img{
            height: 38px;
            width: auto;
            display: block;
        }

.nexus-crest .nexus-sigil span{
            font-size: 1.25rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #ffffff 30%, #00d2ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

.nexus-crest .nexus-weave{
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

.nexus-crest .nexus-trace{
            padding: 8px 16px;
            border-radius: 7px;
            font-size: 0.925rem;
            font-weight: 500;
            color: #94a3b8;
            border: 1px solid transparent;
        }

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

.nexus-crest .nexus-trace.active{
            color: #ffffff;
            background-color: rgba(58, 99, 249, 0.15);
            border-color: rgba(58, 99, 249, 0.35);
        }

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

.nexus-crest .nexus-nexus{
                height: auto;
                padding: 16px 0;
                gap: 16px;
            }

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

.nexus-crest .nexus-trace{
                white-space: nowrap;
                padding: 6px 12px;
                font-size: 0.85rem;
            }}

.nexus-crest {
    background: rgb(11, 15, 25);
    background-image: none;
}

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

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

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

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

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

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

.nadir-stem{
            background-color: #070a12;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 48px 24px 32px;
            margin-top: 40px;
        }

.nadir-stem .nadir-anchor{
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

.nadir-stem .nadir-datum{
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

.nadir-stem .nadir-datum-brand{
            font-size: 1.25rem;
            font-weight: 700;
            color: #ffffff;
        }

.nadir-stem .nadir-datum-weave{
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

.nadir-stem .nadir-datum-trace{
            font-size: 0.875rem;
            color: #64748b;
        }

.nadir-stem .nadir-datum-trace:hover{
            color: #94a3b8;
        }

.nadir-stem .nadir-nadir{
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
            font-size: 0.85rem;
            color: #64748b;
        }