.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-b);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--white);
  color: #111;
  padding: 0.7rem 1.5rem;
  border-radius: 99px;
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--off-white);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.1);
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
  padding: 0.7rem 1.25rem;
  border-radius: 99px;
}

.btn-ghost:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.btn-outline {
  background: transparent;
  color: var(--off-white);
  padding: 0.9rem 2rem;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  font-size: 0.95rem;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 99px;
}
