:root {
  color-scheme: dark;
  font-family: "Plus Jakarta Sans", Inter, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #050505;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background-color: #050505;
  color: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 200ms ease;
}

a:hover {
  color: #f5f5f5;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

body.nav-locked {
  overflow: hidden;
}

[data-header].is-stuck {
  backdrop-filter: blur(18px);
  background: rgba(15, 15, 17, 0.92);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}

[data-nav-link] {
  transition: color 200ms ease;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 200ms ease;
}

.nav-link.is-active,
.nav-link:hover {
  color: #ffffff;
}

[data-nav-link].is-active {
  color: #ffffff;
}

[data-animate] {
  opacity: 0;
  transform: translateY(28px);
}

.no-js [data-animate] {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}

::selection {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

#preloader {
  pointer-events: none;
  transition: opacity 300ms ease;
}

#preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.gradient-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 5, 5, 0.9) 0%,
    rgba(5, 5, 5, 0.4) 45%,
    rgba(5, 5, 5, 1) 100%
  );
  pointer-events: none;
}

.back-to-top {
  display: none !important;
}
