/* ============================================================
   RADIAL NAV — shared across index.html, about.html, dashboard.html
   Tokens reuse the Kaspa Lab system: teal #70c7ba on near-black #080a0d
   ============================================================ */

:root {
  --rn-bg: #080a0d;
  --rn-teal: #70c7ba;
  --rn-teal-soft: rgba(112, 199, 186, 0.15);
  --rn-teal-ghost: rgba(112, 199, 186, 0.04);
  --rn-line: rgba(255, 255, 255, 0.08);
  --rn-white: #ffffff;
  --rn-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --rn-sans: "Space Grotesk", system-ui, -apple-system, Segoe UI, sans-serif;
  --rn-spring: cubic-bezier(.34, 1.56, .64, 1);
}

/* ---------- TRIGGER (persistent, bottom-center) ---------- */

.rn-trigger {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 168px;
  height: 84px;
  background: var(--rn-bg);
  border: 1px solid rgba(112, 199, 186, 0.22);
  border-bottom: 0;
  border-radius: 168px 168px 0 0;
  z-index: 998;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-top: 14px;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  box-shadow:
    0 -2px 24px rgba(112, 199, 186, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.rn-trigger:hover {
  transform: translateX(-50%) translateY(-3px);
  border-color: rgba(112, 199, 186, 0.55);
  box-shadow:
    0 -6px 32px rgba(112, 199, 186, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.rn-trigger .rn-bar {
  display: block;
  width: 56px;
  height: 2px;
  background: var(--rn-teal);
  box-shadow: 0 0 8px rgba(112, 199, 186, 0.65);
  transition: width 0.25s ease, transform 0.25s ease;
}
.rn-trigger:hover .rn-bar:nth-child(2) { width: 70px; }
.rn-trigger:hover .rn-bar:nth-child(3) { width: 42px; }

/* Tiny label above bars */
.rn-trigger .rn-trigger-label {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%, -10px);
  font-family: var(--rn-mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--rn-teal);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
  text-shadow: 0 0 10px rgba(112, 199, 186, 0.6);
}
.rn-trigger:hover .rn-trigger-label {
  opacity: 1;
  transform: translate(-50%, -16px);
}

/* Soft ripple emanating from the trigger (subtle, looping) */
.rn-trigger::before,
.rn-trigger::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  border: 1px solid rgba(112, 199, 186, 0.35);
  transform: translate(-50%, 50%) scale(0.6);
  opacity: 0;
  pointer-events: none;
  animation: rnTriggerRipple 3.4s ease-out infinite;
}
.rn-trigger::after { animation-delay: 1.7s; }
@keyframes rnTriggerRipple {
  0%   { transform: translate(-50%, 50%) scale(0.55); opacity: 0; }
  10%  { opacity: 0.7; }
  100% { transform: translate(-50%, 50%) scale(1.6); opacity: 0; }
}

/* hide trigger while overlay is open */
.rn-open .rn-trigger { opacity: 0; pointer-events: none; transform: translateX(-50%) translateY(20px); }

/* Hide trigger while loader / intro is still on screen.
   #loader gets .done, #intro gets .active class (set by intro.js). */
body:has(#loader:not(.done)) .rn-trigger,
body:has(#intro.active) .rn-trigger {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(20px);
}
.rn-trigger {
  transition: transform 0.35s ease, background 0.25s ease, border-color 0.25s ease, opacity 0.35s ease;
}

/* ---------- OVERLAY ---------- */

.rn-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--rn-bg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  overflow: hidden;
  cursor: none; /* match site cursor convention */
}
.rn-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
  cursor: default !important;
}
.rn-overlay.is-closing {
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* Grid background (matches existing .hero-grid-bg vocabulary) */
.rn-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(112, 199, 186, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(112, 199, 186, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}
/* Subtle vignette + grain */
.rn-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
  pointer-events: none;
}

/* Corner brackets — match .hero-corner / .map-corner system */
.rn-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1px solid var(--rn-teal);
  opacity: 0;
  transition: opacity 0.3s ease 0.1s;
  z-index: 5;
}
.rn-overlay.is-open .rn-corner { opacity: 0.7; }
.rn-corner.tl { top: 28px; left: 28px; border-right: 0; border-bottom: 0; }
.rn-corner.tr { top: 28px; right: 28px; border-left: 0; border-bottom: 0; }
.rn-corner.bl { bottom: 28px; left: 28px; border-right: 0; border-top: 0; }
.rn-corner.br { bottom: 28px; right: 28px; border-left: 0; border-top: 0; }

/* Top meta line — mono label, top-center */
.rn-meta {
  position: absolute;
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--rn-mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--rn-teal);
  text-shadow: 0 0 10px rgba(112, 199, 186, 0.5);
  opacity: 0;
  transition: opacity 0.4s ease 0.2s;
  white-space: nowrap;
  z-index: 5;
}
.rn-overlay.is-open .rn-meta { opacity: 0.8; }

.rn-meta-right {
  position: absolute;
  top: 36px;
  right: 64px;
  font-family: var(--rn-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.45);
  opacity: 0;
  transition: opacity 0.4s ease 0.25s;
  z-index: 5;
}
.rn-overlay.is-open .rn-meta-right { opacity: 1; }

/* X close — top-left next to corner bracket */
.rn-close {
  position: absolute;
  top: 26px;
  left: 64px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid rgba(112, 199, 186, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 6;
  color: var(--rn-teal);
  font-family: var(--rn-mono);
  transition: all 0.2s ease;
  opacity: 0;
  transform: scale(0.8);
}
.rn-overlay.is-open .rn-close {
  opacity: 1;
  transform: scale(1);
  transition: all 0.3s ease 0.15s;
}
.rn-close:hover {
  background: var(--rn-teal);
  color: var(--rn-bg);
  box-shadow: 0 0 18px rgba(112, 199, 186, 0.5);
}
.rn-close svg { width: 14px; height: 14px; }

/* ---------- CIRCLE STAGE ---------- */

.rn-stage {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(82vmin, 760px);
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%) scale(0.85);
  opacity: 0;
  transition: transform 0.4s ease-out, opacity 0.3s ease;
  z-index: 2;
}
.rn-overlay.is-open .rn-stage {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.rn-circle {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--rn-teal-ghost);
  border: 1px solid var(--rn-teal-soft);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  overflow: hidden;
}
/* Inner sub-ring for layering */
.rn-circle::before {
  content: '';
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  border: 1px dashed rgba(112, 199, 186, 0.10);
  pointer-events: none;
}
/* Crosshairs (very faint) */
.rn-circle::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent calc(50% - 0.5px), rgba(112, 199, 186, 0.06) calc(50% - 0.5px), rgba(112, 199, 186, 0.06) calc(50% + 0.5px), transparent calc(50% + 0.5px)),
    linear-gradient(0deg, transparent calc(50% - 0.5px), rgba(112, 199, 186, 0.06) calc(50% - 0.5px), rgba(112, 199, 186, 0.06) calc(50% + 0.5px), transparent calc(50% + 0.5px));
  mask-image: radial-gradient(circle at center, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at center, #000 30%, transparent 70%);
  pointer-events: none;
}

/* ---------- RIPPLES — concentric waves emanating from center ---------- */
.rn-ripples {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  transform: translate(-50%, -50%);
  mask-image: radial-gradient(circle at center, #000 0%, #000 88%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle at center, #000 0%, #000 88%, transparent 100%);
}
.rn-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid rgba(112, 199, 186, 0.45);
  transform: translate(-50%, -50%) scale(0.3);
  opacity: 0;
  box-shadow:
    0 0 18px rgba(112, 199, 186, 0.18),
    inset 0 0 18px rgba(112, 199, 186, 0.12);
}
.rn-overlay.is-open .rn-ripple {
  animation: rnRipple 4.2s cubic-bezier(.16, .68, .34, 1) infinite;
}
.rn-overlay.is-open .rn-ripple:nth-child(1) { animation-delay: 0s; }
.rn-overlay.is-open .rn-ripple:nth-child(2) { animation-delay: 0.85s; }
.rn-overlay.is-open .rn-ripple:nth-child(3) { animation-delay: 1.7s; }
.rn-overlay.is-open .rn-ripple:nth-child(4) { animation-delay: 2.55s; }
.rn-overlay.is-open .rn-ripple:nth-child(5) { animation-delay: 3.4s; }

@keyframes rnRipple {
  0%   { transform: translate(-50%, -50%) scale(0.18); opacity: 0; border-width: 2px; }
  8%   { opacity: 0.9; }
  60%  { opacity: 0.35; border-width: 1px; }
  100% { transform: translate(-50%, -50%) scale(8.5); opacity: 0; border-width: 1px; }
}

/* extra: a soft radial pulse glow centered on the K */
.rn-pulse-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(112,199,186,0.22) 0%, rgba(112,199,186,0.05) 40%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
}
.rn-overlay.is-open .rn-pulse-glow {
  animation: rnPulseGlow 4.2s ease-in-out infinite;
}
@keyframes rnPulseGlow {
  0%, 100% { opacity: 0.55; transform: translate(-50%, -50%) scale(0.9); }
  50%      { opacity: 0.9;  transform: translate(-50%, -50%) scale(1.15); }
}

/* ---------- CENTER BUTTON ---------- */

.rn-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--rn-white);
  color: var(--rn-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 4;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.15),
    0 0 40px rgba(112, 199, 186, 0.2),
    0 12px 60px rgba(0, 0, 0, 0.5);
  transition: transform 0.25s var(--rn-spring), box-shadow 0.25s ease;
  border: 0;
  padding: 0;
  font-family: var(--rn-sans);
}
.rn-center:hover {
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.3),
    0 0 60px rgba(112, 199, 186, 0.35),
    0 12px 60px rgba(0, 0, 0, 0.6);
}
.rn-center .rn-center-mark {
  font-family: var(--rn-sans);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -0.05em;
  line-height: 1;
}
.rn-center .rn-center-sub {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--rn-mono);
  font-size: 9px;
  letter-spacing: 0.32em;
  color: var(--rn-teal);
  white-space: nowrap;
  opacity: 0.85;
  text-shadow: 0 0 8px rgba(112, 199, 186, 0.4);
}

/* Orbiting tick marks (12 ticks like a clock face — visual rhythm) */
.rn-ticks {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.rn-ticks span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 8px;
  background: rgba(112, 199, 186, 0.18);
  transform-origin: 0 calc(50% - 0px);
}

/* ---------- PIE SLICES (wedges that light up on item hover) ---------- */
.rn-pies {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  overflow: visible;
}
.rn-pie {
  fill: rgba(112, 199, 186, 0.15);
  stroke: rgba(112, 199, 186, 0.35);
  stroke-width: 0.15;
  opacity: 0;
  transform-origin: 50px 50px;
  transform: scale(0.6);
  transition: opacity 0.25s ease, transform 0.35s var(--rn-spring), filter 0.25s ease;
  filter: drop-shadow(0 0 12px rgba(112, 199, 186, 0));
}
.rn-pie.is-active {
  opacity: 1;
  transform: scale(1);
  filter: drop-shadow(0 0 16px rgba(112, 199, 186, 0.45));
}

/* ---------- ITEMS (radial layout) ---------- */

.rn-items {
  position: absolute;
  inset: 0;
}
.rn-item {
  position: absolute;
  /* left/top set inline via JS as % of the stage */
  width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
  color: var(--rn-white);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.4);
  transition:
    opacity 0.35s ease,
    transform 0.5s var(--rn-spring),
    color 0.2s ease;
  font-family: var(--rn-mono);
}
.rn-overlay.is-open .rn-item {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  transition-delay: var(--d, 0ms);
}

.rn-item .rn-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rn-white);
  transition: color 0.2s ease, transform 0.25s var(--rn-spring), filter 0.25s ease;
}
.rn-item .rn-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
  stroke: none;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.06));
}
.rn-item .rn-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--rn-teal);
  text-transform: uppercase;
  text-shadow: 0 0 6px rgba(112, 199, 186, 0.35);
  white-space: nowrap;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.rn-item:hover .rn-icon {
  color: var(--rn-teal);
  transform: scale(1.10);
  filter: drop-shadow(0 0 8px rgba(112, 199, 186, 0.6));
}
.rn-item:hover .rn-label {
  color: var(--rn-white);
  text-shadow: 0 0 10px rgba(112, 199, 186, 0.7);
}

/* Active item index — tiny mono number above the icon */
.rn-item .rn-index {
  position: absolute;
  top: -6px;
  font-size: 8px;
  letter-spacing: 0.2em;
  color: rgba(112, 199, 186, 0.55);
}

/* ---------- PANELS (slide-in from right) ---------- */

.rn-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(560px, 100vw);
  height: 100vh;
  background: var(--rn-bg);
  border-left: 1px solid rgba(112, 199, 186, 0.25);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(.22, .8, .26, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: -30px 0 80px rgba(0, 0, 0, 0.6);
}
.rn-panel.is-open { transform: translateX(0); }

/* Grid wash inside panel for continuity with overlay */
.rn-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(112, 199, 186, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(112, 199, 186, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.2) 60%, transparent);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.2) 60%, transparent);
  pointer-events: none;
}

.rn-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 36px;
  border-bottom: 1px solid rgba(112, 199, 186, 0.1);
  position: relative;
  z-index: 2;
}
.rn-panel-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--rn-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--rn-teal);
}
.rn-panel-tag-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: 1px solid var(--rn-teal);
  font-size: 10px;
}

.rn-panel-close {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(112, 199, 186, 0.35);
  background: transparent;
  color: var(--rn-teal);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.rn-panel-close:hover {
  background: var(--rn-teal);
  color: var(--rn-bg);
  box-shadow: 0 0 18px rgba(112, 199, 186, 0.5);
}
.rn-panel-close svg { width: 14px; height: 14px; }

.rn-panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 36px;
  position: relative;
  z-index: 2;
  font-family: var(--rn-sans);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}
.rn-panel-body h2 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--rn-white);
}
.rn-panel-body h2 .acc { color: var(--rn-teal); }
.rn-panel-body .eyebrow {
  font-family: var(--rn-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--rn-teal);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.rn-panel-body p { margin: 0 0 20px; color: rgba(255, 255, 255, 0.7); }
.rn-panel-body .lead {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 28px;
}

.rn-panel-body .kv {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 14px 24px;
  font-family: var(--rn-mono);
  font-size: 12px;
  padding: 24px 0;
  border-top: 1px solid rgba(112, 199, 186, 0.12);
  border-bottom: 1px solid rgba(112, 199, 186, 0.12);
  margin: 24px 0;
}
.rn-panel-body .kv dt { color: var(--rn-teal); letter-spacing: 0.18em; }
.rn-panel-body .kv dd { color: rgba(255, 255, 255, 0.85); margin: 0; }

.rn-panel-body ul.bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.rn-panel-body ul.bullets li {
  padding: 14px 0 14px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  color: rgba(255, 255, 255, 0.85);
}
.rn-panel-body ul.bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 22px;
  width: 14px;
  height: 1px;
  background: var(--rn-teal);
  box-shadow: 0 0 6px rgba(112, 199, 186, 0.6);
}
.rn-panel-body ul.bullets li strong {
  display: block;
  font-family: var(--rn-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--rn-teal);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.rn-panel-body .cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 26px;
  background: var(--rn-teal);
  color: var(--rn-bg);
  font-family: var(--rn-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 30px rgba(112, 199, 186, 0.25);
}
.rn-panel-body .cta:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(112, 199, 186, 0.45); }

/* Backdrop while panel open (click outside to close) */
.rn-panel-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.rn-panel-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* prevent body scroll while overlay/panel open */
body.rn-lock { overflow: hidden; }

/* ---------- MOBILE: vertical list instead of radial (≤720px) ---------- */
@media (max-width: 720px) {
  /* hide all circular decoration */
  .rn-circle, .rn-ripples, .rn-ticks, .rn-pulse-glow { display: none; }

  /* stage: fixed square → auto-height flow column */
  .rn-stage {
    width: min(88vw, 380px);
    aspect-ratio: auto;
    height: auto;
    max-height: 86vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .rn-overlay.is-open .rn-stage { transform: translate(-50%, -50%) !important; }

  /* center "K" → header chip instead of absolute centerpiece */
  .rn-center {
    position: relative;
    top: auto;
    left: auto;
    transform: none !important;
    width: 64px;
    height: 64px;
    margin: 0 auto 14px;
  }
  .rn-center:hover { transform: none !important; }
  .rn-center .rn-center-mark { font-size: 24px; }
  .rn-center .rn-center-sub { display: none; }

  /* items: vertical rows — also kills the buggy -46px double-offset */
  .rn-items {
    position: relative;
    inset: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .rn-item {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    margin: 0 !important;
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    gap: 16px;
    padding: 14px 18px;
    border: 1px solid var(--rn-line);
    background: var(--rn-teal-ghost);
  }
  .rn-overlay.is-open .rn-item { transform: none !important; }
  .rn-item:hover { transform: none !important; }
  .rn-item .rn-icon  { width: 34px; height: 34px; flex: 0 0 34px; }
  .rn-item .rn-label { font-size: 12px; letter-spacing: 0.16em; white-space: nowrap; }
  .rn-item .rn-index { position: static; margin-left: auto; }

  .rn-meta-right { display: none; }
  .rn-close { left: 24px; top: 24px; }
}
