/* Google Sans Text Font Import */
@import url(https://fonts.googleapis.com/css?family=Google+Sans+Text);

/* Global Styles */
html {
  font-family: "Google Sans Text", "Google Sans", "Manrope", sans-serif;
  font-size: 14px;
  color-scheme: light dark;
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
}

.grid-bg {
  background-size: 40px 40px;
  mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

/* Animations Utility Classes */
.animate-in {
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

.slide-in-from-top-2 {
  animation-name: slideInFromTop;
}

.slide-in-from-left-2 {
  animation-name: slideInFromLeft;
}

@keyframes slideInFromTop {
  from {
    transform: translateY(-0.5rem);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInFromLeft {
  from {
    transform: translateX(-10px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Simple fade-in animation for scroll observation */
.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: none;
}

/* Hero Section - Scan Animation */
@keyframes scan {
  0% {
    top: -50%;
  }
  80% {
    top: 150%;
  }
  100% {
    top: 150%;
  }
}
