Enterprise two column
Enterprise two column: a CSS card. Copy the rules, or the prompt that rebuilds it.
Enterprise
CustomFor teams that need controls, contracts and a human on call.
- SSO and SCIM
- Audit logs
- 99.99% SLA
- Data residency
- Custom roles
- Dedicated CSM
CSS
.card-067 {
position: relative;
width: 340px;
padding: 26px;
background: #fff;
border: 1px solid #e5e7eb;
border-radius: 18px;
overflow: hidden;
font-family: system-ui,sans-serif;
color: #111827
}
.card-067::before {
content: "";
position: absolute;
left: 0;
right: 0;
top: 0;
height: 5px;
background: linear-gradient(90deg,#0ea5e9,#8b5cf6,#ec4899)
}
.card-067 header {
display: flex;
justify-content: space-between;
align-items: baseline
}
.card-067 h3 {
margin: 0;
font-size: 20px
}
.card-067 header span {
font-size: 26px;
font-weight: 800;
letter-spacing: -.02em
}
.card-067 p {
margin: 8px 0 18px;
font-size: 13px;
line-height: 1.5;
color: #6b7280
}
.card-067 ul {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 8px 12px;
margin: 0 0 22px;
padding: 0;
list-style: none;
font-size: 13px
}
.card-067 li {
padding-left: 18px;
position: relative
}
.card-067 li::before {
content: "";
position: absolute;
left: 0;
top: 5px;
width: 10px;
height: 10px;
border-radius: 50%;
background: linear-gradient(135deg,#0ea5e9,#8b5cf6)
}
.card-067 a {
display: block;
padding: 12px;
text-align: center;
border-radius: 10px;
border: 2px solid #111827;
color: #111827;
font-weight: 700;
font-size: 14px;
text-decoration: none;
transition: background .15s,color .15s
}
.card-067 a:hover {
background: #111827;
color: #fff
}
.card-067 :is(a,button,input,select,textarea):focus-visible { outline: 2px solid currentColor; outline-offset: 2px; }
HTML
<article class="card-067">
<header><h3>Enterprise</h3><span>Custom</span></header>
<p>For teams that need controls, contracts and a human on call.</p>
<ul><li>SSO and SCIM</li><li>Audit logs</li><li>99.99% SLA</li><li>Data residency</li><li>Custom roles</li><li>Dedicated CSM</li></ul>
<a href="#">Talk to sales</a>
</article>Prompt
Create a 340px enterprise pricing card: white, 1px #e5e7eb border, 18px radius, 26px padding, with a 5px gradient strip along the top edge (90deg #0ea5e9, #8b5cf6, #ec4899). Header row: 20px plan name "Enterprise" left, 26px extra-bold "Custom" right. A 13px #6b7280 description, then six features in a two-column grid (13px, each with a 10px gradient dot bullet). CTA "Talk to sales" is a full-width outlined button with a 2px #111827 border that fills black with white text on hover.