/* Static pages: fonts, icons, keyframes only – layout via Tailwind */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght@400&display=swap");

html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}
::selection {
  background: #13ec5b;
  color: #000;
}
.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
.animate-fade-in {
  animation: fadeIn 1s ease-out forwards;
}
.animate-float {
  animation: float 6s ease-in-out infinite;
}

/* AI scanner section */
#ai-scan-beam {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, transparent, #13ec5b 40%, #13ec5b 60%, transparent);
  filter: blur(1px);
  pointer-events: none;
}
.ai-step {
  cursor: default;
}

/* Hero slider scan-line animation */
@keyframes scanLine {
  0%   { transform: translateY(-200%); opacity: 0.8; }
  50%  { opacity: 1; }
  100% { transform: translateY(200%); opacity: 0.8; }
}
.animate-scan-line {
  animation: scanLine 2s ease-in-out infinite;
  background: linear-gradient(to right, transparent, #13ec5b, transparent);
  height: 2px;
}

/* Nav scroll state (JS toggles .scrolled) */
#nav.scrolled {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid #e2e8f0;
  padding-top: 1rem;
  padding-bottom: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
