Gradient text ghost

Gradient text ghost: a CSS button. Copy the rules, or the prompt that rebuilds it.

gradientghosttext-gradientbackground-clip

CSS
.btn-027 {
  font: 700 15px/1 system-ui,sans-serif;
  background: linear-gradient(90deg,#d946ef,#f97316);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  border: 0;
  border-radius: 8px;
  padding: 12px 20px;
  cursor: pointer;
  transition: filter .15s,background-color .15s
}
.btn-027:hover {
  filter: brightness(1.15)
}
.btn-027:focus-visible {
  outline: 2px solid #d946ef;
  outline-offset: 2px
}
.btn-027:active {
  filter: brightness(.9)
}
HTML
<button class="btn-027">Pro features</button>
Prompt

A borderless ghost button whose text itself is a gradient (90deg fuchsia #d946ef to orange #f97316) via background-clip text, 15px bold, 12px by 20px padding, transparent background, 8px radius. Hover brightens the gradient 15%, active dims to 90%. Focus outline 2px fuchsia.