/*
 * Wise-style pill buttons — scale animation on hover/active instead of color change.
 * Radius 9999px (full pill), weight 600, tight letter-spacing.
 */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.008em;
  padding: 13px 26px;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
  text-decoration: none;
  white-space: nowrap;
  font-feature-settings: "calt" 1;
  line-height: 1;
}

.btn:hover { transform: scale(1.04); }
.btn:active { transform: scale(0.96); }

/* Primary — brand navy with white text */
.btn-primary {
  background: var(--accent);
  color: var(--accent-on);
}
.btn-primary:hover {
  background: var(--accent-hover);
}

/* Ghost / secondary — subtle tinted */
.btn-ghost {
  background: rgba(22, 51, 0, 0.08);
  color: var(--text);
}
.btn-ghost:hover {
  background: rgba(22, 51, 0, 0.14);
}

/* Dark — near-black with off-white */
.btn-dark {
  background: var(--text);
  color: var(--bg);
}
.btn-dark:hover {
  background: #2a2c28;
}

/* Outlined — transparent with ring */
.btn-outline {
  background: transparent;
  color: var(--text);
  box-shadow: 0 0 0 1.5px var(--text);
}
.btn-outline:hover {
  background: var(--text);
  color: var(--bg);
}

/* Small */
.btn-sm {
  font-size: 14px;
  padding: 8px 16px;
}

/* Large */
.btn-lg {
  font-size: 20px;
  padding: 16px 32px;
  font-weight: 700;
}

/* Arrow motion */
.btn .arrow {
  display: inline-block;
  transition: transform .2s;
}
.btn:hover .arrow {
  transform: translateX(3px);
}
