.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: transform 0.12s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
  min-height: 44px;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--graphite);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--graphite-2);
}

.btn-accent {
  background: var(--lime);
  color: var(--graphite);
}

.btn-accent:hover {
  background: var(--lime-dark);
}

.btn-ghost {
  background: var(--paper);
  color: var(--graphite);
  border: 1px solid var(--border);
}

.btn-orange {
  background: var(--orange);
  color: white;
}

.btn-block {
  width: 100%;
}

.btn-lg {
  padding: 16px 24px;
  font-size: 16px;
}

.btn-sm {
  padding: 10px 16px;
  font-size: 13px;
  min-height: 40px;
}
