.btn{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;min-height:2.75rem;padding-inline:1.375rem;border-radius:var(--radius-pill);font-size:1rem;font-weight:500;letter-spacing:-.005em;cursor:pointer;color:rgb(var(--fg));border:2px solid transparent;background:linear-gradient(rgb(var(--bg)),rgb(var(--bg))) padding-box,var(--gradient-brand) border-box;transition:background var(--dur-hover) var(--ease-out),transform var(--dur-press) var(--ease-out)}.btn:hover{background:linear-gradient(rgb(var(--surface-muted)),rgb(var(--surface-muted))) padding-box,var(--gradient-brand) border-box}.btn:active{transform:scale(.98)}.btn:disabled{opacity:.5;cursor:not-allowed}.btn[aria-busy=true]{cursor:progress}.btn[aria-busy=true]:before{content:"";width:.875rem;height:.875rem;border:2px solid rgb(var(--fg)/.3);border-top-color:rgb(var(--fg));border-radius:var(--radius-pill);animation:btn-spin .7s linear infinite}@keyframes btn-spin{to{transform:rotate(1turn)}}@media (forced-colors:active){.btn{border-color:ButtonText}}@media (prefers-reduced-motion:reduce){.btn:active{transform:none}.btn[aria-busy=true]:before{animation:none}}