html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  height: 100dvh;
  overflow: hidden;
  overscroll-behavior: none;
  position: fixed;
  inset: 0;
}

#app {
  width: 100%;
  height: 100%;
  height: 100dvh;
  overflow: hidden;
}

.m-page-home {
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 100%;
  height: 100%;
  height: 100dvh;
  overflow: hidden;
  overscroll-behavior: none;
}

.m-page-home .m-hero {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  height: 100dvh;
  min-height: 0;
  overflow: hidden;
}

.m-page-home .m-logo-wrap-circle {
  width: clamp(14rem, min(78vw, 78vh), 26rem);
  height: clamp(14rem, min(78vw, 78vh), 26rem);
  margin: 0;
  padding: clamp(1.75rem, 7vw, 3.25rem);
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

.m-page-home .m-logo-wrap-circle .m-logo {
  width: 78%;
  height: auto;
  position: relative;
  z-index: 0;
}

.m-logo-glass {
  position: relative;
  overflow: hidden;
  --shine-x: 50%;
  --shine-y: 50%;
  --shine-hot-x: 50%;
  --shine-hot-y: 50%;
}

.m-logo-shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 1;
  background:
    radial-gradient(
      circle at var(--shine-x) var(--shine-y),
      rgba(255, 255, 255, 0.72) 0%,
      rgba(255, 255, 255, 0.28) 16%,
      rgba(255, 255, 255, 0.08) 32%,
      transparent 58%
    ),
    radial-gradient(
      circle at var(--shine-hot-x) var(--shine-hot-y),
      rgba(255, 255, 255, 0.35) 0%,
      transparent 42%
    );
  mix-blend-mode: soft-light;
}

.m-logo-glass::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.25s ease;
  background: radial-gradient(
    circle at var(--shine-hot-x) var(--shine-hot-y),
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.45) 6%,
    transparent 22%
  );
}

.m-logo-glass.is-shining .m-logo-shine,
.m-logo-glass.is-shining::after {
  opacity: 1;
}

.m-logo-wrap.is-puck {
  cursor: grab;
  user-select: none;
  touch-action: none;
  will-change: left, top, transform;
}

.m-logo-wrap.is-puck-return {
  transition:
    left 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    top 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
  .m-logo-shine,
  .m-logo-glass::after {
    display: none;
  }
}
