[data-button] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--accent);
  border-radius: 0;
  background: var(--accent);
  color: var(--on-accent, #ffffff);
  font-family: "IBM Plex Mono", ui-monospace, Menlo, monospace;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition:
    filter 180ms ease,
    transform 180ms ease;
}

[data-button]:hover {
  color: var(--on-accent, #ffffff);
  filter: brightness(0.9);
  transform: translateY(-2px);
}

[data-button-size="nav"] {
  gap: 8px;
  min-height: 40px;
  height: 40px;
  padding: 0 16px;
  font-size: 11px;
}

[data-button-block] {
  width: 100%;
  justify-content: space-between;
}
