.site-contact-pill {
  position: fixed;
  z-index: 40;
  inset-inline-start: 50%;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-sizing: border-box;
  min-height: 44px;
  padding: 0 17px;
  border: 1px solid rgb(128 128 128 / 28%);
  border-radius: 999px;
  background: #f7f7f7;
  color: #353535;
  box-shadow: 0 2px 12px rgb(0 0 0 / 8%);
  font: 500 12px/1.2 Inter, system-ui, sans-serif;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.site-contact-pill__dot {
  width: 5px;
  height: 5px;
  flex: none;
  border-radius: 50%;
  background: #fe5a1d;
}

.feedback-landing .site-contact-pill,
.dark .site-contact-pill {
  background: #1b1b1b;
  color: #e5e5e5;
}

.site-contact-pill:hover,
.site-contact-pill:focus-visible {
  border-color: #fe5a1d;
  color: #fe5a1d;
  box-shadow: 0 2px 14px rgb(0 0 0 / 12%);
}

.site-contact-pill:focus-visible {
  outline: 2px solid #fe5a1d;
  outline-offset: 3px;
}

.site-contact-pill:active { box-shadow: none; }

@media (prefers-reduced-motion: reduce) {
  .site-contact-pill { transition: none; }
}

@media print {
  .site-contact-pill { display: none; }
}
