<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DevStack Pricing</title>
<style>
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
background-color: #f5f5f7;
color: #1d1d1f;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 48px 24px;
line-height: 1.5;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.pricing-wrapper {
max-width: 1050px;
width: 100%;
}
.pricing-header {
text-align: center;
margin-bottom: 56px;
}
.pricing-header .label {
display: inline-block;
font-size: 0.8rem;
font-weight: 600;
letter-spacing: 0.06em;
text-transform: uppercase;
color: #6b6b7b;
background-color: #e8e8ed;
padding: 5px 14px;
border-radius: 20px;
margin-bottom: 16px;
}
.pricing-header h1 {
font-size: 2.6rem;
font-weight: 700;
letter-spacing: -0.02em;
color: #1d1d1f;
margin-bottom: 10px;
}
.pricing-header p {
font-size: 1.1rem;
color: #6b6b7b;
max-width: 480px;
margin: 0 auto;
}
.pricing-grid {
display: flex;
gap: 0;
align-items: stretch;
justify-content: center;
background-color: #ffffff;
border-radius: 20px;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 8px 32px rgba(0, 0, 0, 0.06);
overflow: visible;
}
.tier-card {
flex: 1 1 0;
min-width: 0;
padding: 40px 32px 36px;
display: flex;
flex-direction: column;
background-color: #ffffff;
border-right: 1px solid #eaeaef;
position: relative;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tier-card:last-child {
border-right: none;
}
.tier-card:first-child {
border-radius: 20px 0 0 20px;
}
.tier-card:last-child {
border-radius: 0 20px 20px 0;
}
.tier-card.featured {
background-color: #fafafc;
border-radius: 22px;
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04), 0 4px 24px rgba(0, 0, 0, 0.10), 0 1px 3px rgba(0, 0, 0, 0.04);
z-index: 2;
margin: -14px -4px;
padding: 54px 36px 50px;
border-right: none;
border-left: none;
}
.tier-card.featured::before {
content: '';
position: absolute;
top: 0;
left: 16px;
right: 16px;
height: 3px;
background: linear-gradient(90deg, #5e5ce6, #8b8aee, #5e5ce6);
border-radius: 0 0 8px 8px;
opacity: 0.9;
}
.tier-name {
font-size: 1rem;
font-weight: 600;
letter-spacing: 0.03em;
text-transform: uppercase;
color: #8e8e9a;
margin-bottom: 12px;
}
.tier-card.featured .tier-name {
color: #5e5ce6;
font-weight: 700;
}
.price-block {
margin-bottom: 6px;
display: flex;
align-items: baseline;
gap: 2px;
flex-wrap: wrap;
}
.price-currency {
font-size: 1.3rem;
font-weight: 600;
color: #1d1d1f;
align-self: flex-start;
margin-top: 6px;
}
.price-amount {
font-size: 3rem;
font-weight: 700;
letter-spacing: -0.03em;
color: #1d1d1f;
line-height: 1;
}
.price-period {
font-size: 0.95rem;
color: #8e8e9a;
font-weight: 500;
margin-left: 2px;
}
.price-free {
font-size: 3rem;
font-weight: 700;
letter-spacing: -0.03em;
color: #1d1d1f;
line-height: 1;
}
.positioning-statement {
font-size: 0.9rem;
color: #6b6b7b;
margin-bottom: 28px;
min-height: 42px;
line-height: 1.45;
}
.feature-list {
list-style: none;
margin-bottom: 32px;
flex-grow: 1;
}
.feature-list li {
font-size: 0.9rem;
color: #3a3a44;
padding: 7px 0;
padding-left: 26px;
position: relative;
line-height: 1.4;
}
.feature-list li::before {
content: '';
position: absolute;
left: 0;
top: 11px;
width: 16px;
height: 16px;
background-color: #e8e8f4;
border-radius: 50%;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%235e5ce6' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
background-size: 10px 10px;
background-position: center;
background-repeat: no-repeat;
}
.tier-card.featured .feature-list li::before {
background-color: #e0dff8;
}
.feature-list li.muted {
color: #b0b0ba;
}
.feature-list li.muted::before {
background-color: #f0f0f3;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23c0c0cc' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
}
.cta-button {
display: block;
width: 100%;
text-align: center;
padding: 13px 20px;
border-radius: 10px;
font-size: 0.95rem;
font-weight: 600;
letter-spacing: 0.01em;
text-decoration: none;
cursor: pointer;
border: none;
transition: all 0.15s ease;
font-family: inherit;
background-color: #1d1d1f;
color: #ffffff;
}
.cta-button:hover {
background-color: #3a3a44;
transform: translateY(-1px);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.cta-button:active {
transform: translateY(0);
box-shadow: none;
}
.cta-button.secondary {
background-color: #f0f0f4;
color: #1d1d1f;
}
.cta-button.secondary:hover {
background-color: #e4e4ea;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.cta-button.primary {
background-color: #5e5ce6;
color: #ffffff;
}
.cta-button.primary:hover {
background-color: #4b49d4;
box-shadow: 0 6px 20px rgba(94, 92, 230, 0.35);
}
@media (max-width: 800px) {
body {
padding: 32px 16px;
justify-content: flex-start;
}
.pricing-header {
margin-bottom: 32px;
}
.pricing-header h1 {
font-size: 2rem;
}
.pricing-header p {
font-size: 1rem;
}
.pricing-grid {
flex-direction: column;
gap: 16px;
background-color: transparent;
box-shadow: none;
border-radius: 0;
}
.tier-card {
border-radius: 16px !important;
border-right: none;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 6px 20px rgba(0, 0, 0, 0.05);
padding: 32px 24px 30px;
margin: 0;
}
.tier-card.featured {
margin: 0;
padding: 36px 28px 34px;
border-radius: 18px !important;
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04), 0 4px 24px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.04);
order: -1;
}
.tier-card.featured::before {
left: 20px;
right: 20px;
height: 3px;
}
.positioning-statement {
min-height: auto;
margin-bottom: 20px;
}
.price-amount,
.price-free {
font-size: 2.4rem;
}
}
@media (max-width: 420px) {
.pricing-header h1 {
font-size: 1.7rem;
}
.tier-card {
padding: 24px 18px 22px;
}
.tier-card.featured {
padding: 28px 20px 26px;
}
.price-amount,
.price-free {
font-size: 2rem;
}
.cta-button {
padding: 12px 16px;
font-size: 0.9rem;
}
}
</style>
</head>
<body>
<div class="pricing-wrapper">
<header class="pricing-header">
<span class="label">Pricing</span>
<h1>Start building for free</h1>
<p>Choose the plan that fits your workflow. Upgrade anytime as your projects scale.</p>
</header>
<div class="pricing-grid">
<div class="tier-card">
<span class="tier-name">Hobby</span>
<div class="price-block">
<span class="price-free">Free</span>
</div>
<p class="positioning-statement">For tinkering and personal side projects.</p>
<ul class="feature-list">
<li>1 private repository</li>
<li>Community support</li>
<li>500 build minutes / month</li>
<li>1 GB storage</li>
<li>Basic analytics</li>
<li class="muted">CI/CD pipelines</li>
<li class="muted">Team collaboration</li>
<li class="muted">SSO & SAML</li>
</ul>
<a href="#" class="cta-button secondary">Get started</a>
</div>
<div class="tier-card featured">
<span class="tier-name">Pro</span>
<div class="price-block">
<span class="price-currency">$</span>
<span class="price-amount">20</span>
<span class="price-period">/mo</span>
</div>
<p class="positioning-statement">For serious developers shipping real products.</p>
<ul class="feature-list">
<li>Unlimited repositories</li>
<li>Priority support</li>
<li>5,000 build minutes / month</li>
<li>50 GB storage</li>
<li>Advanced analytics</li>
<li>CI/CD pipelines</li>
<li>Team collaboration (up to 5)</li>
<li class="muted">SSO & SAML</li>
</ul>
<a href="#" class="cta-button primary">Start free trial</a>
</div>
<div class="tier-card">
<span class="tier-name">Team</span>
<div class="price-block">
<span class="price-currency">$</span>
<span class="price-amount">60</span>
<span class="price-period">/seat/mo</span>
</div>
<p class="positioning-statement">For scaling organisations with multiple teams.</p>
<ul class="feature-list">
<li>Everything in Pro</li>
<li>Dedicated support</li>
<li>50,000 build minutes / month</li>
<li>500 GB storage</li>
<li>Real-time observability</li>
<li>Unlimited CI/CD pipelines</li>
<li>Unlimited team members</li>
<li>SSO & SAML</li>
</ul>
<a href="#" class="cta-button secondary">Contact sales</a>
</div>
</div>
</div>
</body>
</html>