/* LeGener wordmark — uses the original signature alpha as a mask so the
   brand color always matches Financial Reset's primary teal. */
.legener-logo {
  display: block;
  flex: 0 0 auto;
  background: #0d9488;
  -webkit-mask-image: url('/assets/legener-logo.png');
  mask-image: url('/assets/legener-logo.png');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: left center;
  mask-position: left center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.legener-logo-home {
  width: 142px;
  height: 48px;
}
.legener-logo-sidebar {
  width: 112px;
  height: 38px;
}
.dark .legener-logo {
  background: #2dd4bf;
}
@media (max-width: 767px) {
  .legener-logo-home {
    width: 124px;
    height: 42px;
  }
}

/* Keep the LeGener identity visible while scrolling the Home dashboard. */
.legener-brand-header {
  position: sticky;
  top: 0;
  z-index: 24;
  width: 100%;
  padding: 8px 0 10px;
  margin: -8px 0 -2px;
  background: rgba(248, 250, 252, 0.96);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.dark .legener-brand-header {
  background: rgba(2, 6, 23, 0.94);
}
@media (max-width: 767px) {
  .legener-brand-header {
    top: 0;
    padding-top: 6px;
  }
}
