```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DevTool Pricing</title>
<style>
/* Reset and base styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
line-height: 1.6;
color: #333;
padding: 2rem;
background-color: #f8f9fa;
}
.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 tiers layout */
.pricing-grid {
display: flex;
gap: 2rem;
margin-top: 2rem;
}
.tier {
background: white;
border-radius: 8px;
padding: 2rem;
flex: 1;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: all 0.2s ease;
}
.tier:hover {
transform: translateY(-4px);
box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.tier-popular {
transform: scale(1.03);
position: relative;
z-index: 1;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.tier-name {
font-size: 1.5rem;
font-weight: 600;
margin-bottom: 0.5rem;
color: #1a1a1a;
}
.tier-price {
font-size: 2.25rem;
font-weight: 700;
margin-bottom: 0.5rem;
color: #1a1a1a;
}
.tier-price span {
font-size: 1rem;
font-weight: 400;
}
.tier-description {
color: #555;
margin-bottom: 1.5rem;
font-size: 1rem;
}
.features {
list-style: none;
margin-bottom: 2rem;
}
.features li {
padding: 0.5rem 0;
color: #555;
border-bottom: 1px solid #eee;
}
.features li::before {
content: "✓";
color: #2e8b57;
font-weight: bold;
margin-right: 0.5rem;
}
.cta-button {
display: block;
width: 100%;
padding: 0.75rem 1rem;
background-color: #0066cc;
color: white;
text-align: center;
border-radius: 6px;
font-weight: 500;
text-decoration: none;
border: none;
font-size: 1rem;
cursor: pointer;
transition: background-color 0.2s;
}
.cta-button:hover {
background-color: #0055aa;
}
.tier-free .cta-button {
background-color: #555;
}
.tier-free .cta-button:hover {
background-color: #444;
}
.tier-popular .cta-button {
background-color: #0055aa;
}
/* Responsive design */
@media (max-width: 768px) {
body {
padding: 1rem;
}
.pricing-grid {
flex-direction: column;
}
.tier {
margin-bottom: 1.5rem;
}
.tier-popular {
transform: scale(1);
}
h1 {
font-size: 2rem;
}
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>Simple Pricing for Every Developer</h1>
<p class="subtitle">Choose the right plan for your needs. Upgrade or downgrade at any time.</p>
</header>
<div class="pricing-grid">
<!-- Hobby Tier -->
<div class="tier tier-free">
<h2 class="tier-name">Hobby</h2>
<div class="tier-price">Free</div>
<p class="tier-description">Perfect for side projects and learning</p>
<ul class="features">
<li>Up to 5 projects</li>
<li>1 GB storage</li>
<li>Community support</li>
<li>Basic analytics</li>
<li>Public repositories only</li>
</ul>
<a href="#" class="cta-button">Get Started</a>
</div>
<!-- Pro Tier -->
<div class="tier tier-popular">
<h2 class="tier-name">Pro</h2>
<div class="tier-price">$20 <span>/month</span></div>
<p class="tier-description">Serious development with advanced features</p>
<ul class="features">
<li>Unlimited projects</li>
<li>50 GB storage</li>
<li>Priority email support</li>
<li>Advanced analytics</li>
<li>Private repositories</li>
<li>CI/CD pipelines</li>
<li>Custom domains</li>
</ul>
<a href="#" class="cta-button">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">Collaborate with your entire team</p>
<ul class="features">
<li>Everything in Pro</li>
<li>Team management tools</li>
<li>SSO and advanced permissions</li>
<li>Dedicated account manager</li>
<li>24/7 support</li>
<li>99.9% uptime SLA</li>
<li>Unlimited seats</li>
</ul>
<a href="#" class="cta-button">Contact Sales</a>
</div>
</div>
</div>
</body>
</html>
```