.btn-bracket {
  background: transparent;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 400;
  border: none;
  padding: 0.5rem 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  transition: opacity 0.2s, transform 0.2s;
  text-transform: uppercase;
  will-change: transform;
}
.btn-bracket::before {
  content: '[';
  color: var(--text-muted);
}
.btn-bracket::after {
  content: ']';
  color: var(--text-muted);
}
.btn-bracket:hover {
  opacity: 0.7;
}

.btn-hero {
  background-color: var(--accent);
  color: #000;
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
  border: none;
  padding: 1.5rem 3.5rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.1s;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 8px 8px 0px 0px #000;
  border: 2px solid #000;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
}

.btn-hero span {
  font-size: 1.75rem;
  line-height: 1;
  font-weight: 900;
}

.btn-hero::before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 5px;
  width: 30px;
  height: 4px;
  background: #000;
  z-index: 1;
}

.btn-hero:hover {
  background-color: #fff;
  color: #000;
  transform: translate(-2px, -2px);
  box-shadow: 10px 10px 0px 0px #000;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.btn-hero:active {
  transform: translate(4px, 4px);
  box-shadow: 2px 2px 0px 0px #000;
}
