Radial hotspot
Radial hotspot: a CSS button. Copy the rules, or the prompt that rebuilds it.
CSS
.btn-029 {
font: 600 15px/1 system-ui,sans-serif;
color: #fff;
background: radial-gradient(circle at 30% 30%,#fb7185,#be123c 70%);
border: 0;
border-radius: 12px;
padding: 13px 26px;
cursor: pointer;
transition: background .3s
}
.btn-029:hover {
background: radial-gradient(circle at 70% 70%,#fb7185,#be123c 70%)
}
.btn-029:focus-visible {
outline: 3px solid rgba(190,18,60,.5);
outline-offset: 2px
}
.btn-029:active {
background: #9f1239
}
HTML
<button class="btn-029">Discover</button>Prompt
A rose button with a radial gradient: a lighter #fb7185 hotspot at 30% 30% fading to #be123c by 70%. White 15px semibold text, 12px radius, 13px by 26px padding. On hover the hotspot moves to 70% 70%; active is flat #9f1239. Focus ring translucent rose.