Back to CSS Pricing Sections Bento Pricing Grid Pure CSS
Share
.ps-bnt {
  padding: clamp(28px, 5vw, 56px) clamp(20px, 4vw, 40px);
  min-height: 480px;
  background: #1a0d0d;
  color: #ffe7df;
  font-family: 'Inter', system-ui, sans-serif;
}
.ps-bnt-head { text-align: center; margin-bottom: clamp(24px, 4vw, 36px); }
.ps-bnt-head h2 {
  font-size: clamp(22px, 3.4vw, 34px); font-weight: 700;
  letter-spacing: -0.02em; margin: 0 0 8px;
  color: #ffd0bf;
}
.ps-bnt-head p { color: #b89180; margin: 0 auto; max-width: 480px; font-size: 14px; }
.ps-bnt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  grid-template-areas:
    "pro pro free stat"
    "pro pro team quote";
  gap: 14px;
  max-width: 980px; margin: 0 auto;
}
.ps-bnt-tile {
  background: #2a1612;
  border: 1px solid rgba(255,108,79,0.15);
  border-radius: 16px;
  padding: 22px 20px;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 130px;
}
.ps-bnt-pro {
  grid-area: pro;
  background: linear-gradient(135deg, #ff6b4a 0%, #f43f5e 100%);
  border: 0;
  color: #1a0d0d;
  position: relative;
  overflow: hidden;
}
.ps-bnt-pro::after {
  content: ''; position: absolute; right: -40px; bottom: -40px;
  width: 160px; height: 160px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 70%);
  pointer-events: none;
}
.ps-bnt-pill {
  display: inline-block; align-self: flex-start;
  background: #1a0d0d; color: #ff6b4a;
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 5px 11px;
  border-radius: 999px; margin-bottom: 8px;
}
.ps-bnt-tile h3 { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; margin: 0 0 6px; opacity: 0.8; }
.ps-bnt-pro h3 { color: #1a0d0d; opacity: 1; font-weight: 700; }
.ps-bnt-price {
  font-size: clamp(36px, 5vw, 56px); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1;
  margin-bottom: 12px;
}
.ps-bnt-price em { font-size: 0.5em; font-style: normal; vertical-align: top; padding-right: 2px; opacity: 0.7; }
.ps-bnt-price span { font-size: 0.28em; font-weight: 500; opacity: 0.7; margin-left: 6px; }
.ps-bnt-pro ul {
  list-style: none; padding: 0; margin: 0 0 18px;
  font-size: 13px; line-height: 1.9;
}
.ps-bnt-pro ul li::before { content: '✓'; display: inline-block; width: 20px; font-weight: 700; }
.ps-bnt-tile p {
  font-size: 13px; line-height: 1.5; color: #b89180; margin: 0 0 12px;
}
.ps-bnt-cta, .ps-bnt-cta-sm {
  display: inline-block; padding: 10px 16px; border-radius: 8px;
  text-decoration: none; font-size: 13.5px; font-weight: 600;
  border: 1px solid currentColor; color: inherit;
  transition: background 0.18s, color 0.18s;
}
.ps-bnt-cta { background: #1a0d0d; color: #ff6b4a; border-color: #1a0d0d; align-self: flex-start; }
.ps-bnt-cta:hover { background: transparent; color: #fff; border-color: #fff; }
.ps-bnt-cta-sm { color: #ff6b4a; border-color: rgba(255,108,79,0.4); padding: 8px 14px; align-self: flex-start; font-size: 12.5px; }
.ps-bnt-cta-sm:hover { background: #ff6b4a; color: #1a0d0d; border-color: #ff6b4a; }
.ps-bnt-cta:focus-visible, .ps-bnt-cta-sm:focus-visible { outline: 2px solid #ffe7df; outline-offset: 3px; }
.ps-bnt-stat { grid-area: stat; align-items: flex-start; background: #2a1612; }
.ps-bnt-stat-num {
  font-size: clamp(36px, 5vw, 50px); font-weight: 800;
  letter-spacing: -0.03em; color: #ff6b4a;
  background: linear-gradient(180deg, #ffb37a, #ff6b4a);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.ps-bnt-stat-lbl { font-size: 12px; color: #b89180; line-height: 1.4; }
.ps-bnt-team { grid-area: team; }
.ps-bnt-free { grid-area: free; }
.ps-bnt-quote {
  grid-area: quote;
  background: linear-gradient(135deg, #f43f5e 0%, #be123c 100%);
  color: #1a0d0d; border: 0;
}
.ps-bnt-quote p { font-style: italic; color: #1a0d0d; font-weight: 500; line-height: 1.5; font-size: 13px; opacity: 0.92; }
.ps-bnt-quote cite { font-style: normal; font-size: 11px; color: rgba(26,13,13,0.7); letter-spacing: 0.05em; }
@media (max-width: 820px) {
  .ps-bnt-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "pro pro"
      "free team"
      "stat quote";
  }
}
@media (max-width: 520px) {
  .ps-bnt-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "pro"
      "free"
      "team"
      "stat"
      "quote";
  }
}
<section class="ps-bnt" aria-label="Pricing">
  <header class="ps-bnt-head">
    <h2>Pricing in tiles, not tiers.</h2>
    <p>One canvas, three offers, and the proof points that make the choice obvious.</p>
  </header>
  <div class="ps-bnt-grid">
    <article class="ps-bnt-tile ps-bnt-pro">
      <span class="ps-bnt-pill">Recommended</span>
      <h3>Pro</h3>
      <div class="ps-bnt-price"><em>$</em>34<span>/mo</span></div>
      <ul>
        <li>Unlimited projects</li>
        <li>100 GB storage</li>
        <li>Priority support</li>
        <li>Custom domains</li>
      </ul>
      <a class="ps-bnt-cta" href="#pro">Choose Pro →</a>
    </article>
    <article class="ps-bnt-tile ps-bnt-free">
      <h3>Free</h3>
      <div class="ps-bnt-price"><em>$</em>0<span>forever</span></div>
      <p>Build something small, ship it, keep it free.</p>
      <a class="ps-bnt-cta-sm" href="#free">Start free →</a>
    </article>
    <article class="ps-bnt-tile ps-bnt-stat">
      <span class="ps-bnt-stat-num">14k+</span>
      <span class="ps-bnt-stat-lbl">teams pay for Pro every month</span>
    </article>
    <article class="ps-bnt-tile ps-bnt-team">
      <h3>Team</h3>
      <div class="ps-bnt-price"><em>$</em>99<span>/mo</span></div>
      <p>Roles, billing, and audit logs for growing companies.</p>
      <a class="ps-bnt-cta-sm" href="#team">Choose Team →</a>
    </article>
    <article class="ps-bnt-tile ps-bnt-quote">
      <p>“We tried five tools. This was the only one priced like a partner, not a tax.”</p>
      <cite>— Lior, CTO at Pulse</cite>
    </article>
  </div>
</section>
Live preview Edit any tab — preview updates live Ready