:root {
  --brand: #14B8A6;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Instrument Sans", ui-sans-serif, system-ui, sans-serif;
}

.animate-fade-up {
  animation: fadeUp 650ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.animate-float {
  animation: floatIn 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .animate-fade-up,
  .animate-float {
    animation: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Scroll offset for anchor links to account for fixed header */
section[id],
div[id="waitlist"] {
  scroll-margin-top: 5rem;
}


