/* ==========================================================
   MEGA UPGRADE 2026 — billion-dollar polish layer.
   Toast system, skeleton shimmer, keyboard overlay, billing
   toggle, trust strip, live-telemetry widgets, premium 404.
   Loaded after redesign-2026.css.
   ========================================================== */

/* ── Toast notifications ─────────────────────────────── */
#mu-toast-stack {
  position: fixed;
  top: 24px; right: 24px;
  display: flex; flex-direction: column; gap: 10px;
  z-index: 100001;
  pointer-events: none;
  max-width: min(380px, 90vw);
}
.mu-toast {
  pointer-events: auto;
  background: linear-gradient(180deg, rgba(22,24,32,0.92), rgba(12,14,20,0.92));
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(20px) saturate(1.1);
  -webkit-backdrop-filter: blur(20px) saturate(1.1);
  color: #fff;
  padding: 14px 18px;
  border-radius: 14px;
  font-family: 'Geist', 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.45;
  display: flex; align-items: flex-start; gap: 12px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 30px 60px -22px rgba(0,0,0,0.8),
    0 0 0 1px rgba(0,230,240,0.04);
  transform: translateX(120%);
  opacity: 0;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), opacity .25s ease;
  position: relative;
  overflow: hidden;
}
.mu-toast.show { transform: translateX(0); opacity: 1; }
.mu-toast.leaving { transform: translateX(120%); opacity: 0; }
.mu-toast-icon {
  flex: 0 0 auto;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.mu-toast.success .mu-toast-icon { background: rgba(0,230,160,0.16); color: #00e6a0; }
.mu-toast.error   .mu-toast-icon { background: rgba(255,80,80,0.18); color: #ff6060; }
.mu-toast.info    .mu-toast-icon { background: rgba(0,230,240,0.16); color: var(--rd-accent); }
.mu-toast-title { font-weight: 600; font-size: 13px; margin-bottom: 2px; }
.mu-toast-body  { color: var(--rd-text-dim); font-size: 12px; }
.mu-toast::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; height: 2px;
  background: linear-gradient(90deg, var(--rd-accent), #fff);
  width: 100%;
  transform-origin: left;
  animation: mu-toast-bar 4s linear forwards;
}
.mu-toast.success::after { background: linear-gradient(90deg, #00e6a0, #fff); }
.mu-toast.error::after   { background: linear-gradient(90deg, #ff6060, #ff9090); }
@keyframes mu-toast-bar { from { transform: scaleX(1); } to { transform: scaleX(0); } }

/* ── Skeleton shimmer ─────────────────────────────────── */
.mu-skel {
  position: relative;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  overflow: hidden;
  color: transparent !important;
  user-select: none;
}
.mu-skel::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(110deg,
    transparent 30%,
    rgba(255,255,255,0.08) 50%,
    transparent 70%);
  animation: mu-skel-shimmer 1.4s ease-in-out infinite;
}
@keyframes mu-skel-shimmer {
  from { transform: translateX(-100%); }
  to   { transform: translateX(100%); }
}

/* ── Keyboard shortcut overlay (dashboard) ─────────────── */
#mu-kbd-overlay {
  position: fixed; inset: 0;
  z-index: 100000;
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
}
#mu-kbd-overlay.open { display: flex; animation: rd-modal-in .3s cubic-bezier(.2,.8,.2,1) both; }
.mu-kbd-bg {
  position: absolute; inset: 0;
  background: rgba(4,5,8,0.7);
  backdrop-filter: blur(16px) saturate(0.9);
  -webkit-backdrop-filter: blur(16px) saturate(0.9);
}
.mu-kbd-card {
  position: relative;
  width: min(560px, 95vw);
  background: linear-gradient(180deg, rgba(22,24,32,0.95), rgba(12,14,20,0.95));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 28px 32px;
  box-shadow: 0 50px 100px -30px rgba(0,0,0,0.85);
}
.mu-kbd-title {
  font-family: 'Geist', sans-serif;
  font-size: 18px; font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 4px;
}
.mu-kbd-sub {
  font-family: 'Geist Mono', monospace;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--rd-accent); margin-bottom: 22px;
}
.mu-kbd-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 13px;
  color: var(--rd-text);
}
.mu-kbd-row:last-child { border-bottom: none; }
.mu-kbd-key {
  font-family: 'Geist Mono', monospace;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 6px;
  padding: 3px 9px;
  font-size: 11px;
  color: #fff;
  box-shadow: 0 2px 0 rgba(0,0,0,0.35);
  margin-left: 6px;
}

/* ── Pricing billing toggle ───────────────────────────── */
#mu-billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 4px;
  margin: 0 auto 32px;
  position: relative;
}
.mu-billing-btn {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
  background: transparent;
  border: none;
  color: var(--rd-text-dim);
  cursor: pointer;
  transition: color .2s ease;
  position: relative;
  z-index: 1;
}
.mu-billing-btn.active { color: #001518; }
.mu-billing-pill {
  position: absolute;
  top: 4px; bottom: 4px;
  left: 4px;
  border-radius: 999px;
  background: var(--rd-accent);
  box-shadow: 0 0 18px rgba(0,230,240,0.3);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), width .35s cubic-bezier(.2,.8,.2,1);
  z-index: 0;
}
.mu-save-badge {
  font-family: 'Geist Mono', monospace;
  font-size: 9px; letter-spacing: 0.12em;
  background: linear-gradient(180deg, rgba(0,230,160,0.2), rgba(0,230,160,0.04));
  color: #00e6a0;
  border: 1px solid rgba(0,230,160,0.32);
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 8px;
  vertical-align: middle;
}

/* "Most popular" ribbon */
.price-card.featured { position: relative; }
.price-card.featured::before {
  content: "MOST POPULAR";
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Geist Mono', monospace;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.16em;
  background: linear-gradient(180deg, var(--rd-accent), #00b8c4);
  color: #001518;
  padding: 5px 14px;
  border-radius: 999px;
  box-shadow: 0 8px 22px -8px rgba(0,230,240,0.6);
  z-index: 5;
}

/* ── Trust strip (logos / "as seen in" / live counter) ── */
.mu-trust {
  max-width: 1240px; margin: 60px auto;
  padding: 24px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  background: linear-gradient(180deg, rgba(22,24,32,0.5), rgba(12,14,20,0.5));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.mu-trust-label {
  font-family: 'Geist Mono', monospace;
  font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--rd-accent);
}
.mu-trust-logos {
  display: flex; gap: 28px; flex-wrap: wrap; align-items: center;
  opacity: 0.65;
  font-family: 'Geist', sans-serif;
  font-size: 14px; font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--rd-text);
}
.mu-trust-logos span {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  transition: opacity .2s ease, border-color .2s ease;
}
.mu-trust-logos span:hover { opacity: 1; border-color: rgba(0,230,240,0.4); }
.mu-trust-counter {
  font-family: 'Geist Mono', monospace;
  font-size: 28px; font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.mu-trust-counter small {
  display: block;
  font-size: 9px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rd-text-dim);
  margin-top: 4px;
}

/* ── Live pulse widget (SVG circle pulse) ──────────────── */
.mu-pulse {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Geist Mono', monospace;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--rd-text-dim);
}
.mu-pulse-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #00e6a0;
  position: relative;
  box-shadow: 0 0 0 0 rgba(0,230,160,0.6);
  animation: mu-pulse-ring 2s ease-out infinite;
}
@keyframes mu-pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(0,230,160,0.6); }
  70%  { box-shadow: 0 0 0 12px rgba(0,230,160,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,230,160,0); }
}

/* ── Admin stats tiles ─────────────────────────────────── */
.mu-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}
.mu-stat-tile {
  background: linear-gradient(180deg, rgba(22,24,32,0.7), rgba(12,14,20,0.7));
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.mu-stat-tile::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--rd-accent), transparent);
  opacity: 0.5;
}
.mu-stat-label {
  font-family: 'Geist Mono', monospace;
  font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--rd-accent);
  margin-bottom: 8px;
}
.mu-stat-value {
  font-family: 'Geist', sans-serif;
  font-size: 32px; font-weight: 700;
  letter-spacing: -0.025em;
  color: #fff;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.mu-stat-delta {
  font-family: 'Geist Mono', monospace;
  font-size: 11px; margin-top: 6px;
  color: #00e6a0;
}
.mu-stat-delta.down { color: #ff6060; }

.mu-audit {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  display: flex; flex-direction: column; gap: 6px;
  max-height: 200px; overflow-y: auto;
}
.mu-audit-row {
  display: flex; gap: 10px; align-items: baseline;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mu-audit-row:last-child { border-bottom: none; }
.mu-audit-time { color: var(--rd-text-mute); flex: 0 0 90px; }
.mu-audit-arrow { color: var(--rd-accent); }

/* ── Premium 404/500 ───────────────────────────────────── */
.mu-error-page {
  min-height: 100dvh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 18px;
  font-family: 'Geist', sans-serif;
  text-align: center;
  padding: 40px;
}
.mu-error-code {
  font-size: clamp(96px, 22vw, 220px);
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(110deg,
    var(--rd-accent) 0%, #fff 50%, var(--rd-accent) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: rd-shimmer 5s ease-in-out infinite;
  line-height: 0.85;
}

/* ── Section storytelling — sticky stack ───────────────── */
[data-mu-stack] > * {
  position: sticky;
  top: 60px;
  margin-bottom: 20vh;
}

/* ── Reduced motion ────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .mu-toast::after, .mu-pulse-dot, .mu-skel::before,
  .mu-error-code { animation: none !important; }
}

/* ==========================================================
   UNIFIED HAMBURGER + FOOTER — same look on every page.
   Targets both <footer> and <footer class="site-footer"> plus
   any .hamburger-btn regardless of per-page CSS.
   ========================================================== */

/* ==========================================================
   TOP BAR (HEADER) — force visible & consistent on every page.
   ========================================================== */
header.top-bar {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
  padding: 14px 28px !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  background: linear-gradient(180deg, rgba(8,10,16,0.78), rgba(6,7,11,0.62)) !important;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
}
header.top-bar .brand-title {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-family: 'Geist','Titillium Web',sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  font-size: 18px !important;
  color: #fff !important;
}
header.top-bar .brand-title img { height: 22px !important; width: auto !important; display: inline-block !important; }
header.top-bar .nav-links {
  display: flex !important;
  gap: 22px !important;
  font-family: 'Geist Mono','JetBrains Mono',monospace !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.14em !important;
  align-items: center;
}
header.top-bar .nav-right {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
}
@media (max-width: 900px) {
  header.top-bar .nav-links { display: none !important; }
}

/* Hamburger — unified premium style across all pages.
   Visible on every page; on desktop it's beside .nav-links, on mobile
   it's the only nav control. */
.hamburger-btn {
  width: 44px !important;
  height: 44px !important;
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 5px !important;
  cursor: pointer !important;
  border-radius: 12px !important;
  background: rgba(0,230,240,0.06) !important;
  border: 1px solid rgba(0,230,240,0.18) !important;
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  transition: background .22s ease, border-color .22s ease,
              transform .22s ease, box-shadow .22s ease !important;
  padding: 0 !important;
  flex-shrink: 0;
}
.hamburger-btn:hover {
  background: rgba(0,230,240,0.14) !important;
  border-color: rgba(0,230,240,0.45) !important;
  transform: scale(1.05);
  box-shadow: 0 0 24px rgba(0,230,240,0.28);
}
.hamburger-btn span {
  width: 18px !important;
  height: 1.5px !important;
  background: var(--rd-accent, #00f2ff) !important;
  border-radius: 2px !important;
  transition: all .3s cubic-bezier(.22,1,.36,1) !important;
  transform-origin: center !important;
  display: block !important;
}
.hamburger-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg) !important; }
.hamburger-btn.open span:nth-child(2) { opacity: 0 !important; transform: scaleX(0) !important; }
.hamburger-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg) !important; }

/* Footer — unify <footer> and <footer.site-footer>.
   Force visible: some per-page CSS / JS may have set display:none
   or hidden these for redesign work. */
footer, footer.site-footer {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative;
  z-index: 5;
  margin-top: 80px;
  padding: 60px 40px 30px !important;
  background: linear-gradient(180deg, rgba(8,10,16,0.85), rgba(4,5,8,0.96)) !important;
  border-top: 1px solid rgba(255,255,255,0.06) !important;
  backdrop-filter: blur(20px) saturate(1.1);
  -webkit-backdrop-filter: blur(20px) saturate(1.1);
}
footer::before, footer.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,230,240,0.55), transparent);
}
footer .footer-inner, footer.site-footer .footer-inner {
  max-width: 1300px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: 1.6fr repeat(4, 1fr) !important;
  gap: 50px !important;
}
@media (max-width: 980px) {
  footer .footer-inner, footer.site-footer .footer-inner {
    grid-template-columns: 1fr 1fr !important;
    gap: 36px !important;
  }
}
@media (max-width: 600px) {
  footer .footer-inner, footer.site-footer .footer-inner {
    grid-template-columns: 1fr !important;
  }
}
footer .footer-brand, footer.site-footer .footer-brand {
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
  max-width: 320px;
}
footer .footer-logo, footer.site-footer .footer-logo {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-family: 'Geist', 'Titillium Web', sans-serif !important;
  font-size: 22px !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  color: #fff !important;
}
footer .footer-logo img, footer.site-footer .footer-logo img { height: 24px; width: auto; }
footer .footer-desc, footer.site-footer .footer-desc {
  font-size: 12px !important;
  color: var(--rd-text-dim, #8a8d96) !important;
  line-height: 1.7 !important;
  max-width: 280px;
}
footer .footer-col, footer.site-footer .footer-col {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}
footer .footer-col-title, footer.site-footer .footer-col-title {
  font-family: 'Geist Mono', 'JetBrains Mono', monospace !important;
  font-size: 9px !important;
  font-weight: 600 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: var(--rd-accent, #00e6f0) !important;
  margin-bottom: 6px !important;
  opacity: 0.85;
}
footer .footer-col a, footer.site-footer .footer-col a {
  font-size: 13px !important;
  color: var(--rd-text-dim, #8a8d96) !important;
  text-decoration: none !important;
  transition: color .15s ease, transform .15s ease !important;
  display: inline-block;
}
footer .footer-col a:hover, footer.site-footer .footer-col a:hover {
  color: var(--rd-accent, #00e6f0) !important;
  transform: translateX(2px);
}
footer .footer-bottom, footer.site-footer .footer-bottom {
  max-width: 1300px !important;
  margin: 50px auto 0 !important;
  padding-top: 24px !important;
  border-top: 1px solid rgba(255,255,255,0.05) !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  font-family: 'Geist Mono', monospace !important;
  font-size: 10px !important;
  letter-spacing: 0.08em !important;
  color: var(--rd-text-mute, #5a5d66) !important;
  text-transform: uppercase;
}
footer .footer-bottom .status-dot,
footer .footer-bottom .status-dot-green,
footer.site-footer .footer-bottom .status-dot,
footer.site-footer .footer-bottom .status-dot-green {
  display: inline-block !important;
  width: 8px !important; height: 8px !important;
  border-radius: 50% !important;
  background: #00e6a0 !important;
  margin-right: 8px !important;
  vertical-align: middle;
  box-shadow: 0 0 0 0 rgba(0,230,160,0.6);
  animation: mu-pulse-ring 2.4s ease-out infinite;
}
footer .footer-socials, footer.site-footer .footer-socials {
  display: flex !important;
  gap: 10px !important;
  margin-top: 8px;
}
footer .footer-socials a, footer.site-footer .footer-socials a {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--rd-text-dim, #8a8d96) !important;
  font-size: 16px;
  transition: all .2s ease;
}
footer .footer-socials a:hover, footer.site-footer .footer-socials a:hover {
  color: var(--rd-accent, #00e6f0) !important;
  border-color: rgba(0,230,240,0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -8px rgba(0,230,240,0.4);
}
footer .sub-box, footer.site-footer .sub-box {
  display: flex;
  gap: 6px;
  margin-top: 12px;
}
footer .sub-input, footer.site-footer .sub-input {
  flex: 1;
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  color: #fff !important;
  font-family: 'Geist', sans-serif !important;
  font-size: 12px !important;
  padding: 9px 12px !important;
  border-radius: 8px !important;
  transition: border-color .2s ease;
}
footer .sub-input:focus, footer.site-footer .sub-input:focus {
  outline: none;
  border-color: rgba(0,230,240,0.5) !important;
}
footer .sub-btn, footer.site-footer .sub-btn {
  background: var(--rd-accent, #00e6f0) !important;
  color: #001518 !important;
  border: none !important;
  font-family: 'Geist Mono', monospace !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  padding: 9px 16px !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: transform .15s ease, box-shadow .2s ease !important;
}
footer .sub-btn:hover, footer.site-footer .sub-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 28px rgba(0,230,240,0.45);
}

/* ==========================================================
   FULLSCREEN MENU — unify to the index tile-style across all
   sub-pages. Markup is the same on every page (.menu-fullscreen
   > .menu-wrapper > .menu-top + .menu-cols > .menu-col > .mlink).
   ========================================================== */
.menu-fullscreen {
  position: fixed !important;
  inset: 0 !important;
  z-index: 9990 !important;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s cubic-bezier(.4,0,.2,1), visibility .4s !important;
}
.menu-fullscreen.active { opacity: 1 !important; visibility: visible !important; }

.menu-fullscreen .menu-backdrop {
  position: absolute !important;
  inset: 0 !important;
  background: rgba(2,2,6,0.96) !important;
  backdrop-filter: blur(32px) !important;
  -webkit-backdrop-filter: blur(32px) !important;
}
.menu-fullscreen .menu-backdrop::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background-image:
    linear-gradient(rgba(0,242,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,242,255,0.018) 1px, transparent 1px) !important;
  background-size: 80px 80px !important;
  pointer-events: none;
}
.menu-fullscreen .menu-backdrop::after {
  content: "" !important;
  position: absolute !important;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,242,255,0.055) 0%, transparent 65%) !important;
  bottom: -200px; right: -200px;
  pointer-events: none;
}

.menu-fullscreen .menu-wrapper {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 1400px !important;
  margin: 0 auto !important;
  padding: 0 80px 60px !important;
  display: flex !important;
  flex-direction: column !important;
  overflow-y: auto !important;
}

.menu-fullscreen .menu-top {
  height: 66px !important;
  flex-shrink: 0;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  border-bottom: 1px solid rgba(0,242,255,0.1) !important;
  margin-bottom: 64px !important;
}
.menu-fullscreen .menu-logo {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-family: 'Geist','Titillium Web',sans-serif !important;
  font-size: 17px !important;
  font-weight: 800 !important;
  color: #fff !important;
  letter-spacing: -0.01em !important;
  text-decoration: none !important;
}
.menu-fullscreen .menu-logo img { height: 24px !important; width: auto !important; }
.menu-fullscreen .menu-close-btn {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all .25s !important;
}
.menu-fullscreen .menu-close-btn:hover {
  background: rgba(0,230,240,0.1) !important;
  border-color: rgba(0,230,240,0.4) !important;
  transform: rotate(90deg) !important;
}
.menu-fullscreen .menu-close-btn i {
  font-size: 20px !important;
  color: rgba(255,255,255,0.7) !important;
}

.menu-fullscreen .menu-cols {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 0 !important;
  flex: 1;
  padding-bottom: 40px !important;
  align-content: start !important;
}
.menu-fullscreen .menu-col {
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
  padding-right: 60px !important;
  border-right: 1px solid rgba(255,255,255,0.04) !important;
}
.menu-fullscreen .menu-col:last-child {
  border-right: none !important;
  padding-right: 0 !important;
}
.menu-fullscreen .menu-col:not(:first-child) { padding-left: 60px !important; }

.menu-fullscreen .col-title {
  font-family: 'Geist Mono','JetBrains Mono',monospace !important;
  font-size: 8px !important;
  font-weight: 700 !important;
  color: rgba(0,230,240,0.55) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.4em !important;
  margin-bottom: 20px !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
}

/* The pricing/about subpages render mlink as:
   <a class="mlink"><i class="bx bx-..."></i><div>...</div></a>
   Wrap the bare <i> visually in a 40x40 glass tile to match index. */
.menu-fullscreen .mlink {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  padding: 14px 16px !important;
  border-radius: 12px !important;
  background: transparent !important;
  border: 1px solid transparent !important;
  transition: all .18s cubic-bezier(.22,1,.36,1) !important;
  text-decoration: none !important;
  position: relative !important;
}
.menu-fullscreen .mlink:hover {
  background: rgba(0,230,240,0.04) !important;
  border-color: rgba(0,230,240,0.12) !important;
  transform: translateX(6px) !important;
}
/* Icon tile — works for both <i> direct child AND .mlink-icon wrapper */
.menu-fullscreen .mlink > i.bx,
.menu-fullscreen .mlink-icon {
  width: 40px !important;
  height: 40px !important;
  border-radius: 10px !important;
  flex-shrink: 0 !important;
  background: rgba(255,255,255,0.03) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all .18s !important;
  position: relative;
  overflow: hidden;
  font-size: 18px !important;
  color: rgba(255,255,255,0.4) !important;
}
.menu-fullscreen .mlink:hover > i.bx,
.menu-fullscreen .mlink:hover .mlink-icon {
  border-color: rgba(0,230,240,0.25) !important;
  background: rgba(0,230,240,0.04) !important;
  color: var(--rd-accent, #00e6f0) !important;
}
.menu-fullscreen .mlink-icon i {
  font-size: 18px !important;
  color: rgba(255,255,255,0.4) !important;
  transition: color .18s !important;
}
.menu-fullscreen .mlink:hover .mlink-icon i { color: var(--rd-accent, #00e6f0) !important; }

.menu-fullscreen .mlink-name {
  font-family: 'Geist','Titillium Web',sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: rgba(255,255,255,0.88) !important;
  line-height: 1 !important;
  margin-bottom: 4px !important;
  letter-spacing: -0.01em !important;
  transition: color .18s !important;
}
.menu-fullscreen .mlink:hover .mlink-name { color: #fff !important; }
.menu-fullscreen .mlink-desc {
  font-family: 'Geist Mono','JetBrains Mono',monospace !important;
  font-size: 9px !important;
  color: rgba(255,255,255,0.28) !important;
  letter-spacing: 0.05em !important;
  line-height: 1 !important;
  text-transform: uppercase;
}

/* Sub-page menu-col title is inside <div class="col-title"> if present;
   otherwise injected via inline text. Force consistent style */
.menu-fullscreen .col-title { display: block !important; }

/* Stagger entry animation for cols (matches index) */
@keyframes mu-mCol { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.menu-fullscreen.active .menu-col:nth-child(1) { animation: mu-mCol .5s .05s cubic-bezier(.22,1,.36,1) both; }
.menu-fullscreen.active .menu-col:nth-child(2) { animation: mu-mCol .5s .12s cubic-bezier(.22,1,.36,1) both; }
.menu-fullscreen.active .menu-col:nth-child(3) { animation: mu-mCol .5s .19s cubic-bezier(.22,1,.36,1) both; }
.menu-fullscreen.active .menu-top    { animation: mu-mCol .4s 0s   cubic-bezier(.22,1,.36,1) both; }
.menu-fullscreen.active .menu-footer { animation: mu-mCol .4s .28s cubic-bezier(.22,1,.36,1) both; }

@media (max-width: 768px) {
  .menu-fullscreen .menu-wrapper { padding: 50px 24px 40px !important; }
  .menu-fullscreen .menu-cols { grid-template-columns: 1fr !important; }
  .menu-fullscreen .menu-col { padding-right: 0 !important; padding-left: 0 !important; border-right: none !important; }
  .menu-fullscreen .menu-top { margin-bottom: 36px !important; }
}
