/* Styles for pill-paywall.js — the hand-built market maps (peptides,
   humanoid robots, …) share a common .company-pill / .pills-wrap
   structure, so the same blur + demo-CTA styling drops in regardless
   of the page's own palette. */

.company-pill.paywall-blurred {
  cursor: not-allowed;
  pointer-events: none;
  user-select: none;
}
.company-pill.paywall-blurred .pill-logo,
.company-pill.paywall-blurred .pill-initial {
  filter: grayscale(0.6) saturate(0.6);
  opacity: 0.55;
}
.company-pill.paywall-blurred .pill-name {
  filter: blur(4.5px);
  opacity: 0.9;
  letter-spacing: -0.01em;
}

.pills-wrap > .book-demo-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1;
  padding: 7px 12px 7px 11px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
[data-theme="light"] .pills-wrap > .book-demo-btn {
  background: #0F172A;
  color: #FFFFFF;
}
[data-theme="dark"] .pills-wrap > .book-demo-btn {
  background: #FFFFFF;
  color: #0F2147;
}
.pills-wrap > .book-demo-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(15,23,42,0.22);
}
.pills-wrap > .book-demo-btn svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}
