/* ============================================
   Buttons — variants + sizes
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: inherit;
  font-weight: var(--fw-semibold);
  border: 0;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: .5; cursor: not-allowed; }

/* Sizes */
.btn--sm { height: 36px; padding: 0 14px; font-size: 14px; border-radius: 10px; }
.btn--md { height: 44px; padding: 0 20px; font-size: 15px; border-radius: var(--r-md); }
.btn--lg { height: 54px; padding: 0 28px; font-size: 17px; border-radius: 14px; }
.btn--xl { height: 64px; padding: 0 34px; font-size: 19px; border-radius: var(--r-lg); font-weight: var(--fw-bold); }

/* Landing yellow — big conversion CTAs on marketing pages */
.btn--landing {
  background: var(--brand-accent-500);
  color: var(--brand-navy-900);
  box-shadow: var(--shadow-cta-yellow);
}
.btn--landing:hover { background: var(--brand-accent-400); }

/* Product primary — blue */
.btn--primary {
  background: var(--brand-primary-500);
  color: #fff;
  box-shadow: var(--shadow-cta-primary);
}
.btn--primary:hover { background: var(--brand-primary-600); }

/* Secondary */
.btn--secondary {
  background: #fff;
  color: var(--text-strong);
  border: 1px solid var(--border-strong);
}
.btn--secondary:hover { border-color: var(--text-secondary); }

/* Ghost / tertiary */
.btn--ghost {
  background: transparent;
  color: var(--text-body);
}
.btn--ghost:hover { background: var(--bg-alt); }

/* Dark */
.btn--dark {
  background: var(--brand-navy-900);
  color: #fff;
}
.btn--dark:hover { background: #16294A; }

/* ============================================
   Badges
   ============================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 26px;
  padding: 0 10px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: var(--fw-semibold);
  border: 1px solid transparent;
  white-space: nowrap;
}
.badge__dot { width: 6px; height: 6px; border-radius: 50%; }

.badge--ready    { background: var(--brand-primary-100); color: var(--brand-primary-700); }
.badge--ready .badge__dot { background: var(--brand-primary-500); }

.badge--check    { background: #EEF1FA; color: #3B4A7D; }
.badge--check .badge__dot { background: #6A7BB8; }

.badge--none     { background: #F0F2F5; color: #6B7684; }
.badge--none .badge__dot { background: #A0A9B6; }
