/* [project]/frontend/src/components/Header.module.css [app-client] (css) */
.Header-module__HmnIjW__header {
  transition: transform var(--motion-slow, .32s) var(--ease-standard, cubic-bezier(.22, 1, .36, 1)),
    background-color var(--motion-base, .22s) ease,
    border-color var(--motion-base, .22s) ease,
    box-shadow var(--motion-base, .22s) ease;
}

.Header-module__HmnIjW__menu {
  max-width: calc(100vw - 24px);
}

@media (max-width: 639px) {
  .Header-module__HmnIjW__menu {
    opacity: 0;
    pointer-events: none;
    transition: transform var(--motion-slow, .32s) var(--ease-standard, cubic-bezier(.22, 1, .36, 1)),
      opacity var(--motion-base, .22s) ease;
    transform: translateY(-10px);
  }

  .Header-module__HmnIjW__menu:not(.Header-module__HmnIjW__hidden) {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

.Header-module__HmnIjW__tapHighlight {
  -webkit-tap-highlight-color: transparent;
}

/* [project]/frontend/src/components/Footer.module.css [app-client] (css) */
.Footer-module__cyaCmW__footerRoot {
  width: 100%;
  position: relative;
}

.Footer-module__cyaCmW__footerDivider {
  background: linear-gradient(90deg, transparent 0%, var(--theme-border-subtle) 18%, var(--theme-border-subtle) 50%, var(--theme-border-subtle) 82%, transparent 100%);
  width: 100%;
  height: 1px;
}

.dark .Footer-module__cyaCmW__footerDivider {
  background: linear-gradient(90deg, transparent 0%, var(--theme-border-subtle) 18%, var(--theme-border-subtle) 50%, var(--theme-border-subtle) 82%, transparent 100%);
}

.Footer-module__cyaCmW__footerLink {
  position: relative;
}

.Footer-module__cyaCmW__footerLink:after {
  content: "";
  transform-origin: 0;
  opacity: 0;
  background: currentColor;
  width: 100%;
  height: 1px;
  transition: transform .22s, opacity .22s;
  position: absolute;
  bottom: -.45rem;
  left: 0;
  transform: scaleX(.32);
}

.Footer-module__cyaCmW__footerLink:hover:after, .Footer-module__cyaCmW__footerLink:focus-visible:after {
  opacity: .55;
  transform: scaleX(1);
}

.Footer-module__cyaCmW__footerSocialButton {
  border: 1px solid var(--theme-border-subtle);
  background: var(--theme-surface-raised);
  width: 2.5rem;
  height: 2.5rem;
  color: inherit;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 9999px;
  justify-content: center;
  align-items: center;
  transition: border-color .22s, background-color .22s, color .22s, transform .22s, box-shadow .22s;
  display: inline-flex;
}

.dark .Footer-module__cyaCmW__footerSocialButton {
  border-color: var(--theme-border-subtle);
  background: var(--theme-surface-raised);
}

.Footer-module__cyaCmW__footerSocialButton:hover, .Footer-module__cyaCmW__footerSocialButton:focus-visible {
  border-color: var(--theme-accent-muted);
  background: var(--theme-accent-muted);
  box-shadow: 0 10px 30px var(--theme-accent-muted);
  transform: translateY(-1px);
}

:is(.dark .Footer-module__cyaCmW__footerSocialButton:hover, .dark .Footer-module__cyaCmW__footerSocialButton:focus-visible) {
  border-color: var(--theme-accent-muted);
  background: var(--theme-accent-muted);
  box-shadow: 0 10px 30px var(--theme-shadow-color-md);
}

.Footer-module__cyaCmW__footerSocialIcon {
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.Footer-module__cyaCmW__footerSocialIcon svg {
  fill: currentColor;
  width: 1rem;
  height: 1rem;
}

/*# sourceMappingURL=frontend_src_components_1y13yt-._.css.map*/