/* Global fallback styles for static marketing pages */
:root {
  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.65;
  background-color: #0c0a09;
  color: #e2e8f0;
}

a {
  color: #c4b5fd;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #fde68a;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

main {
  display: block;
}

footer {
  display: block;
}

.will-animate {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.will-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .will-animate,
  .will-animate.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
