/* ============================================================
   Bix Premium Layer
   Additive interaction polish shared by the marketing homepage and
   the /inbjudan signup flow. Assumes each page already defines its
   own dark-first palette; only hardcoded values below are the ones
   that must stay consistent regardless of which :root is active
   (ivory F0EDE8 / sage 7BAF96).
   Fully inert unless premium.js opts the page in (pointer:fine,
   hover:hover, no prefers-reduced-motion) — see premium.js gating.
   ============================================================ */

/* ---- Nav scroll-progress hairline ---- */
.nav-progress {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, #7BAF96, rgba(123, 175, 150, 0.15));
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
}

/* ---- Spotlight glow-follow for card/row grids ---- */
[data-spotlight] { position: relative; }
[data-spotlight]::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(360px circle at var(--sx, 50%) var(--sy, 50%), rgba(240, 237, 232, 0.055), transparent 68%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
[data-spotlight]:hover::before { opacity: 1; }

/* ---- Count-up numerals: reserve tabular width so layout never jumps ---- */
[data-count-to] { font-variant-numeric: tabular-nums; }

@media (prefers-reduced-motion: reduce) {
  .nav-progress { display: none; }
  [data-spotlight]::before { display: none; }
}
