:root {
  --primary-500: #008bcc; /* Bradley blue – CTA/button & strip */
  --primary-dark: #005f8f;
  --primary-light: #e1f3fb;
  --primary-lighter: #f5fafd;
  --primary-extralight: #008bcc08;

  --secondary-500: #00a39a; /* Teal from logo accent */
  --secondary-dark: #00736c;
  --secondary-light: #00a39a0a;

  --tertiary-500: #f1a208; /* Warm accent (pairs with Trustpilot/gold tones) */
  --tertiary-light: #f1a2080a;

  --gray-base: #7a7f85;
  --gray-light: #7a7f853d;
  --gray-extralight: #f5f6f8;

  --alert-base: #e53935;
  --alert-light: #e539351a;
  --alert-extralight: #e539350a;

  --warning-base: #ffb300;
  --warning-light: #ffb3000d;

  --success-base: #2e7d32;
  --success-light: #2e7d3245;

  --cx-rounded-small: 4px;
  --cx-rounded-medium: 8px;
  --cx-rounded-large: 16px;
  --cx-rounded-full: 99999999px;

  .primary-font-base {
    font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
      "Segoe UI", sans-serif;
    font-style: normal;
  }

  .secondary-font-base {
    font-family: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont,
      "Segoe UI", sans-serif;
    font-style: normal;
  }

  [x-cloak] {
    display: none;
  }
}

/* A reusable class for pulsing when HTMX is loading */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.htmx-pulse.htmx-request {
  animation: pulse 2s infinite;
  cursor: wait;
}
