/* Procuremiq landing — site-level CSS */

html { scroll-behavior: smooth; }

::selection { background: #4ADE80; color: #0B1326; }

/* Hero grid background */
.hero-grid {
  background-image:
    linear-gradient(to right, rgba(54, 88, 155, 0.18) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(54, 88, 155, 0.18) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
}

/* Rotator slide cross-fade */
.rotator-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 800ms ease-in-out;
}
.rotator-slide.active { opacity: 1; }

/* Reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* Scrollbar (dark) */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #0B1326; }
::-webkit-scrollbar-thumb { background: #243F73; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #36589B; }
