/* r15o actions — Telegram circle + Contact me pill + quieter bait pill */

.actions {
  margin-top: var(--air-glass-actions);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.tg-btn,
.msg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  color: #F4F5F7;
  background: rgba(0, 0, 0, 0.26);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  backdrop-filter: blur(18px) saturate(1.1);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-top-color: rgba(255, 255, 255, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    0 10px 28px rgba(0, 0, 0, 0.42);
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 250ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 250ms cubic-bezier(0.22, 1, 0.36, 1),
    color 220ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 250ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 250ms cubic-bezier(0.22, 1, 0.36, 1);
}

.tg-btn {
  width: 46px;
  flex: 0 0 46px;
  border-radius: 50%;
}

.msg-btn {
  padding: 0 22px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(244, 245, 247, 0.94);
}

/* Quieter sibling — same family, lower contrast, still readable */
.msg-btn--quiet {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 0 18px;
  height: 42px;
  color: rgba(244, 245, 247, 0.78);
  background: rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.18);
  border-top-color: rgba(255, 255, 255, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 8px 22px rgba(0, 0, 0, 0.34);
  opacity: 0.9;
}

.tg-btn svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: currentColor;
}

.tg-btn:hover,
.msg-btn:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  border-top-color: rgba(255, 255, 255, 0.64);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    0 12px 30px rgba(0, 0, 0, 0.5);
}

.msg-btn--quiet:hover {
  color: rgba(255, 255, 255, 0.94);
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.3);
  border-top-color: rgba(255, 255, 255, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    0 10px 26px rgba(0, 0, 0, 0.42);
}

.tg-btn:focus-visible,
.msg-btn:focus-visible {
  outline: 2px solid rgba(224, 62, 62, 0.85);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .tg-btn,
  .msg-btn {
    transition:
      border-color 160ms ease,
      color 160ms ease,
      box-shadow 160ms ease,
      opacity 160ms ease,
      background-color 160ms ease;
  }
  .tg-btn:hover,
  .msg-btn:hover { transform: none; }
}
