/* Minimal custom styles to complement Tailwind */
:root {
  --b2b-red: #ef4444;
}

.font-inter { font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; }

.pill {
  border-radius: 1rem;
  background: rgb(38 38 38);
  border: 1px solid rgba(255,255,255,0.06);
  color: rgb(229 229 229);
  padding: 0.5rem 0.75rem;
}

.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 1rem; padding: 0.75rem 1.25rem;
  background: var(--b2b-red);
  color: white; text-decoration: none;
}
.btn-primary:hover { filter: brightness(1.05); }
.btn-primary:active { filter: brightness(0.95); }

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 1rem; padding: 0.75rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.15);
  color: white; text-decoration: none;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.3); }

.dot {
  margin-top: 0.25rem;
  height: 0.5rem; width: 0.5rem;
  border-radius: 9999px;
  background: var(--b2b-red);
  display: inline-block; flex: none;
}
