/* ================================================================
   MLM Software Page – Reading Progress Bar & Skip Nav
   Used by: mlm-software.html
================================================================ */

#reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #2563eb, #10b981);
  z-index: 9999;
  transition: width .1s linear;
}

.skip-nav {
  position: absolute;
  top: -100%;
  left: 0;
  background: #2563eb;
  color: #fff;
  padding: .75rem 1.5rem;
  z-index: 9999;
  font-weight: 700;
  font-size: .875rem;
  border-radius: 0 0 8px 0;
  transition: top .2s;
}
.skip-nav:focus { top: 0; }
