:root {
  --primary: #5a5af6;
  --primary-hover: #4545e6;
  --primary-glow: rgba(90, 90, 246, 0.25);
  --bg-light: #f6f8fc;
  --surface-white: #ffffff;
  --surface-card: #f0f3fa;
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-sub: #64748b;
  --radius: 20px;
  --danger-light: #fef2f2;
  --danger-border: #fecaca;
  --danger-text: #991b1b;
  --success-light: #f0fdf4;
  --success-border: #bbf7d0;
  --success-text: #166534;
}

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

/* Nav styles matching homepage exactly */
.vultr {
  background-color: var(--surface-white);
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
}

.vultr-trace {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.sigil {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.sigil img {
  height: 38px;
  width: auto;
}

.sigil-talis {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.vultr [role="navigation"] {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.vultr-glyph {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  transition: all 0.35s ease;
  min-width: 0;
}

.vultr-glyph:hover {
  color: var(--primary);
  background-color: rgba(90, 90, 246, 0.06);
}

.vultr-glyph.active {
  color: var(--primary);
  background-color: rgba(90, 90, 246, 0.1);
  font-weight: 700;
}

/* Page Outer Wrapper */
.enclave-prism {
  width: 100%;
  overflow-x: hidden;
}

/* Main Container */
.enclave {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 5rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 3rem;
}

/* Display / Intro Hero Unit */
.glint {
  background: linear-gradient(180deg, #ffffff 0%, #f0f4ff 100%);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 3.5rem 2rem;
  box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.06);
  text-align: center;
}

.aura {
  max-width: 820px;
  margin: 0 auto;
}

.coda {
  display: inline-block;
  background-color: rgba(90, 90, 246, 0.1);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.talis-enclave {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.3;
  color: var(--text-main);
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.vesta-haven {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Articles Layouts */
.haven-primus,
.haven-glint,
.haven-aura {
  background-color: var(--surface-white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.04);
}

.sphere {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 1.75rem;
}

.talis-haven {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

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

/* Contrast Panels (Section 1) */
.nexus {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  margin-top: 1rem;
}

.vaulty,
.vaulty-dacty {
  flex: 1 1 340px;
  min-width: 0;
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 1.5rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.vaulty {
  background-color: var(--danger-light);
  border: 1px solid var(--danger-border);
}

.vaulty-dacty {
  background-color: var(--success-light);
  border: 1px solid var(--success-border);
  box-shadow: 0 10px 25px rgba(22, 101, 52, 0.08);
}

.vaulty:hover,
.vaulty-dacty:hover {
  transform: translateY(-4px);
}

.coda-bad {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--danger-text);
  border-bottom: 2px solid var(--danger-border);
  padding-bottom: 0.75rem;
}

.coda-good {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--success-text);
  border-bottom: 2px solid var(--success-border);
  padding-bottom: 0.75rem;
}

.cipher-echo {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-start;
}

.notus-bad,
.notus-good {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.notus-bad {
  background-color: #fee2e2;
  color: #dc2626;
}

.notus-good {
  background-color: #dcfce7;
  color: #16a34a;
}

.talis-echo {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.35rem;
}

.vesta-sub {
  font-size: 0.925rem;
  color: var(--text-sub);
  line-height: 1.6;
}

/* Triple Grid (Section 2) */
.nexus-triple {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1rem;
}

.nexus-triple .vaulty {
  background-color: var(--surface-card);
  border: 1px solid #e2e8f0;
  flex: 1 1 280px;
}

.notus-aura {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(90, 90, 246, 0.15) 0%, rgba(90, 90, 246, 0.05) 100%);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.talis-vaulty {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.4;
}

/* Double Grid & Wide Card (Section 3) */
.nexus-double {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1rem;
}

.cipher {
  flex: 1 1 340px;
  min-width: 0;
  background-color: var(--bg-light);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.cipher:hover {
  transform: translateY(-3px);
  border-color: var(--primary-glow);
}

.cipher-wide {
  flex: 1 1 100%;
}

.coda-sigil {
  align-self: flex-start;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  background-color: rgba(90, 90, 246, 0.08);
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
}

/* Action Aside Unit */
.primus-coda {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
  border-radius: var(--radius);
  padding: 3.5rem 2.5rem;
  color: #ffffff;
  box-shadow: 0 15px 35px rgba(30, 27, 75, 0.2);
}

.aura-haven {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.talis-pulsar {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.vesta-pulsar {
  font-size: 1.05rem;
  color: #c7d2fe;
  line-height: 1.6;
}

.nexus-pulsar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
  justify-content: center;
}

.pulsar-primus {
  text-decoration: none;
  background-color: var(--primary);
  color: #ffffff;
  font-weight: 600;
  padding: 0.95rem 2.2rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(90, 90, 246, 0.35);
  transition: all 0.35s ease;
  min-width: 0;
}

.pulsar-primus:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(90, 90, 246, 0.45);
}

.pulsar-glint {
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-weight: 600;
  padding: 0.95rem 2.2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.35s ease;
  min-width: 0;
}

.pulsar-glint:hover {
  background-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

/* Footer Section matching homepage style */
.stasis {
  background-color: var(--surface-white);
  border-top: 1px solid #e2e8f0;
  padding: 4rem 1.5rem 2rem 1.5rem;
  margin-top: 2rem;
}

.stasis-orbit {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #f1f5f9;
}

.basil {
  max-width: 380px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 1rem;
}

.vesta-stasis {
  font-size: 0.925rem;
  color: var(--text-sub);
  line-height: 1.6;
}

.basil-nexus {
  display: flex;
  flex-wrap: wrap;
  gap: 3.5rem;
}

.basil-wayfar {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 0.85rem;
}

.talis-basil {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.stasis-orbit-sub {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  text-align: center;
}

.vesta-vesta {
  font-size: 0.875rem;
  color: var(--text-sub);
}

/* Responsive Overrides */
@media (max-width: 768px) {
  .vultr-trace {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .vultr [role="navigation"] {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.25rem;
  }
  .enclave {
    padding: 1.5rem 1rem 3rem 1rem;
    gap: 2rem;
  }
  .glint,
  .haven-primus,
  .haven-glint,
  .haven-aura,
  .primus-coda {
    padding: 2rem 1.25rem;
  }
  .nexus,
  .nexus-triple,
  .nexus-double {
    flex-direction: column;
  }
  .cipher-wide {
    grid-column: auto;
  }
  .basil-nexus {
    gap: 2rem;
    flex-direction: column;
  }
}

.vultr-vultr {
    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);
}
.vultr-vultr,
.vultr-vultr *,
.vultr-vultr *::before,
.vultr-vultr *::after {
    box-sizing: border-box;
}

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

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

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

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

.vultr-vultr a.vultr-vultr-glyph {
    --aisite-shell-nav-padding: 0.55rem 1.1rem;
    --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;
}

.vultr-vultr a.vultr-vultr-glyph,
.vultr-vultr a.vultr-vultr-glyph:hover,
.vultr-vultr a.vultr-vultr-glyph:focus,
.vultr-vultr a.vultr-vultr-glyph:active,
.vultr-vultr a.vultr-vultr-glyph.active,
.vultr-vultr a.vultr-vultr-glyph[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);
}

.vultr-vultr{
            position: sticky;
            top: 0;
            z-index: 1000;
            background-color: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid #e2e8f0;
        }

.vultr-vultr .vultr-vultr-trace{
            max-width: 1280px;
            margin: 0 auto;
            padding: 0.9rem 1.5rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }

.vultr-vultr .vultr-sigil{
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
        }

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

.vultr-vultr .vultr-sigil-talis{
            font-size: 1.25rem;
            font-weight: 700;
            color: #0b0f19;
            letter-spacing: -0.02em;
        }

.vultr-vultr .vultr-vultr-glyph{
            text-decoration: none;
            color: #475569;
            font-size: 0.95rem;
            font-weight: 500;
            padding: 0.55rem 1.1rem;
            border-radius: 12px;
            transition: all 0.35s ease;
            min-width: 0;
        }

.vultr-vultr .vultr-vultr-glyph:hover{
            color: #5a5af6;
            background-color: rgba(90, 90, 246, 0.06);
        }

.vultr-vultr .vultr-vultr-glyph.active{
            color: #5a5af6;
            background-color: rgba(90, 90, 246, 0.12);
            font-weight: 600;
        }

@media (max-width: 768px){.vultr-vultr .vultr-vultr-trace{
                flex-direction: column;
                gap: 1rem;
            }}

.vultr-vultr {
    background: rgb(255, 255, 255);
    background-image: none;
}

.stasis-stasis {
    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);
}
.stasis-stasis,
.stasis-stasis *,
.stasis-stasis *::before,
.stasis-stasis *::after {
    box-sizing: border-box;
}

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

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

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

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

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

.stasis-stasis .stasis-vesta-desc{
            font-size: 0.925rem;
            color: #64748b;
            line-height: 1.5;
        }

.stasis-stasis{
            background-color: #0b0f19;
            color: #94a3b8;
            border-top: 1px solid #1e293b;
            padding: 4rem 1.5rem 2.5rem 1.5rem;
        }

.stasis-stasis .stasis-stasis-orbit{
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
            justify-content: space-between;
            margin-bottom: 3rem;
        }

.stasis-stasis .stasis-orbit-brand{
            flex: 1 1 320px;
            min-width: 0;
        }

.stasis-stasis .stasis-brand-name{
            font-size: 1.4rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 0.8rem;
        }

.stasis-stasis .stasis-orbit-vultr{
            display: flex;
            flex-wrap: wrap;
            gap: 2.5rem;
        }

.stasis-stasis .stasis-crypt-col{
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            min-width: 140px;
        }

.stasis-stasis .stasis-talis-col{
            font-size: 0.95rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

.stasis-stasis .stasis-glyph-orbit{
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.35s ease;
        }

.stasis-stasis .stasis-glyph-orbit:hover{
            color: #ffffff;
        }

.stasis-stasis .stasis-coda-bottom{
            max-width: 1280px;
            margin: 0 auto;
            border-top: 1px solid #1e293b;
            padding-top: 2rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            font-size: 0.875rem;
        }