/* SimpleScan Landing Page - Custom Styles */

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Download button hover lift effect */
.download-btn {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.download-btn:hover {
  transform: translateY(-2px);
}

/* Hero background subtle pattern */
section:first-of-type::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(37, 99, 235, 0.04) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
}
