/* ──────────────────────────────────────────────
   beyond ai — custom CSS (supplements Tailwind)
   ────────────────────────────────────────────── */

/* Navbar: transparent → frosted glass on scroll */
#navbar {
  background: transparent;
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

/* Reveal-on-scroll animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Ensure hero content is always visible (no reveal class on hero itself) */
#hero * {
  opacity: 1;
  transform: none;
}
