/* PWA install chip — shared by index.html and liquidscripture.html */
.ls-pwa-install-chip {
  position: fixed;
  z-index: 10001;
  bottom: calc(22px + env(safe-area-inset-bottom, 0px));
  right: max(16px, env(safe-area-inset-right, 0px));
  left: auto;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.35);
  background: rgba(10, 10, 10, 0.92);
  color: rgba(186, 230, 253, 0.96);
  cursor: pointer;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
  -webkit-tap-highlight-color: transparent;
  animation: lsPwaInstallIn 0.45s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes lsPwaInstallIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.ls-pwa-install-chip:hover {
  border-color: rgba(125, 211, 252, 0.55);
  background: rgba(4, 12, 18, 0.95);
}
