:root {
  --bz-accent: #dc2626;
  --bz-accent-dark: #b91c1c;
  --bz-ink: #1c1917;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #f8fafc;
}

.bz-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 1.25rem;
  box-shadow: 0 10px 30px -18px rgba(28, 25, 23, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bz-row:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -16px rgba(220, 38, 38, 0.28);
}

@media (min-width: 768px) {
  .bz-row {
    flex-direction: row;
    align-items: center;
    padding: 1.5rem 1.75rem;
  }
}

.bz-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: var(--bz-accent);
  color: #ffffff;
  font-weight: 500;
  padding: 0.65rem 1.5rem;
  box-shadow: 0 8px 18px -8px rgba(220, 38, 38, 0.55);
  transition: background-color 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

.bz-pill:hover {
  background-color: var(--bz-accent-dark);
  transform: translateY(-1px);
}

.bz-pill-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 2px solid var(--bz-accent);
  color: var(--bz-accent);
  font-weight: 500;
  padding: 0.6rem 1.4rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.bz-pill-outline:hover {
  background-color: var(--bz-accent);
  color: #ffffff;
}

.bz-carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.bz-carousel-slide {
  flex: 0 0 100%;
  width: 100%;
}

.bz-carousel-viewport {
  overflow: hidden;
  border-radius: 1.75rem;
}

.bz-carousel-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 9999px;
  background-color: #fecaca;
  transition: background-color 0.2s ease, width 0.2s ease;
}

.bz-carousel-dot.is-active {
  background-color: var(--bz-accent);
  width: 1.6rem;
}

.bz-accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.bz-accordion-item.is-open .bz-accordion-panel {
  max-height: 40rem;
}

.bz-accordion-item.is-open .bz-accordion-icon {
  transform: rotate(45deg);
}

.bz-accordion-icon {
  transition: transform 0.2s ease;
}

#bz-cookie-banner {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 60;
  transform: translateY(120%);
  transition: transform 0.4s ease;
}

#bz-cookie-banner.is-visible {
  transform: translateY(0);
}

#bz-cookie-modal {
  display: none;
}

#bz-cookie-modal.is-visible {
  display: flex;
}

.bz-code-badge {
  font-variant-numeric: tabular-nums;
}

::selection {
  background-color: #fecaca;
  color: var(--bz-ink);
}
