/* Habiters Legal – premium glow + pill active state (Tailwind handles the rest) */

/* Subtle top glow in brand color – fades into black */
.legal-glow {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 420px;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
    ellipse 120% 80% at 50% -20%,
    rgba(242, 169, 59, 0.12) 0%,
    rgba(242, 169, 59, 0.04) 40%,
    transparent 70%
  );
}

/* Active language pill – accent background and border */
.lang-pill.active {
  background-color: rgba(242, 169, 59, 0.15);
  border-color: rgba(242, 169, 59, 0.5);
  color: #F2A93B;
  font-weight: 600;
}

.lang-pill:not(.active):hover {
  color: #e5e7eb;
  border-color: #6b7280;
}
