Pages Easy
Launch Hero Page
A clean product landing hero with nav, CTA buttons, and a three-point feature grid.
csslayoutgrid
Targets: HTML
Code
:root {
color-scheme: dark;
font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
background: radial-gradient(circle at top, #0f172a 0%, #020617 65%);
color: #e2e8f0;
}
.page {
min-height: 100vh;
padding: 28px 32px 64px;
}
.nav {
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
padding: 12px 0 32px;
}
.logo {
font-weight: 700;
letter-spacing: 0.04em;
}
.nav-links {
display: flex;
gap: 20px;
font-size: 0.9rem;
}
.nav-links a {
color: #94a3b8;
text-decoration: none;
}
.nav-cta {
background: rgba(56, 189, 248, 0.18);
color: #7dd3fc;
border: 1px solid rgba(56, 189, 248, 0.4);
padding: 8px 14px;
border-radius: 999px;
font-weight: 600;
}
.hero {
display: grid;
gap: 40px;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
align-items: center;
}
.hero-copy h1 {
font-size: clamp(2.2rem, 5vw, 3.4rem);
margin: 8px 0 16px;
color: #f8fafc;
}
.eyebrow {
text-transform: uppercase;
letter-spacing: 0.2em;
font-size: 0.7rem;
color: #38bdf8;
margin: 0;
}
.subtitle {
color: #94a3b8;
line-height: 1.6;
max-width: 540px;
}
.hero-actions {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin: 24px 0 28px;
}
.hero-actions button {
padding: 12px 18px;
border-radius: 14px;
border: none;
font-weight: 600;
font-size: 0.95rem;
cursor: pointer;
}
.primary {
background: #38bdf8;
color: #0f172a;
}
.secondary {
background: rgba(148, 163, 184, 0.15);
color: #e2e8f0;
border: 1px solid rgba(148, 163, 184, 0.2);
}
.hero-meta {
display: flex;
gap: 24px;
color: #94a3b8;
font-size: 0.85rem;
}
.meta-value {
display: block;
font-size: 1.1rem;
color: #f8fafc;
font-weight: 600;
}
.hero-panel {
background: rgba(15, 23, 42, 0.75);
border: 1px solid rgba(148, 163, 184, 0.2);
border-radius: 24px;
padding: 28px;
box-shadow: 0 20px 40px rgba(15, 23, 42, 0.35);
}
.hero-panel h2 {
margin: 0 0 20px;
font-size: 1.2rem;
}
.feature-grid {
display: grid;
gap: 18px;
}
.feature-grid article {
background: rgba(148, 163, 184, 0.08);
border-radius: 16px;
padding: 16px;
}
.feature-icon {
font-size: 1.2rem;
}
.feature-grid h3 {
margin: 12px 0 6px;
font-size: 1rem;
}
.feature-grid p {
margin: 0;
color: #94a3b8;
font-size: 0.9rem;
line-height: 1.5;
}
@media (max-width: 720px) {
.nav {
flex-direction: column;
align-items: flex-start;
}
.nav-links {
flex-wrap: wrap;
}
}Launch Hero Page
A single-page hero layout for product launches and waitlist pages. Uses a simple grid, gradient background, and a soft card panel for features.
Includes
- Sticky top nav with primary CTA
- Hero copy + dual CTA buttons
- Feature list with icon placeholders
Tips
- Swap the gradient colors to match your brand.
- Replace the feature cards with real metrics or testimonials.