/* GlanceWise brand logo — matches glance-frontend header asset */
.glancewise-logo {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 40px;
}

/* Dark footer background (#231F40) — same invert filter as glance-frontend auth panel */
.footer-style-default .glancewise-footer-widget .glancewise-logo--on-dark {
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

/* Header auth actions — Log in + Start free trial */
.header-auth-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 12px;
}

.header-auth-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease,
    box-shadow 0.2s ease, transform 0.2s ease;
}

.header-auth-btn i {
  font-size: 16px;
  line-height: 1;
  transition: transform 0.2s ease;
}

/* Log in — outline / ghost */
.header-auth-btn--ghost {
  color: var(--color-primary, #4a4e8a);
  background: #ffffff;
  border: 1.5px solid rgba(74, 78, 138, 0.28);
  box-shadow: none;
}

.header-auth-btn--ghost:hover {
  color: var(--color-primary, #4a4e8a);
  background: rgba(74, 78, 138, 0.06);
  border-color: rgba(74, 78, 138, 0.45);
  transform: translateY(-1px);
}

/* Start free trial — primary CTA */
.header-auth-btn--primary {
  color: #ffffff;
  background: linear-gradient(135deg, #4a4e8a 0%, #5b61a8 52%, #6d73b8 100%);
  border: 1.5px solid transparent;
  box-shadow: 0 4px 14px rgba(74, 78, 138, 0.32);
}

.header-auth-btn--primary:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #3f4378 0%, #4a4e8a 52%, #5b61a8 100%);
  box-shadow: 0 6px 20px rgba(74, 78, 138, 0.38);
  transform: translateY(-1px);
}

.header-auth-btn--primary:hover i {
  transform: translateX(2px);
}

.header-auth-btn:focus-visible {
  outline: 3px solid rgba(74, 78, 138, 0.35);
  outline-offset: 2px;
}

/* Mobile drawer */
.header-auth-mobile .header-auth-btn {
  width: 100%;
  height: 44px;
  font-size: 15px;
}

.header-auth-mobile + .header-auth-mobile {
  margin-top: 10px;
}

.popup-mobile-menu .header-auth-mobile {
  padding: 0 20px;
  list-style: none;
}

.popup-mobile-menu .header-auth-mobile:first-of-type {
  margin-top: 24px;
}
