```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CodeFlow - Developer Tool Pricing</title>
<style>
/* Reset and base styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: system-ui, -apple-system, sans-serif;
line-height: 1.6;
color: #333;
background-color: #f8f9fa;
padding: 2rem;
}
.container {
max-width: 1200px;
margin: 0 auto;
}
header {
text-align: center;
margin-bottom: 3rem;
}
h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
color: #1a1a1a;
}
.subtitle {
font-size: 1.2rem;
color: #555;
max-width: 700px;
margin: 0 auto;
}
/* Pricing grid */
.pricing-grid {
display: flex;
gap: 2rem;
justify-content: center;
}
.tier {
background: white;
border-radius: 8px;
padding: 2rem;
flex: 1;
min-width: 280px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease;
}
.tier:hover {
transform: translateY(-4px);
box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.tier.pro {
transform: scale(1.05);
position: relative;
z-index: 1;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.tier.pro:hover {
transform: scale(1.05) translateY(-4px);
}
.tier-name {
font-size: 1.5rem;
font-weight: 600;
margin-bottom: 0.5rem;
}
.tier-price {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: 0.5rem;
}
.tier-price span {
font-size: 1rem;
font-weight: 400;
}
.tier-description {
color: #666;
margin-bottom: 1.5rem;
font-size: 0.95rem;
}
.features {
list-style: none;
margin-bottom: 2rem;
padding: 0;
}
.features li {
padding: 0.5rem 0;
border-bottom: 1px solid #eee;
color: #555;
}
.features li::before {
content: "✓";
color: #2c7be5;
margin-right: 0.5rem;
font-weight: bold;
}
.cta {
display: block;
text-align: center;
background: #2c7be5;
color: white;
padding: 0.75rem 1rem;
border-radius: 4px;
text-decoration: none;
font-weight: 500;
transition: background 0.3s ease;
}
.cta:hover {
background: #1a68d1;
}
.cta-secondary {
background: #e2e8f0;
color: #333;
}
.cta-secondary:hover {
background: #d2d8e8;
}
/* Responsive */
@media (max-width: 768px) {
.pricing-grid {
flex-direction: column;
}
.tier.pro {
transform: scale(1);
}
.tier.pro:hover {
transform: scale(1) translateY(-4px);
}
}
@media (max-width: 480px) {
body {
padding: 1rem;
}
h1 {
font-size: 2rem;
}
.tier {
padding: 1.5rem;
}
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>Simple pricing for every developer</h1>
<p class="subtitle">Powerful collaboration tools for individuals, professionals, and teams building amazing software together.</p>
</header>
<div class="pricing-grid">
<!-- Hobby Tier -->
<div class="tier">
<h2 class="tier-name">Hobby</h2>
<div class="tier-price">$0 <span>/month</span></div>
<p class="tier-description">Perfect for side projects and learning</p>
<ul class="features">
<li>Up to 3 projects</li>
<li>5GB storage</li>
<li>Community support</li>
<li>Basic code analysis</li>
<li>Public repositories only</li>
</ul>
<a href="#" class="cta cta-secondary">Get Started</a>
</div>
<!-- Pro Tier -->
<div class="tier pro">
<h2 class="tier-name">Pro</h2>
<div class="tier-price">$20 <span>/month</span></div>
<p class="tier-description">Professional features for serious developers</p>
<ul class="features">
<li>Unlimited projects</li>
<li>50GB storage</li>
<li>Priority support</li>
<li>Advanced code analysis</li>
<li>Private repositories</li>
<li>CI/CD pipelines</li>
<li>Custom integrations</li>
</ul>
<a href="#" class="cta">Start Free Trial</a>
</div>
<!-- Team Tier -->
<div class="tier">
<h2 class="tier-name">Team</h2>
<div class="tier-price">$60 <span>/seat/month</span></div>
<p class="tier-description">Complete solution for growing development teams</p>
<ul class="features">
<li>Everything in Pro, plus:</li>
<li>Team management tools</li>
<li>Advanced analytics</li>
<li>Dedicated account manager</li>
<li>SSO and SAML support</li>
<li>99.9% uptime SLA</li>
<li>Custom onboarding</li>
<li>API access</li>
</ul>
<a href="#" class="cta cta-secondary">Contact Sales</a>
</div>
</div>
</div>
</body>
</html>
```