/**
 * SnapAPI globals — Inter sans (pairs with Tailwind CDN). No PostCSS: plain CSS only.
 */

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
}

html.ds-root {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.ds-body-marketing,
.ds-body-app {
  text-rendering: optimizeLegibility;
}

/* Brand: <img src="/logo.svg" alt="SnapAPI" class="block h-10 w-auto shrink-0" /> — no wrapper styles; sits on header background. */

::selection {
  background: rgba(191, 219, 254, 0.9);
}

/* Solid blue primary CTA — no gradients */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #2563eb;
  color: #fff;
  padding: 0.625rem 1.25rem;
  border-radius: 0.375rem;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.25rem;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.btn-primary:hover {
  background-color: #1d4ed8;
  color: #fff;
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-primary--sm {
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
}

.btn-primary--lg {
  padding: 0.625rem 1.25rem;
  min-width: 7.5rem;
}

.btn-primary.w-full {
  width: 100%;
  box-sizing: border-box;
}
