/* Ministry lane jawdrop v2 — Creation Portal parity */

:root {
  --mn-void: #010306;
  --mn-ivory: #fff7d9;
  --mn-gold: #f0c85a;
  --mn-gold-dim: #d6a935;
  --mn-muted: #9db4ca;
  --mn-serif: Georgia, "Times New Roman", serif;
  --mn-ui: Inter, ui-sans-serif, system-ui, sans-serif;
  --mn-accent: 214, 177, 82;
}

body.mn-lane-dedicated #masthead,
body.mn-lane-dedicated #colophon,
body.mn-lane-dedicated #ast-scroll-top,
body.mn-lane-dedicated .ast-scroll-top-icon,
body.mn-lane-dedicated .ast-scroll-to-top-right,
body.mn-lane-dedicated #ast-desktop-header,
body.mn-lane-dedicated #ast-mobile-header,
body.mn-lane-dedicated .ast-mobile-header-wrap,
body.mn-lane-dedicated .site-header,
body.mn-lane-dedicated .site-footer,
body.mn-lane-dedicated .dm-site-header,
body.mn-lane-dedicated .dm-site-footer,
body.mn-lane-dedicated .dm-route-atlas,
body.mn-lane-dedicated .dm-pathfinder,
body.mn-lane-dedicated .ps-portal-lanes,
body.mn-lane-dedicated .ps-witness-rail,
body.mn-lane-dedicated .ps-route-dock,
body.mn-lane-dedicated #ps-cosmos-lite,
body.mn-lane-dedicated .ps-nebula-wash,
body.mn-lane-dedicated .ps-film-grain,
body.mn-lane-dedicated .ps-light-pillar {
  display: none !important;
}

body.mn-lane-dedicated .site-content,
body.mn-lane-dedicated .ast-container,
body.mn-lane-dedicated .content-area.primary,
body.mn-lane-dedicated .entry-content {
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
}

body.mn-lane-dedicated {
  background: var(--mn-void);
  color: var(--mn-ivory);
}

.mn-wrap {
  background: var(--mn-void);
  color: var(--mn-ivory);
  font-family: var(--mn-ui);
}

.mn-page {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  isolation: isolate;
  overflow: hidden;
}

.mn-page[data-phase="void"] .mn-ui { opacity: 0; }
.mn-page[data-phase="light"] .mn-ui { opacity: 0.35; }
.mn-page[data-phase="ring"] .mn-ui,
.mn-page[data-phase="ready"] .mn-ui { opacity: 1; }

#mn-cosmos {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.mn-film-grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.mn-nebula-wash {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 42% at var(--mn-mx, 68%) var(--mn-my, 38%), rgba(72, 215, 202, 0.14), transparent 58%),
    radial-gradient(ellipse 40% 35% at calc(var(--mn-mx, 68%) - 12%) calc(var(--mn-my, 38%) + 8%), rgba(118, 168, 255, 0.1), transparent 52%),
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(214, 169, 53, 0.06), transparent 55%);
  transition: background 0.12s linear;
}

.mn-void-curtain {
  position: fixed;
  inset: 0;
  z-index: 20;
  background: #000;
  pointer-events: none;
  transition: opacity 1.8s ease;
}

.mn-page[data-phase="light"] .mn-void-curtain,
.mn-page[data-phase="ring"] .mn-void-curtain,
.mn-page[data-phase="ready"] .mn-void-curtain {
  opacity: 0;
}

.mn-light-pillar {
  position: fixed;
  top: -8%;
  left: 50%;
  z-index: 3;
  width: min(18vw, 220px);
  height: 105vh;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 8%, rgba(255, 252, 235, 0.95), transparent 22%),
    linear-gradient(180deg, rgba(255, 247, 217, 0.55), rgba(240, 200, 90, 0.12) 45%, transparent 100%);
  filter: blur(0.5px);
  transform: translateX(-50%) skewX(-3deg) scaleY(0);
  transform-origin: top center;
  opacity: 0;
  mix-blend-mode: screen;
}

.mn-page[data-phase="light"] .mn-light-pillar,
.mn-page[data-phase="ring"] .mn-light-pillar,
.mn-page[data-phase="ready"] .mn-light-pillar {
  animation: mnLightPillar 2.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes mnLightPillar {
  0% { opacity: 0; transform: translateX(-50%) skewX(-3deg) scaleY(0); }
  35% { opacity: 0.85; transform: translateX(-50%) skewX(-3deg) scaleY(0.72); }
  100% { opacity: 0.42; transform: translateX(-50%) skewX(-3deg) scaleY(1); }
}

.mn-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.6rem;
  background: linear-gradient(180deg, rgba(1, 3, 6, 0.82), transparent);
}

.mn-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--mn-gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-decoration: none;
  text-transform: uppercase;
}

.mn-brand-mark {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--mn-gold), transparent 70%);
  box-shadow: 0 0 16px rgba(240, 200, 90, 0.8);
}

.mn-header-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: flex-end;
  max-width: min(100%, 36rem);
}

.mn-header-nav a {
  border: 1px solid rgba(255, 247, 217, 0.12);
  border-radius: 999px;
  color: var(--mn-muted);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 0.42rem 0.68rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.mn-header-nav a:hover,
.mn-header-nav a:focus-visible {
  border-color: rgba(var(--mn-accent), 0.45);
  color: var(--mn-gold);
  outline: none;
}

.mn-header-nav a.is-active {
  border-color: rgba(var(--mn-accent), 0.55);
  box-shadow: 0 0 18px rgba(240, 200, 90, 0.14);
  color: var(--mn-gold);
}

.mn-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 247, 217, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--mn-ivory);
  cursor: pointer;
}

.mn-nav-toggle svg {
  width: 20px;
  height: 20px;
}

.mn-page.is-nav-open .mn-header-nav {
  display: flex;
}

.mn-ui {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(280px, 34vw) 1fr minmax(260px, 28vw);
  align-items: center;
  gap: 1rem;
  height: 100%;
  padding: 5.5rem 2rem 4.5rem;
  pointer-events: none;
  transition: opacity 1.2s ease;
}

.mn-ui > * { pointer-events: auto; }

.mn-proclamation {
  align-self: center;
  max-width: 22rem;
  opacity: 0;
  transform: translateY(24px);
}

.mn-page[data-phase="ring"] .mn-proclamation,
.mn-page[data-phase="ready"] .mn-proclamation {
  animation: mnFadeUp 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

.mn-kicker {
  color: var(--mn-gold);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
}

.mn-headline {
  font-family: var(--mn-serif);
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  font-weight: 400;
  line-height: 1.02;
  margin: 0;
  text-shadow: 0 0 48px rgba(240, 200, 90, 0.15);
}

.mn-headline span { display: block; color: var(--mn-ivory); }
.mn-headline em { color: var(--mn-gold); font-style: italic; }
.mn-headline-line { display: block; word-break: normal; overflow-wrap: normal; }
.mn-headline-accent { white-space: nowrap; }

.mn-lede {
  color: var(--mn-muted);
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 1rem 0 0;
  max-width: 34ch;
}

.mn-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.35rem;
}

.mn-cta {
  appearance: none;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 0.72rem 1.15rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mn-cta-primary {
  background: linear-gradient(135deg, #f5d56b, #c8942a);
  border: none;
  box-shadow: 0 8px 32px rgba(214, 169, 53, 0.35);
  color: #1a1204;
}

.mn-cta-ghost {
  background: rgba(255, 247, 217, 0.04);
  border: 1px solid rgba(255, 247, 217, 0.18);
  color: var(--mn-ivory);
}

.mn-cta:hover { transform: translateY(-2px); }

.mn-cta:focus-visible {
  outline: 2px solid rgba(240, 200, 90, 0.75);
  outline-offset: 3px;
}

.mn-scripture {
  color: rgba(240, 200, 90, 0.75);
  font-family: var(--mn-serif);
  font-size: 0.82rem;
  font-style: italic;
  margin: 1.2rem 0 0;
}

.mn-portal-stage {
  position: relative;
  justify-self: center;
  width: min(58vw, 680px);
  aspect-ratio: 1;
  opacity: 0;
  transform: scale(0.88);
}

.mn-page[data-phase="ring"] .mn-portal-stage,
.mn-page[data-phase="ready"] .mn-portal-stage {
  animation: mnPortalReveal 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}

@keyframes mnPortalReveal { to { opacity: 1; transform: scale(1); } }
@keyframes mnFadeUp { to { opacity: 1; transform: translateY(0); } }

.mn-orbit-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.mn-orbit-svg ellipse {
  fill: none;
  stroke-width: 1;
  transform-origin: 50% 50%;
}

.mn-orbit-a { stroke: rgba(240, 200, 90, 0.28); animation: mnOrbitSpin 48s linear infinite; }
.mn-orbit-b { stroke: rgba(72, 215, 202, 0.18); animation: mnOrbitSpin 72s linear infinite reverse; }
.mn-orbit-c { stroke: rgba(118, 168, 255, 0.12); animation: mnOrbitSpin 96s linear infinite; }

@keyframes mnOrbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.mn-orbit-group {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.mn-gospel-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: clamp(120px, 14vw, 168px);
  height: clamp(120px, 14vw, 168px);
  border: 1.5px solid rgba(240, 200, 90, 0.55);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 32%, rgba(240, 200, 90, 0.28), rgba(2, 8, 18, 0.94) 58%);
  box-shadow: 0 0 60px rgba(240, 200, 90, 0.24), 0 0 120px rgba(72, 215, 202, 0.1), inset 0 0 40px rgba(240, 200, 90, 0.1);
  color: inherit;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transform: translate(-50%, -50%);
  animation: mnGospelBreath 5s ease-in-out infinite;
}

@keyframes mnGospelBreath {
  0%, 100% { box-shadow: 0 0 48px rgba(240, 200, 90, 0.2), inset 0 0 36px rgba(240, 200, 90, 0.08); }
  50% { box-shadow: 0 0 72px rgba(240, 200, 90, 0.36), inset 0 0 48px rgba(240, 200, 90, 0.14); }
}

.mn-gospel-kicker {
  color: rgba(157, 180, 202, 0.88);
  font-size: 0.48rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.mn-gospel-name {
  color: var(--mn-gold);
  font-family: var(--mn-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1;
  margin: 0.15rem 0;
  text-shadow: 0 0 32px rgba(240, 200, 90, 0.4);
}

.mn-gospel-sub {
  color: rgba(157, 180, 202, 0.78);
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mn-node {
  --node-accent: 214, 177, 82;
  position: absolute;
  z-index: 6;
  display: grid;
  gap: 0.35rem;
  justify-items: center;
  width: 5rem;
  border: none;
  background: none;
  color: inherit;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), filter 0.25s ease;
}

.mn-page[data-phase="ring"] .mn-node,
.mn-page[data-phase="ready"] .mn-node {
  transform: translate(-50%, -50%) scale(1);
}

.mn-node-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border: 1.5px solid rgba(var(--node-accent), 0.55);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 38%, rgba(var(--node-accent), 0.38), rgba(3, 8, 16, 0.88) 62%);
  box-shadow: inset 0 0 24px rgba(var(--node-accent), 0.16), 0 0 32px rgba(var(--node-accent), 0.22), 0 12px 40px rgba(0, 0, 0, 0.45);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.mn-node-icon::before {
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(var(--node-accent), 0.2);
  border-radius: inherit;
  content: "";
  animation: mnNodePulse 4.2s ease-in-out infinite;
  animation-delay: var(--node-delay, 0s);
}

@keyframes mnNodePulse {
  0%, 100% { opacity: 0.35; transform: scale(0.92); }
  50% { opacity: 0.85; transform: scale(1.06); }
}

.mn-node-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: rgba(255, 247, 217, 0.92);
  fill: none;
  stroke-width: 1.8;
}

.mn-node-label {
  color: rgba(237, 244, 255, 0.9);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.85);
  text-transform: uppercase;
}

.mn-node.active .mn-node-icon,
.mn-node:hover .mn-node-icon,
.mn-node:focus-visible .mn-node-icon {
  box-shadow: inset 0 0 32px rgba(var(--node-accent), 0.28), 0 0 52px rgba(var(--node-accent), 0.42), 0 16px 48px rgba(0, 0, 0, 0.5);
  transform: scale(1.12);
}

.mn-beam {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(var(--beam-accent, 214, 177, 82), 0.65), transparent);
  opacity: 0;
  transform-origin: left center;
  transition: opacity 0.3s ease, width 0.35s ease, transform 0.35s ease;
}

.mn-beam.visible { opacity: 0.55; }

.mn-steward {
  align-self: center;
  max-width: 26rem;
  padding: 1.65rem 1.5rem;
  border: 1px solid rgba(255, 247, 217, 0.12);
  border-radius: 18px;
  backdrop-filter: blur(14px);
  background: linear-gradient(145deg, rgba(8, 14, 24, 0.72), rgba(4, 8, 14, 0.42));
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateX(20px);
}

.mn-page[data-phase="ready"] .mn-steward {
  animation: mnFadeRight 1s cubic-bezier(0.22, 1, 0.36, 1) 0.8s forwards;
}

@keyframes mnFadeRight { to { opacity: 1; transform: translateX(0); } }

.mn-steward-kicker {
  color: var(--mn-gold-dim);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
}

.mn-steward-title {
  font-family: var(--mn-serif);
  font-size: 1.85rem;
  margin: 0 0 0.65rem;
}

.mn-steward-copy {
  color: var(--mn-muted);
  font-size: 0.86rem;
  line-height: 1.55;
  margin: 0 0 1rem;
}

.mn-steward-meta {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.mn-steward-meta div {
  border-left: 2px solid rgba(var(--mn-accent), 0.45);
  padding-left: 0.65rem;
}

.mn-steward-meta strong {
  display: block;
  color: var(--mn-gold);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mn-steward-meta span {
  color: rgba(157, 180, 202, 0.82);
  font-size: 0.72rem;
}

.mn-steward-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.mn-scale-fact {
  position: fixed;
  bottom: 4.5rem;
  left: 2rem;
  z-index: 25;
  opacity: 0;
}

.mn-page[data-phase="ready"] .mn-scale-fact {
  animation: mnFadeUp 0.8s ease 1.2s forwards;
}

.mn-scale-count {
  display: block;
  color: var(--mn-gold);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.mn-scale-label {
  color: var(--mn-muted);
  display: block;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-top: 0.2rem;
  text-transform: uppercase;
}

.mn-stats-rail {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 25;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  padding: 0.85rem 1.5rem;
  border-top: 1px solid rgba(255, 247, 217, 0.08);
  background: linear-gradient(180deg, transparent, rgba(2, 6, 12, 0.88));
  opacity: 0;
}

.mn-page[data-phase="ready"] .mn-stats-rail {
  animation: mnFadeUp 0.8s ease 1.4s forwards;
}

.mn-stat { text-align: center; }
.mn-stat strong {
  color: var(--mn-gold);
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.mn-stat span {
  color: rgba(157, 180, 202, 0.72);
  display: block;
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-top: 0.15rem;
  text-transform: uppercase;
}

.mn-rift {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(255, 247, 217, 0.35), transparent 42%);
  opacity: 0;
  mix-blend-mode: screen;
}

.mn-rift.flash { animation: mnRift 0.55s ease-out forwards; }

@keyframes mnRift {
  0% { opacity: 0; transform: scale(0.6); }
  30% { opacity: 0.75; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.15); }
}

.mn-chapter {
  position: relative;
  z-index: 5;
  padding: clamp(3rem, 8vw, 5rem) clamp(1rem, 3vw, 2rem);
  background: linear-gradient(180deg, #010306 0%, #07040f 100%);
  border-top: 1px solid rgba(240, 200, 90, 0.12);
}

.mn-chapter-inner {
  margin: 0 auto;
  max-width: 56rem;
}

.mn-chapter h2 {
  font-family: var(--mn-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0.35rem 0 0.75rem;
}

.mn-chapter-lede {
  color: var(--mn-muted);
  line-height: 1.6;
  margin: 0 0 2rem;
  max-width: 52ch;
}

.mn-covenant-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.mn-covenant-grid article {
  backdrop-filter: blur(12px);
  background: linear-gradient(145deg, rgba(8, 14, 24, 0.78), rgba(4, 8, 14, 0.52));
  border: 1px solid rgba(var(--mn-accent), 0.16);
  border-radius: 18px;
  padding: 1.25rem 1.2rem;
}

.mn-covenant-grid article > span {
  color: var(--mn-gold);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.mn-covenant-grid h3 {
  font-family: var(--mn-serif);
  font-size: 1.25rem;
  font-weight: 400;
  margin: 0.45rem 0 0.55rem;
}

.mn-covenant-grid p {
  color: var(--mn-muted);
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0 0 0.85rem;
}

.mn-covenant-grid a {
  color: #48d7ca;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .mn-ui {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    justify-items: center;
    overflow-y: auto;
    padding-top: 4.5rem;
    padding-bottom: 7rem;
    pointer-events: auto;
  }

  .mn-header {
    align-items: flex-start;
    gap: 0.75rem;
  }

  .mn-header-nav {
    justify-content: center;
    max-width: none;
    width: 100%;
  }

  .mn-proclamation { max-width: 34rem; text-align: center; }
  .mn-lede { max-width: none; }
  .mn-cta-row { justify-content: center; }
  .mn-portal-stage { width: min(92vw, 420px); }
  .mn-steward { max-width: 34rem; width: 100%; }
  .mn-scale-fact { left: 50%; transform: translateX(-50%); text-align: center; }
  .mn-stats-rail { grid-template-columns: repeat(3, 1fr); row-gap: 0.5rem; }
}

@media (max-width: 900px) {
  .mn-nav-toggle {
    display: inline-grid;
  }

  .mn-header-nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.35rem);
    right: 1rem;
    flex-direction: column;
    gap: 0.45rem;
    padding: 0.75rem;
    border-radius: 14px;
    background: rgba(1, 3, 6, 0.96);
    border: 1px solid rgba(255, 247, 217, 0.14);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    z-index: 40;
  }

  .mn-header {
    position: relative;
  }
}

@media (max-width: 640px) {
  .mn-header { padding: 0.85rem 1rem; }
  .mn-header-nav a { font-size: 0.52rem; padding: 0.38rem 0.58rem; }
  .mn-node { width: 4.25rem; }
  .mn-node-icon { width: 3rem; height: 3rem; }
  .mn-node-label { font-size: 0.5rem; letter-spacing: 0.12em; }
  .mn-stats-rail { padding-inline: 0.85rem; }
  .mn-covenant-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .mn-page *, .mn-page *::before, .mn-page *::after { animation: none !important; transition: none !important; }
  .mn-void-curtain { opacity: 0 !important; }
  .mn-ui, .mn-proclamation, .mn-portal-stage, .mn-steward, .mn-scale-fact, .mn-stats-rail { opacity: 1 !important; transform: none !important; }
  .mn-node { transform: translate(-50%, -50%) scale(1) !important; }
}
