Cards & Bento Layouts 3 Production-Ready Templates

Modern Bento Grids & 3D Tilt Cards

Showcase features with asymmetrical modern Bento Grids, physics-based 3D tilt hover cards, and interactive pricing tier switchers.

Responsive Grid 3D Perspective 1-Click Code Copy
Bento Architecture

1. Modern Responsive Bento Grid

Multi-span modular feature cards with gradient badges and clean typographic hierarchy.

Real-Time Sync

Instant Database Replication

Synchronize tables globally across 35 edge regions with sub-10ms query latency.

Zero Cold Starts

V8 isolate architecture.

0.02ms
🔒

End-to-End SSL

Automated TLS cert rotation.

A+ Security Grade

Granular Audit Logging

Track every single API query, team mutation, and permission update in structured JSON format.

<div class="bento-grid">
  <div class="bento-item span-2 hero-box">
    <span class="bento-badge">Real-Time Sync</span>
    <h3>Instant Database Replication</h3>
    <p>Synchronize tables globally across 35 edge regions with sub-10ms query latency.</p>
  </div>

  <div class="bento-item stat-box">
    <h4>Zero Cold Starts</h4>
    <span class="stat-number">0.02ms</span>
  </div>

  <div class="bento-item">
    <h4>End-to-End SSL</h4>
    <span class="security-grade">A+ Security Grade</span>
  </div>

  <div class="bento-item span-2">
    <h4>Granular Audit Logging</h4>
    <p>Track every single API query, team mutation, and permission update in structured JSON format.</p>
  </div>
</div>
Interactive 3D Physics

2. 3D Mouse-Tracking Tilt Card

Realistic perspective rotation tracking mouse cursor coordinates across the card surface.

Master Edition💳

Developer Black Card

Unlimited local compute & zero cloud telemetry.

•••• 8821EXP: 12/29
<div class="tilt-container">
  <div class="tilt-card" id="myTiltCard">
    <div class="card-header">
      <span class="card-tag">Master Edition</span>
      <span class="card-icon">💳</span>
    </div>
    <h3 class="card-title">Developer Black Card</h3>
    <p class="card-desc">Unlimited local compute & zero cloud telemetry.</p>
    <div class="card-footer">
      <span>•••• 8821</span>
      <span>EXP: 12/29</span>
    </div>
  </div>
</div>
Interactive Pricing

3. Interactive Pricing Switcher Card

High-converting pricing card with monthly/annual billing toggle switch.

Pro Developer
$29/ month

Ideal for growing developer teams and full-stack builders.

  • Unlimited client-side requests
  • 35 global edge points
  • Priority Discord support
Upgrade to Pro
<div class="pricing-container">
  <!-- Toggle Switch -->
  <div class="billing-switcher">
    <button class="switch-btn active" id="btnMonthly" onclick="setBillingPlan('monthly')">Monthly</button>
    <button class="switch-btn" id="btnAnnual" onclick="setBillingPlan('annual')">Annual (Save 20%)</button>
  </div>

  <!-- Pricing Card -->
  <div class="pricing-card">
    <span class="plan-badge">Pro Developer</span>
    <div class="price-wrap">
      <span id="price" class="price-val">$29</span>
      <span id="period" class="period-val">/ month</span>
    </div>
    <p class="plan-desc">Ideal for growing developer teams and full-stack builders.</p>
    <ul class="feature-list">
      <li><span class="check">✓</span> Unlimited client-side requests</li>
      <li><span class="check">✓</span> 35 global edge regions</li>
      <li><span class="check">✓</span> Priority Discord support</li>
    </ul>
    <a href="#upgrade" class="btn-buy">Upgrade to Pro</a>
  </div>
</div>

Frequently Asked Questions

What is a Bento Grid layout in web design?

Inspired by Japanese bento boxes, a Bento Grid is an asymmetrical modular layout that organizes features and stats into clean, rounded cards of varying widths and heights (e.g. 2-span and 1-span grid columns).

How does the 3D mouse tilt card work without heavy 3D engines?

It uses perspective: 1000px on the container and calculates mouse offset ratios on mousemove, applying a lightweight transform: rotateX() rotateY() to the card in real-time.

Can I easily add more pricing tiers or features to the pricing card?

Yes. The card uses simple repeating list items (<li>) with SVG checkmark icons and data-price attributes that update automatically when clicking the billing switch.