Per seat pricing

Per seat pricing: a CSS card. Copy the rules, or the prompt that rebuilds it.

pricingcompactper-seatlightbadge

Per seatSave 20%

$8/seat/mo

  • Shared boards
  • Comments
  • Exports
Add seats
CSS
.card-019 {
  width: 230px;
  padding: 20px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 14px;
  font-family: system-ui,sans-serif;
  color: #78350f
}
.card-019__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 600
}
.card-019__head em {
  font-style: normal;
  padding: 3px 8px;
  border-radius: 999px;
  background: #f59e0b;
  color: #fff;
  font-size: 11px
}
.card-019__price {
  margin: 10px 0 12px;
  font-size: 34px;
  font-weight: 800
}
.card-019__price span {
  font-size: 12px;
  font-weight: 500;
  margin-left: 4px;
  color: #92400e
}
.card-019 ul {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  font-size: 13px;
  line-height: 1.9
}
.card-019 li::before {
  content: "• ";
  color: #f59e0b
}
.card-019 a {
  display: block;
  text-align: center;
  padding: 9px;
  border-radius: 8px;
  background: #78350f;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none
}
.card-019 a:hover {
  background: #451a03
}
.card-019 :is(a,button,input,select,textarea):focus-visible { outline: 2px solid currentColor; outline-offset: 2px; }
HTML
<article class="card-019">
  <div class="card-019__head"><span>Per seat</span><em>Save 20%</em></div>
  <p class="card-019__price">$8<span>/seat/mo</span></p>
  <ul><li>Shared boards</li><li>Comments</li><li>Exports</li></ul>
  <a href="#">Add seats</a>
</article>
Prompt

Build a compact 230px pricing card on warm cream #fffbeb with a 1px #fde68a border, 14px radius, 20px padding, text in #78350f. Header row: "Per seat" label left and an amber pill "Save 20%" (#f59e0b, white 11px text) right. A 34px extra-bold "$8" with "/seat/mo" in 12px #92400e. Short bullet list with amber bullets. Full-width CTA on #78350f (8px radius) that darkens to #451a03 on hover.