.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.2rem 2.6rem;
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.9), rgba(0, 229, 255, 0.9));
  color: #fff;
  border-radius: var(--border-radius-md);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.32), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-snappy);
}

.btn:hover::after {
  opacity: 1;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn--pill {
  border-radius: 999px;
}
