Neumorphic pricing cards with feature lists, billing toggle, and highlighted plans.
For individuals getting started
For growing teams and businesses
For large organizations
<div class="sui-pricing">
<div class="sui-pricing-card">
<h3 class="sui-pricing-name">Free</h3>
<p class="sui-pricing-desc">For individuals getting started</p>
<div class="sui-pricing-price">
<span class="sui-pricing-currency">$</span>
<span class="sui-pricing-amount">0</span>
</div>
<div class="sui-pricing-period">per month</div>
<ul class="sui-pricing-features">
<li>1 project</li>
<li>500 MB storage</li>
<li class="disabled">Custom domain</li>
</ul>
<div class="sui-pricing-cta">
<button class="sui-btn sui-btn-outline sui-btn-block">Get Started</button>
</div>
</div>
<div class="sui-pricing-card sui-pricing-featured">
<span class="sui-pricing-badge">Most Popular</span>
<h3 class="sui-pricing-name">Pro</h3>
<p class="sui-pricing-desc">For growing teams</p>
<div class="sui-pricing-price">
<span class="sui-pricing-currency">$</span>
<span class="sui-pricing-amount">29</span>
</div>
<div class="sui-pricing-period">per month</div>
<ul class="sui-pricing-features">
<li>Unlimited projects</li>
<li>50 GB storage</li>
<li>Priority support</li>
<li class="disabled">Dedicated manager</li>
</ul>
<div class="sui-pricing-cta">
<button class="sui-btn sui-btn-primary sui-btn-block">Upgrade to Pro</button>
</div>
</div>
<div class="sui-pricing-card">
<h3 class="sui-pricing-name">Enterprise</h3>
<p class="sui-pricing-desc">For large organizations</p>
<div class="sui-pricing-price">
<span class="sui-pricing-currency">$</span>
<span class="sui-pricing-amount">99</span>
</div>
<div class="sui-pricing-period">per month</div>
<ul class="sui-pricing-features">
<li>Unlimited everything</li>
<li>1 TB storage</li>
<li>24/7 phone support</li>
<li>Dedicated manager</li>
</ul>
<div class="sui-pricing-cta">
<button class="sui-btn sui-btn-outline sui-btn-block">Contact Sales</button>
</div>
</div>
</div>Toggle between monthly and annual pricing. Annual prices show with a savings badge.
Perfect for side projects
For growing teams
For large organizations
<div class="sui-pricing-toggle">
<span class="sui-pricing-toggle-active">Monthly</span>
<label class="sui-toggle sui-toggle-sm sui-toggle-primary">
<input type="checkbox" id="billingToggle">
<span class="sui-toggle-slider"></span>
</label>
<span>Annual</span>
<span class="sui-pricing-save">Save 20%</span>
</div>
<div class="sui-pricing">
<div class="sui-pricing-card">
<h3 class="sui-pricing-name">Starter</h3>
<p class="sui-pricing-desc">Perfect for side projects</p>
<div class="sui-pricing-price">
<span class="sui-pricing-currency">$</span>
<span class="sui-pricing-amount" data-monthly="9" data-annual="7">9</span>
</div>
<div class="sui-pricing-period" data-monthly="per month" data-annual="per month, billed annually">per month</div>
<ul class="sui-pricing-features">
<li>5 projects</li>
<li>5 GB storage</li>
</ul>
<div class="sui-pricing-cta">
<button class="sui-btn sui-btn-outline sui-btn-block">Choose Starter</button>
</div>
</div>
</div>
<script>
document.getElementById('billingToggle').addEventListener('change', function() {
var key = this.checked ? 'annual' : 'monthly';
document.querySelectorAll('.sui-pricing-amount[data-monthly]').forEach(function(el) {
el.textContent = el.getAttribute('data-' + key);
});
document.querySelectorAll('.sui-pricing-period[data-monthly]').forEach(function(el) {
el.textContent = el.getAttribute('data-' + key);
});
});
</script>Add sui-pricing-selectable to make cards clickable with radio-style selection. Click a card to select it. Use data-plan to identify the selected plan.
Essential features
Everything you need
For large organizations
<div class="sui-pricing sui-pricing-selectable">
<div class="sui-pricing-card" data-plan="basic">
<h3 class="sui-pricing-name">Basic</h3>
<p class="sui-pricing-desc">Essential features</p>
<div class="sui-pricing-price">
<span class="sui-pricing-currency">$</span>
<span class="sui-pricing-amount">12</span>
</div>
<div class="sui-pricing-period">per month</div>
<ul class="sui-pricing-features">
<li>10 projects</li>
<li>10 GB storage</li>
<li class="disabled">Custom domain</li>
</ul>
</div>
<div class="sui-pricing-card selected" data-plan="business">
<span class="sui-pricing-badge">Recommended</span>
<h3 class="sui-pricing-name">Business</h3>
<p class="sui-pricing-desc">Everything you need</p>
<div class="sui-pricing-price">
<span class="sui-pricing-currency">$</span>
<span class="sui-pricing-amount">39</span>
</div>
<div class="sui-pricing-period">per month</div>
<ul class="sui-pricing-features">
<li>Unlimited projects</li>
<li>100 GB storage</li>
<li>Priority support</li>
</ul>
</div>
</div>
<script>
document.querySelector('.sui-pricing-selectable')
.addEventListener('change', function() {
console.log('Selected:', this.getAttribute('data-selected'));
});
</script>Essential features
Everything you need
<div class="sui-pricing sui-pricing-inset sui-pricing-selectable">
<div class="sui-pricing-card" data-plan="basic">
<h3 class="sui-pricing-name">Basic</h3>
<p class="sui-pricing-desc">Essential features</p>
<div class="sui-pricing-price">
<span class="sui-pricing-currency">$</span>
<span class="sui-pricing-amount">12</span>
</div>
<div class="sui-pricing-period">per month</div>
<ul class="sui-pricing-features">
<li>10 projects</li>
<li>10 GB storage</li>
</ul>
</div>
<div class="sui-pricing-card selected" data-plan="business">
<span class="sui-pricing-badge">Recommended</span>
<h3 class="sui-pricing-name">Business</h3>
<p class="sui-pricing-desc">Everything you need</p>
<div class="sui-pricing-price">
<span class="sui-pricing-currency">$</span>
<span class="sui-pricing-amount">39</span>
</div>
<div class="sui-pricing-period">per month</div>
<ul class="sui-pricing-features">
<li>Unlimited projects</li>
<li>100 GB storage</li>
</ul>
</div>
</div>This is a neumorphic modal dialog. It features backdrop blur, smooth animations, and focus trap. Press Escape or click outside to close.
Your session will expire in 5 minutes. Would you like to stay signed in?
This action cannot be undone. This will permanently delete the item and remove all associated data.
This modal takes up the entire viewport. Useful for immersive content, editors, or media viewers.
Press Escape or click the close button to dismiss.
By accessing and using this service, you accept and agree to be bound by the terms and provision of this agreement. In addition, when using these particular services, you shall be subject to any posted guidelines or rules applicable to such services. Any participation in this service will constitute acceptance of this agreement.
Permission is granted to temporarily download one copy of the materials on this website for personal, non-commercial transitory viewing only. This is the grant of a license, not a transfer of title, and under this license you may not modify or copy the materials, use the materials for any commercial purpose, attempt to reverse engineer any software, or remove any copyright notations.
The materials on this website are provided on an 'as is' basis. We make no warranties, expressed or implied, and hereby disclaim and negate all other warranties including, without limitation, implied warranties or conditions of merchantability, fitness for a particular purpose, or non-infringement of intellectual property.
In no event shall this company or its suppliers be liable for any damages (including, without limitation, damages for loss of data or profit, or due to business interruption) arising out of the use or inability to use the materials, even if we have been notified orally or in writing of the possibility of such damage.
The materials appearing on this website could include technical, typographical, or photographic errors. We do not warrant that any of the materials on its website are accurate, complete or current. We may make changes to the materials contained on its website at any time without notice.
We have not reviewed all of the sites linked to this website and are not responsible for the contents of any such linked site. The inclusion of any link does not imply endorsement. Use of any such linked web site is at the user's own risk.
We may revise these terms of service for this website at any time without notice. By using this website you are agreeing to be bound by the then current version of these terms of service. Any changes will be posted on this page with an updated revision date.
These terms and conditions are governed by and construed in accordance with applicable laws and you irrevocably submit to the exclusive jurisdiction of the courts in that location. If any provision of these terms shall be unlawful, void, or unenforceable, then that provision shall be deemed severable and shall not affect the validity of the remaining provisions.
Clicking outside this modal won't close it. Instead, the modal will shake to indicate it requires explicit action. Use the close button or press Escape to dismiss.
This modal has no backdrop blur. The background is visible but dimmed.
A subtle 3px backdrop blur. Content behind is slightly softened.
A heavy 12px backdrop blur. Background is barely recognizable.
Maximum 20px blur. Background is fully frosted.
This is a default right-side sheet. It slides in from the right edge of the screen with a blurred backdrop.
Sheets are great for navigation menus, settings panels, detail views, and forms that don't need to interrupt the main content flow.
This sheet slides down from the top. Great for announcements, notification panels, or search interfaces.
This is a small (280px) right-side sheet.
This is a large (480px) right-side sheet. Great for forms, detail views, or complex content.
Clicking outside this sheet won't close it. The sheet will shake to indicate it requires explicit action. Use the close button or press Escape.