.linksy-launcher {
  position: fixed;
  z-index: 45;
  right: 24px;
  bottom: 24px;
  isolation: isolate;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  padding: 0 17px;
  border: 1px solid rgba(238, 239, 230, .52);
  border-radius: 13px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .09), transparent 42%), linear-gradient(135deg, #123f3a, #082b28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18), 0 12px 28px rgba(5, 28, 25, .24);
  color: #f8f5ed;
  font: 700 13px/1 var(--font-display, "Inter Tight", "Arial Narrow", Arial, sans-serif);
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background-color .22s ease;
}

.linksy-launcher::before {
  position: absolute;
  z-index: -1;
  inset: -70% auto -70% -55%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .17), transparent);
  content: "";
  pointer-events: none;
  transform: translateX(-220%) rotate(18deg);
}

.linksy-launcher__mark {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  place-items: center;
  border: 1px solid rgba(248, 245, 237, .62);
  border-radius: 50%;
  background: rgba(255, 255, 255, .055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14);
  font-size: 11px;
  font-weight: 700;
}

.linksy-launcher:hover {
  border-color: rgba(255, 255, 255, .78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .24), 0 15px 32px rgba(5, 28, 25, .28);
  transform: translateY(-2px);
}

.linksy-launcher:hover::before,
.linksy-launcher:focus-visible::before { animation: linksy-launcher-gleam .62s ease-out 1; }

.linksy-launcher:focus-visible {
  border-color: #fff;
  outline: 2px solid #c4d8d0;
  outline-offset: 3px;
}

.linksy-launcher:disabled { cursor: wait; opacity: .82; }

@keyframes linksy-launcher-gleam {
  from { transform: translateX(-220%) rotate(18deg); }
  to { transform: translateX(760%) rotate(18deg); }
}

@media (max-width: 640px) {
  .linksy-launcher { right: 16px; bottom: 16px; }
}

@media (max-width: 420px) {
  .linksy-launcher { width: 52px; min-width: 52px; padding: 0; justify-content: center; }
  .linksy-launcher__text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
}

@media (prefers-reduced-motion: reduce) {
  .linksy-launcher { transition: border-color .01ms linear, background-color .01ms linear; }
  .linksy-launcher:hover { transform: none; }
  .linksy-launcher:hover::before,
  .linksy-launcher:focus-visible::before { animation: none; }
}
