Classic pricing
Classic pricing: a CSS card. Copy the rules, or the prompt that rebuilds it.
Starter
$12/month
- 3 projects
- Unlimited pages
- Email support
CSS
.card-015 {
width: 260px;
padding: 26px 24px;
background: #fff;
border: 1px solid #e5e7eb;
border-radius: 16px;
font-family: system-ui,sans-serif;
color: #111827
}
.card-015 h3 {
margin: 0;
font-size: 14px;
font-weight: 600;
color: #6b7280;
text-transform: uppercase;
letter-spacing: .08em
}
.card-015__price {
margin: 10px 0 18px;
font-size: 14px;
color: #6b7280
}
.card-015__price span {
font-size: 40px;
font-weight: 700;
color: #111827;
letter-spacing: -.02em
}
.card-015 ul {
margin: 0 0 22px;
padding: 0;
list-style: none;
font-size: 14px
}
.card-015 li {
padding: 6px 0 6px 24px;
position: relative
}
.card-015 li::before {
content: "";
position: absolute;
left: 0;
top: 11px;
width: 14px;
height: 14px;
border-radius: 50%;
background: #dcfce7 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='3'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/9px no-repeat
}
.card-015 a {
display: block;
padding: 11px;
text-align: center;
border-radius: 10px;
background: #111827;
color: #fff;
font-size: 14px;
font-weight: 600;
text-decoration: none
}
.card-015 a:hover {
background: #000
}
.card-015 :is(a,button,input,select,textarea):focus-visible { outline: 2px solid currentColor; outline-offset: 2px; }
HTML
<article class="card-015">
<h3>Starter</h3>
<p class="card-015__price"><span>$12</span>/month</p>
<ul><li>3 projects</li><li>Unlimited pages</li><li>Email support</li></ul>
<a href="#">Choose Starter</a>
</article>Prompt
Build a 260px pricing card: white, 1px #e5e7eb border, 16px radius, 26px 24px padding. Plan name as an uppercase 14px #6b7280 label, then a 40px bold price "$12" in #111827 with "/month" in 14px gray. A feature list with 14px rows, each prefixed by a 14px green circle (#dcfce7 with a #16a34a checkmark). Full-width dark CTA button (#111827, 10px radius, 14px semibold white) that goes pure black on hover.