@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

::selection {
  background: rgba(129, 140, 248, 0.4);
  color: #fff;
}

::-moz-selection {
  background: rgba(129, 140, 248, 0.4);
  color: #fff;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: -0.02em;
  color: var(--text);
}

.logo-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.logo-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1px;
  list-style: none;
}

.nav-links > a,
.nav-links > .nav-cta {
  display: block;
  padding: 6px 14px;
  font-size: 0.815rem;
  font-weight: 400;
  color: var(--text-2);
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-links a:focus-visible,
.nav-cta:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 6px;
}

.nav-cta {
  font-size: 0.79rem !important;
  font-weight: 500 !important;
  color: var(--bg) !important;
  background: var(--text) !important;
  padding: 5px 13px !important;
  border-radius: 6px !important;
  transition: opacity 0.2s !important;
}

.nav-cta:hover {
  opacity: 0.85 !important;
}

.is-disabled,
[aria-disabled="true"] {
  opacity: 0.62 !important;
  cursor: not-allowed !important;
  pointer-events: none;
  filter: saturate(0.85);
}

footer {
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  display: flex;
  align-items: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.fl-icon {
  border-radius: 6px;
  overflow: hidden;
}

.fl-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-sep {
  width: 1px;
  height: 16px;
}

.footer-links {
  display: flex;
}
