30 examples Responsive Uses JS intermediate

30 CSS Hero Sections

A CSS hero section is the first full-bleed band of a landing page — eyebrow tag, headline, sub-headline, primary CTA, and (often) a supporting visual. These 30 hand-coded heroes scale from gallery preview to full-page min-height: 100vh via clamp(), use semantic HTML (<section> + <h1>), and ship with no images — only inline SVG and pure-CSS gradients.

30 unique heroes 29 Pure CSS 1 CSS + JS 0 dependencies 100% copy-paste ready Updated May 3, 2026
01 / 30
Centered Classic
Pure CSS
v2.0 · Just shipped

Build CSS faster than ever.

Hand-coded patterns. Zero dependencies. Copy, paste, ship.

The default SaaS hero — centered eyebrow + headline + subhead + dual CTA. Reads cleanly at any width, scales from a card preview to a full-bleed page hero via `clamp()` height. Zero visual chrome to compete with the message.
Try it
.hs-c {
  width: 100%;
  min-height: clamp(220px, 28vh, 100vh);
  padding: clamp(20px, 4vh, 80px) clamp(16px, 4vw, 40px);
  background: radial-gradient(80% 60% at 50% 0%, rgba(124,108,255,0.18), transparent 70%), #0e0e16;
  display: flex; align-items: center; justify-content: center;
  font-family: system-ui, -apple-system, sans-serif;
  color: #f0eeff; text-align: center;
}
.hs-c-inner { max-width: 720px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.hs-c-eye {
  font-family: monospace; font-size: clamp(9px, 1.4vw, 11px);
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #a78bfa;
  padding: 4px 10px; border-radius: 12px;
  background: rgba(124,108,255,0.12); border: 1px solid rgba(124,108,255,0.3);
}
.hs-c-h {
  margin: 0; font-size: clamp(20px, 4.5vw, 56px);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.02em;
}
.hs-c-p { margin: 0; font-size: clamp(11px, 1.6vw, 17px); color: #b8b6d4; max-width: 480px; line-height: 1.5; }
.hs-c-cta { display: flex; gap: 8px; margin-top: 4px; flex-wrap: wrap; justify-content: center; }
.hs-c-btn {
  font-size: clamp(11px, 1.5vw, 14px); font-weight: 600;
  padding: 8px 16px; border-radius: 7px;
  text-decoration: none; transition: filter 0.15s, background 0.15s;
}
.hs-c-pri { background: linear-gradient(135deg, #7c6cff, #a78bfa); color: #fff; }
.hs-c-pri:hover { filter: brightness(1.12); }
.hs-c-sec { background: rgba(255,255,255,0.06); color: #f0eeff; border: 1px solid rgba(255,255,255,0.12); }
.hs-c-sec:hover { background: rgba(255,255,255,0.12); }
<section class="hs-c">
  <div class="hs-c-inner">
    <span class="hs-c-eye">v2.0 · Just shipped</span>
    <h1 class="hs-c-h">Build CSS faster than ever.</h1>
    <p class="hs-c-p">Hand-coded patterns. Zero dependencies. Copy, paste, ship.</p>
    <div class="hs-c-cta">
      <a class="hs-c-btn hs-c-pri" href="#">Get started</a>
      <a class="hs-c-btn hs-c-sec" href="#">View docs</a>
    </div>
  </div>
</section>
02 / 30
Split with Mockup
Pure CSS

Ship UIs in hours, not weeks.

Pre-built components and patterns that adapt to your design system.

Try it free →
Two-column hero — copy on the left, product mockup on the right (an inline SVG browser-window with placeholder content). Stacks vertically below 720px so the visual doesn't squeeze the text.
Try it
.hs-sp {
  width: 100%;
  min-height: clamp(220px, 28vh, 100vh);
  padding: clamp(20px, 4vh, 80px) clamp(16px, 4vw, 40px);
  background: linear-gradient(135deg, #0e0e16 0%, #1a1438 100%);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(12px, 3vw, 40px);
  align-items: center;
  font-family: system-ui, sans-serif; color: #f0eeff;
}
@media (max-width: 720px) { .hs-sp { grid-template-columns: 1fr; } }
.hs-sp-l h1 {
  margin: 0 0 8px; font-size: clamp(18px, 4vw, 44px);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.02em;
}
.hs-sp-l p { margin: 0 0 12px; font-size: clamp(11px, 1.5vw, 16px); color: #b8b6d4; line-height: 1.5; }
.hs-sp-cta {
  display: inline-block; padding: 7px 16px; border-radius: 7px;
  background: linear-gradient(135deg, #7c6cff, #a78bfa); color: #fff;
  font-size: clamp(11px, 1.5vw, 14px); font-weight: 600;
  text-decoration: none; transition: filter 0.15s;
}
.hs-sp-cta:hover { filter: brightness(1.12); }
.hs-sp-win {
  background: #18181f; border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px; overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.hs-sp-bar { background: rgba(0,0,0,0.4); padding: 6px 8px; display: flex; gap: 5px; }
.hs-sp-bar span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.hs-sp-bar span:first-child { background: #ff6c8a; }
.hs-sp-bar span:nth-child(2) { background: #f5a84a; }
.hs-sp-bar span:nth-child(3) { background: #2eb88a; }
.hs-sp-body { padding: 12px; display: flex; flex-direction: column; gap: 6px; }
.hs-sp-row { height: 6px; background: rgba(167,139,250,0.25); border-radius: 3px; width: 80%; }
.hs-sp-row-w { width: 50%; background: rgba(167,139,250,0.18); }
.hs-sp-card {
  height: 50px; border-radius: 5px;
  background: linear-gradient(135deg, rgba(124,108,255,0.4), rgba(255,108,138,0.3));
  margin-top: 4px;
}
<section class="hs-sp">
  <div class="hs-sp-l">
    <h1>Ship UIs in hours, not weeks.</h1>
    <p>Pre-built components and patterns that adapt to your design system.</p>
    <a class="hs-sp-cta" href="#">Try it free →</a>
  </div>
  <div class="hs-sp-r">
    <div class="hs-sp-win">
      <div class="hs-sp-bar"><span></span><span></span><span></span></div>
      <div class="hs-sp-body">
        <div class="hs-sp-row"></div>
        <div class="hs-sp-row hs-sp-row-w"></div>
        <div class="hs-sp-card"></div>
      </div>
    </div>
  </div>
</section>
03 / 30
Gradient Mesh
Pure CSS

Beautifully simple.

The future of design tooling — fast, opinionated, and ready to ship.

Start free trial
Layered radial-gradient blobs create a soft, painterly "mesh gradient" backdrop popularised by Stripe and Linear. No SVG, no images — just stacked `radial-gradient` layers that animate gently.
Try it
.hs-mesh {
  width: 100%;
  min-height: clamp(220px, 28vh, 100vh);
  padding: clamp(20px, 4vh, 80px) clamp(16px, 4vw, 40px);
  background:
    radial-gradient(35% 40% at 15% 25%, rgba(124,108,255,0.45), transparent 70%),
    radial-gradient(35% 40% at 85% 30%, rgba(255,108,138,0.40), transparent 70%),
    radial-gradient(45% 50% at 50% 90%, rgba(46,184,138,0.35), transparent 70%),
    radial-gradient(35% 35% at 80% 80%, rgba(245,168,74,0.30), transparent 70%),
    #0a0a14;
  display: flex; align-items: center; justify-content: center;
  font-family: system-ui, sans-serif; color: #fff; text-align: center;
  animation: hs-mesh-drift 14s ease-in-out infinite alternate;
}
.hs-mesh-inner { max-width: 640px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.hs-mesh h1 {
  margin: 0; font-size: clamp(22px, 5vw, 60px);
  font-weight: 800; line-height: 1.05; letter-spacing: -0.03em;
}
.hs-mesh p { margin: 0; font-size: clamp(11px, 1.6vw, 17px); color: rgba(255,255,255,0.85); line-height: 1.5; }
.hs-mesh-cta {
  display: inline-block; padding: 9px 20px; border-radius: 8px;
  background: rgba(255,255,255,0.95); color: #0e0e16;
  font-size: clamp(11px, 1.5vw, 14px); font-weight: 700;
  text-decoration: none; margin-top: 4px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.hs-mesh-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255,255,255,0.2); }
@keyframes hs-mesh-drift {
  0%   { background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0 0; }
  100% { background-position: 4% 3%, -4% 2%, 2% -3%, -3% -2%, 0 0; }
}
@media (prefers-reduced-motion: reduce) { .hs-mesh { animation: none; } }
<section class="hs-mesh">
  <div class="hs-mesh-inner">
    <h1>Beautifully simple.</h1>
    <p>The future of design tooling — fast, opinionated, and ready to ship.</p>
    <a class="hs-mesh-cta" href="#">Start free trial</a>
  </div>
</section>
04 / 30
Glass over Aurora
Pure CSS

The internet's design system.

A premium toolbox for crafting interfaces with intent.

Explore →
A frosted-glass card with `backdrop-filter: blur()` floating over a slow-drifting aurora gradient. Demonstrates the "glass on color" pattern used by macOS, Vercel's landing, and modern fintech apps.
Try it
.hs-aur {
  position: relative;
  width: 100%;
  min-height: clamp(220px, 28vh, 100vh);
  padding: clamp(20px, 4vh, 80px) clamp(16px, 4vw, 40px);
  background: #0e0e16;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  font-family: system-ui, sans-serif; color: #f0eeff;
}
.hs-aur-blob {
  position: absolute; border-radius: 50%; filter: blur(60px);
  animation: hs-aur-drift 18s ease-in-out infinite alternate;
}
.hs-aur-b1 { width: 60%; aspect-ratio: 1; background: rgba(124,108,255,0.5);  top: -20%; left: -10%; }
.hs-aur-b2 { width: 50%; aspect-ratio: 1; background: rgba(255,108,138,0.5);  bottom: -25%; right: -10%; animation-delay: -6s; }
.hs-aur-b3 { width: 40%; aspect-ratio: 1; background: rgba(46,184,138,0.45); top: 35%; left: 50%; animation-delay: -12s; }
.hs-aur-card {
  position: relative; z-index: 1;
  max-width: 480px; padding: clamp(16px, 3vw, 32px);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  text-align: center;
  display: flex; flex-direction: column; gap: 10px; align-items: center;
}
.hs-aur-card h1 {
  margin: 0; font-size: clamp(18px, 4vw, 44px);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.02em;
  color: #fff;
}
.hs-aur-card p { margin: 0; font-size: clamp(11px, 1.5vw, 15px); color: rgba(255,255,255,0.85); }
.hs-aur-cta {
  padding: 7px 16px; border-radius: 7px;
  background: #fff; color: #0e0e16;
  font-size: clamp(11px, 1.5vw, 13px); font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s;
}
.hs-aur-cta:hover { transform: translateY(-1px); }
@keyframes hs-aur-drift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(8%, -6%) scale(1.1); }
}
@media (prefers-reduced-motion: reduce) { .hs-aur-blob { animation: none; } }
<section class="hs-aur">
  <span class="hs-aur-blob hs-aur-b1"></span>
  <span class="hs-aur-blob hs-aur-b2"></span>
  <span class="hs-aur-blob hs-aur-b3"></span>
  <div class="hs-aur-card">
    <h1>The internet's design system.</h1>
    <p>A premium toolbox for crafting interfaces with intent.</p>
    <a class="hs-aur-cta" href="#">Explore →</a>
  </div>
</section>
05 / 30
Terminal Dev Hero
Pure CSS
$ open source

The CLI for modern teams.

One command to install. Three to ship.

~/project
$ npx codefronts init
✓ Installed 24 components
✓ Ready to ship
A developer-tool hero with an animated terminal prompt — typed command, blinking cursor, and a copy-install snippet card. Uses CSS `steps()` typing animation, no JS. Perfect for CLIs, dev tools, and open-source projects.
Try it
.hs-term {
  width: 100%;
  min-height: clamp(220px, 28vh, 100vh);
  padding: clamp(20px, 4vh, 80px) clamp(16px, 4vw, 40px);
  background: #07070d;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(12px, 3vw, 40px);
  align-items: center;
  font-family: system-ui, sans-serif; color: #f0eeff;
}
@media (max-width: 720px) { .hs-term { grid-template-columns: 1fr; } }
.hs-term-eye {
  font-family: 'SF Mono', monospace; font-size: clamp(9px, 1.4vw, 11px);
  color: #2eb88a; letter-spacing: 0.06em;
}
.hs-term-l h1 {
  margin: 6px 0 8px; font-size: clamp(18px, 4vw, 42px);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.02em;
}
.hs-term-l p { margin: 0; font-size: clamp(11px, 1.5vw, 15px); color: #b8b6d4; }
.hs-term-r {
  background: #0e0e16;
  border: 1px solid rgba(46,184,138,0.3);
  border-radius: 8px;
  padding: 10px 12px;
  font-family: 'SF Mono', monospace;
  font-size: clamp(10px, 1.4vw, 12.5px);
  box-shadow: 0 0 30px rgba(46,184,138,0.15);
}
.hs-term-bar {
  font-size: 9.5px; color: #6a6a85;
  padding-bottom: 6px; margin-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hs-term-line { display: flex; align-items: center; gap: 6px; line-height: 1.6; }
.hs-term-prompt { color: #2eb88a; }
.hs-term-cmd {
  color: #f0eeff;
  display: inline-block;
  overflow: hidden; white-space: nowrap;
  width: 0;
  animation: hs-term-type 2.4s steps(20, end) 0.3s forwards;
}
.hs-term-cur {
  width: 7px; height: 14px;
  background: #2eb88a;
  animation: hs-term-blink 1s step-end infinite;
}
.hs-term-out {
  color: #6a6a85; line-height: 1.7;
  opacity: 0;
  animation: hs-term-show 0.4s ease forwards;
}
.hs-term-out:nth-of-type(2) { animation-delay: 3s; }
.hs-term-out:nth-of-type(3) { animation-delay: 3.4s; }
.hs-term-ok { color: #2eb88a; }
@keyframes hs-term-type  { to { width: 100%; } }
@keyframes hs-term-blink { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } }
@keyframes hs-term-show  { from { opacity: 0; transform: translateY(2px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .hs-term-cmd { width: 100%; animation: none; }
  .hs-term-cur, .hs-term-out { animation: none; opacity: 1; }
}
<section class="hs-term">
  <div class="hs-term-l">
    <span class="hs-term-eye">$ open source</span>
    <h1>The CLI for modern teams.</h1>
    <p>One command to install. Three to ship.</p>
  </div>
  <div class="hs-term-r">
    <div class="hs-term-bar">~/project</div>
    <div class="hs-term-line">
      <span class="hs-term-prompt">$</span>
      <span class="hs-term-cmd">npx codefronts init</span>
      <span class="hs-term-cur"></span>
    </div>
    <div class="hs-term-out">✓ Installed 24 components</div>
    <div class="hs-term-out hs-term-ok">✓ Ready to ship</div>
  </div>
</section>
06 / 30
Video Loop Hero
Pure CSS
▶ AUTOPLAY

Show, don't tell.

Hero video that loops silently behind your story.

Watch the demo
A video-background hero pattern — overlay copy on top of a placeholder visual, dimmed by a dark gradient for legibility. Drop a real `<video autoplay muted loop>` in the slot to ship; the SVG illustration is a lightweight stand-in.
Try it
.hs-vid {
  position: relative;
  width: 100%;
  min-height: clamp(220px, 28vh, 100vh);
  padding: clamp(20px, 4vh, 80px) clamp(16px, 4vw, 40px);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  font-family: system-ui, sans-serif; color: #fff; text-align: center;
}
.hs-vid-bg, .hs-vid-overlay {
  position: absolute; inset: 0; z-index: 0;
}
.hs-vid-bg svg { width: 100%; height: 100%; display: block; }
.hs-vid-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%);
}
.hs-vid-c {
  position: relative; z-index: 1;
  max-width: 600px; display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hs-vid-tag {
  font-family: monospace; font-size: clamp(9px, 1.4vw, 11px);
  letter-spacing: 0.16em;
  color: #ff6c8a;
  padding: 3px 10px; border-radius: 12px;
  background: rgba(0,0,0,0.5); border: 1px solid rgba(255,108,138,0.4);
}
.hs-vid-c h1 {
  margin: 0; font-size: clamp(22px, 5vw, 60px);
  font-weight: 800; line-height: 1.05; letter-spacing: -0.03em;
}
.hs-vid-c p { margin: 0; font-size: clamp(11px, 1.5vw, 16px); color: rgba(255,255,255,0.85); }
.hs-vid-cta {
  padding: 9px 20px; border-radius: 7px;
  background: rgba(255,255,255,0.95); color: #0e0e16;
  font-size: clamp(11px, 1.5vw, 14px); font-weight: 700;
  text-decoration: none; margin-top: 4px;
  transition: transform 0.15s;
}
.hs-vid-cta:hover { transform: translateY(-1px); }
<section class="hs-vid">
  <div class="hs-vid-bg" aria-hidden="true">
    <svg viewBox="0 0 400 240" preserveAspectRatio="xMidYMid slice">
      <defs>
        <linearGradient id="hs-vid-g" x1="0" y1="0" x2="1" y2="1">
          <stop offset="0%" stop-color="#1a0840"/>
          <stop offset="50%" stop-color="#3d1a6b"/>
          <stop offset="100%" stop-color="#0a3d2a"/>
        </linearGradient>
      </defs>
      <rect width="400" height="240" fill="url(#hs-vid-g)"/>
      <circle cx="80"  cy="60"  r="40" fill="rgba(255,255,255,0.08)"/>
      <circle cx="320" cy="180" r="60" fill="rgba(124,108,255,0.16)"/>
      <circle cx="200" cy="120" r="80" fill="rgba(255,108,138,0.10)"/>
    </svg>
  </div>
  <div class="hs-vid-overlay"></div>
  <div class="hs-vid-c">
    <span class="hs-vid-tag">▶ AUTOPLAY</span>
    <h1>Show, don't tell.</h1>
    <p>Hero video that loops silently behind your story.</p>
    <a class="hs-vid-cta" href="#">Watch the demo</a>
  </div>
</section>
07 / 30
Social Proof Hero
Pure CSS
★★★★★ 4.9 · Loved by 12,000+ teams

The framework teams actually finish projects with.

Drop-in components. Real defaults. No 200-page handbook.

Start building →
Acme Globex Initech Hooli Stark
A hero with a star-rating pill above the headline ("Loved by 12,000+ teams") and a logo wall below — the credibility-stack pattern proven by Linear, Vercel, and Stripe. Builds trust before the CTA.
Try it
.hs-sp2 {
  width: 100%;
  min-height: clamp(220px, 28vh, 100vh);
  padding: clamp(20px, 4vh, 80px) clamp(16px, 4vw, 40px);
  background:
    radial-gradient(60% 40% at 50% 0%, rgba(124,108,255,0.16), transparent 70%),
    #0e0e16;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  font-family: system-ui, sans-serif; color: #f0eeff; text-align: center;
}
.hs-sp2-stars {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: clamp(10px, 1.4vw, 12px);
  padding: 4px 12px; border-radius: 14px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
}
.hs-sp2-stars > span:first-child { color: #f5a84a; letter-spacing: 1px; }
.hs-sp2-rating { color: #fff; font-weight: 700; }
.hs-sp2-count  { color: #b8b6d4; }
.hs-sp2 h1 {
  margin: 4px 0; font-size: clamp(18px, 4.5vw, 48px);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; max-width: 700px;
}
.hs-sp2 p { margin: 0; font-size: clamp(11px, 1.5vw, 16px); color: #b8b6d4; max-width: 520px; }
.hs-sp2-cta {
  padding: 9px 20px; border-radius: 7px;
  background: linear-gradient(135deg, #7c6cff, #a78bfa); color: #fff;
  font-size: clamp(11px, 1.5vw, 14px); font-weight: 700;
  text-decoration: none; margin-top: 4px;
  transition: filter 0.15s;
}
.hs-sp2-cta:hover { filter: brightness(1.12); }
.hs-sp2-logos {
  display: flex; flex-wrap: wrap; gap: clamp(12px, 3vw, 32px); justify-content: center;
  margin-top: clamp(8px, 2vh, 24px);
  padding-top: clamp(8px, 2vh, 24px);
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: Georgia, serif; font-style: italic; font-weight: 700;
  font-size: clamp(11px, 1.5vw, 15px);
  color: #6a6a85;
}
<section class="hs-sp2">
  <div class="hs-sp2-stars">
    <span>★★★★★</span>
    <span class="hs-sp2-rating">4.9</span>
    <span class="hs-sp2-count">· Loved by 12,000+ teams</span>
  </div>
  <h1>The framework teams actually finish projects with.</h1>
  <p>Drop-in components. Real defaults. No 200-page handbook.</p>
  <a class="hs-sp2-cta" href="#">Start building →</a>
  <div class="hs-sp2-logos">
    <span>Acme</span>
    <span>Globex</span>
    <span>Initech</span>
    <span>Hooli</span>
    <span>Stark</span>
  </div>
</section>
08 / 30
Animated Headline
Pure CSS

Design. Build. Ship.

A complete frontend toolkit for shipping real products.

See how it works
The headline lifts into view word-by-word using staggered `animation-delay` on inline-block words. The subhead and CTA fade in after — a quick attention-grab without feeling cinematic.
Try it
.hs-anim {
  width: 100%;
  min-height: clamp(220px, 28vh, 100vh);
  padding: clamp(20px, 4vh, 80px) clamp(16px, 4vw, 40px);
  background:
    radial-gradient(50% 50% at 50% 50%, rgba(124,108,255,0.14), transparent 70%),
    #0e0e16;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  font-family: system-ui, sans-serif; color: #f0eeff; text-align: center;
}
.hs-anim-h {
  margin: 0; font-size: clamp(28px, 7vw, 88px);
  font-weight: 900; line-height: 1; letter-spacing: -0.03em;
  display: flex; gap: clamp(8px, 1.5vw, 18px); flex-wrap: wrap; justify-content: center;
}
.hs-anim-h span {
  display: inline-block;
  background: linear-gradient(135deg, #fff 0%, #a78bfa 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  opacity: 0; transform: translateY(20px);
  animation: hs-anim-up 0.6s cubic-bezier(0.2, 0.9, 0.3, 1) forwards;
  animation-delay: calc(var(--d) * 150ms);
}
.hs-anim-p, .hs-anim-cta {
  opacity: 0;
  animation: hs-anim-fade 0.6s ease forwards;
}
.hs-anim-p { margin: 0; font-size: clamp(11px, 1.6vw, 17px); color: #b8b6d4; animation-delay: 700ms; }
.hs-anim-cta {
  padding: 9px 20px; border-radius: 7px;
  background: linear-gradient(135deg, #7c6cff, #a78bfa); color: #fff;
  font-size: clamp(11px, 1.5vw, 14px); font-weight: 700;
  text-decoration: none;
  animation-delay: 900ms;
  transition: filter 0.15s;
}
.hs-anim-cta:hover { filter: brightness(1.12); }
@keyframes hs-anim-up   { to { opacity: 1; transform: none; } }
@keyframes hs-anim-fade { to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  .hs-anim-h span, .hs-anim-p, .hs-anim-cta { animation: none; opacity: 1; transform: none; }
}
<section class="hs-anim">
  <h1 class="hs-anim-h">
    <span style="--d:0">Design.</span>
    <span style="--d:1">Build.</span>
    <span style="--d:2">Ship.</span>
  </h1>
  <p class="hs-anim-p">A complete frontend toolkit for shipping real products.</p>
  <a class="hs-anim-cta" href="#">See how it works</a>
</section>
09 / 30
Before/After Hero
CSS + JS
After
Before

See the difference.

Drag the slider to compare.

A hero that demos the product visually — split-screen "before / after" comparison driven by a draggable handle. Pure-CSS reveal via `clip-path` + a small input range slider for the position. Perfect for image-editing, design, and conversion tools.
Try it
.hs-ba {
  width: 100%;
  min-height: clamp(220px, 28vh, 100vh);
  padding: clamp(16px, 3vh, 60px) clamp(16px, 4vw, 40px);
  background: #0e0e16;
  display: flex; flex-direction: column; align-items: center; gap: 12px; justify-content: center;
  font-family: system-ui, sans-serif; color: #f0eeff;
}
.hs-ba-stage {
  position: relative;
  width: 100%; max-width: 480px; aspect-ratio: 16 / 9;
  border-radius: 10px; overflow: hidden;
  box-shadow: 0 12px 40px rgba(124,108,255,0.2);
}
.hs-ba-after, .hs-ba-before {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.hs-ba-after  { background: linear-gradient(135deg, #7c6cff, #ff6c8a); }
.hs-ba-before { background: linear-gradient(135deg, #2a2a3e, #1a1a2e); clip-path: inset(0 50% 0 0); transition: clip-path 0.05s linear; }
.hs-ba-label {
  font-family: monospace; font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 4px;
  background: rgba(0,0,0,0.5); color: #fff;
  position: absolute; top: 8px; right: 8px;
}
.hs-ba-label-l { left: 8px; right: auto; }
.hs-ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 2px; background: #fff;
  pointer-events: none;
  transition: left 0.05s linear;
}
.hs-ba-handle::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 24px; height: 24px; transform: translate(-50%, -50%);
  background: #fff; border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.hs-ba-slider {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0; cursor: ew-resize;
  margin: 0;
}
.hs-ba-c { text-align: center; max-width: 480px; }
.hs-ba-c h1 { margin: 0 0 4px; font-size: clamp(16px, 3vw, 28px); font-weight: 800; }
.hs-ba-c p  { margin: 0; font-size: clamp(11px, 1.4vw, 14px); color: #b8b6d4; }
<section class="hs-ba">
  <div class="hs-ba-stage">
    <div class="hs-ba-after">
      <span class="hs-ba-label">After</span>
    </div>
    <div class="hs-ba-before" id="hsBaBefore">
      <span class="hs-ba-label hs-ba-label-l">Before</span>
    </div>
    <input type="range" min="0" max="100" value="50" class="hs-ba-slider" id="hsBaSlider" aria-label="Comparison slider">
    <div class="hs-ba-handle" id="hsBaHandle"></div>
  </div>
  <div class="hs-ba-c">
    <h1>See the difference.</h1>
    <p>Drag the slider to compare.</p>
  </div>
</section>
document.querySelectorAll('.hs-ba-stage').forEach(function (stage) {
  var slider = stage.querySelector('.hs-ba-slider');
  var before = stage.querySelector('.hs-ba-before');
  var handle = stage.querySelector('.hs-ba-handle');
  if (!slider || !before || !handle) return;
  function update() {
    var v = slider.value;
    before.style.clipPath = 'inset(0 ' + (100 - v) + '% 0 0)';
    handle.style.left = v + '%';
  }
  slider.addEventListener('input', update);
  update();
});
10 / 30
Sticky Scroll Cue
Pure CSS
— Manifesto

Make the web feel made.

Hand-coded interfaces for people who care.

A tall, full-bleed hero with a bouncing "scroll" indicator at the bottom — the convention that signals "there's more below the fold." Uses pure-CSS keyframes for the bounce and respects reduced-motion.
Try it
.hs-sc {
  position: relative;
  width: 100%;
  min-height: clamp(260px, 36vh, 100vh);
  padding: clamp(20px, 4vh, 80px) clamp(16px, 4vw, 40px);
  background: linear-gradient(180deg, #0a0a14 0%, #1a1438 100%);
  overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: Georgia, serif; color: #f0eeff; text-align: center;
}
.hs-sc-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(45% 30% at 50% 100%, rgba(167,139,250,0.18), transparent 70%),
    radial-gradient(35% 25% at 80% 20%, rgba(255,108,138,0.10), transparent 70%);
  pointer-events: none;
}
.hs-sc-c {
  position: relative; z-index: 1; max-width: 600px;
  display: flex; flex-direction: column; gap: 10px; align-items: center;
}
.hs-sc-eye {
  font-family: monospace; font-size: clamp(9px, 1.4vw, 11px);
  letter-spacing: 0.16em; color: #a78bfa; text-transform: uppercase;
}
.hs-sc h1 {
  margin: 0; font-size: clamp(22px, 5vw, 60px);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.02em;
  font-style: italic;
}
.hs-sc p { margin: 0; font-size: clamp(12px, 1.6vw, 17px); color: #b8b6d4; font-style: normal; font-family: system-ui, sans-serif; }
.hs-sc-cue {
  position: absolute; bottom: clamp(14px, 3vh, 32px); left: 50%;
  transform: translateX(-50%); z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-family: monospace; font-size: 9.5px; letter-spacing: 0.12em;
  color: #b8b6d4; text-transform: uppercase;
}
.hs-sc-mouse {
  width: 18px; height: 28px;
  border: 1.5px solid #a78bfa; border-radius: 10px;
  display: flex; justify-content: center; padding-top: 4px;
}
.hs-sc-mouse span {
  display: block;
  width: 2.5px; height: 6px;
  background: #a78bfa; border-radius: 2px;
  animation: hs-sc-drop 1.6s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes hs-sc-drop {
  0%   { transform: translateY(0);   opacity: 1; }
  60%  { transform: translateY(8px); opacity: 0; }
  100% { transform: translateY(8px); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hs-sc-mouse span { animation: none; }
}
<section class="hs-sc">
  <div class="hs-sc-bg" aria-hidden="true"></div>
  <div class="hs-sc-c">
    <span class="hs-sc-eye">— Manifesto</span>
    <h1>Make the web feel made.</h1>
    <p>Hand-coded interfaces for people who care.</p>
  </div>
  <div class="hs-sc-cue" aria-hidden="true">
    <span class="hs-sc-cue-label">Scroll</span>
    <div class="hs-sc-mouse"><span></span></div>
  </div>
</section>
11 / 30
Magazine Cover
Pure CSS
Issue 042 · May 2026
VOL. IV

The future is hand-coded.

An exploration of craft in the age of generated interfaces.

Read the issue →
0042
A print-magazine cover treatment — issue number / date eyebrow, oversized serif headline, vertical "spine" line on the left edge, and a small barcode-style stamp in the corner. Reads like the front of an art quarterly.
Try it
.hs-mag {
  position: relative;
  width: 100%;
  min-height: clamp(220px, 28vh, 100vh);
  padding: clamp(20px, 4vh, 80px) clamp(24px, 5vw, 60px);
  background: #f5f1ea;
  display: flex; align-items: center;
  font-family: 'Times New Roman', Times, Georgia, serif;
  color: #1a1a1a;
  overflow: hidden;
}
.hs-mag-spine {
  position: absolute; top: 50%; left: 12px; transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  font-family: monospace; font-size: clamp(8px, 1vw, 10px);
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #8a8275;
  white-space: nowrap;
}
.hs-mag-c {
  margin-left: clamp(20px, 4vw, 40px);
  max-width: 620px;
  display: flex; flex-direction: column; gap: 10px;
}
.hs-mag-vol {
  font-family: monospace; font-size: clamp(9px, 1.3vw, 12px);
  letter-spacing: 0.18em; color: #c54a3a;
  border-top: 1px solid #1a1a1a; border-bottom: 1px solid #1a1a1a;
  padding: 4px 0; width: fit-content;
}
.hs-mag h1 {
  margin: 4px 0; font-size: clamp(26px, 6vw, 70px);
  font-weight: 900; line-height: 0.98; letter-spacing: -0.02em;
  font-style: italic;
}
.hs-mag p {
  margin: 0; font-size: clamp(11px, 1.5vw, 16px);
  font-style: italic; color: #4a443a; max-width: 440px; line-height: 1.5;
}
.hs-mag-cta {
  font-family: monospace; font-size: clamp(10px, 1.4vw, 12px);
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: #c54a3a; text-decoration: none;
  border-bottom: 2px solid #c54a3a; padding-bottom: 2px; width: fit-content;
  margin-top: 4px;
}
.hs-mag-stamp {
  position: absolute; top: clamp(12px, 2vh, 20px); right: clamp(12px, 2vw, 20px);
  display: flex; flex-direction: column; align-items: center;
  width: 50px; height: 50px;
  border: 1.5px solid #1a1a1a; border-radius: 50%;
  font-family: monospace; font-size: 8.5px; font-weight: 700;
  color: #1a1a1a;
  justify-content: center; gap: 1px;
}
.hs-mag-stamp span:first-child { font-size: 14px; line-height: 1; color: #c54a3a; }
<section class="hs-mag">
  <span class="hs-mag-spine">Issue 042 · May 2026</span>
  <div class="hs-mag-c">
    <span class="hs-mag-vol">VOL. IV</span>
    <h1>The future is hand-coded.</h1>
    <p>An exploration of craft in the age of generated interfaces.</p>
    <a class="hs-mag-cta" href="#">Read the issue →</a>
  </div>
  <div class="hs-mag-stamp">
    <span>★</span><span>0042</span>
  </div>
</section>
12 / 30
Asymmetric Type
Pure CSS
Make.
&
Break.
—— A studio for restless thinkers View work
Headline broken across columns with intentional misalignment — words pulled to opposite edges, an oversized accent character, and a thin horizontal rule cutting through. The layout devices a Pentagram or Wieden+Kennedy poster would use.
Try it
.hs-asy {
  width: 100%;
  min-height: clamp(220px, 28vh, 100vh);
  padding: clamp(20px, 4vh, 80px) clamp(20px, 5vw, 60px);
  background: #0e0e16;
  display: flex; flex-direction: column; justify-content: center;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #f0eeff;
}
.hs-asy-grid {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(8px, 2vw, 24px);
  font-weight: 900;
  line-height: 0.9; letter-spacing: -0.04em;
}
.hs-asy-l { font-size: clamp(34px, 9vw, 110px); text-align: left; }
.hs-asy-r { font-size: clamp(34px, 9vw, 110px); text-align: right;
  background: linear-gradient(135deg, #ff6c8a, #ff9a76);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hs-asy-amp {
  font-size: clamp(48px, 12vw, 160px);
  font-style: italic; font-weight: 400;
  color: #a78bfa;
  font-family: Georgia, serif;
  line-height: 0.9;
}
.hs-asy-meta {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: clamp(16px, 4vh, 40px); padding-top: clamp(10px, 2vh, 20px);
  border-top: 1px solid rgba(255,255,255,0.18);
  flex-wrap: wrap; gap: 8px;
}
.hs-asy-meta span {
  font-family: monospace; font-size: clamp(10px, 1.3vw, 12px);
  color: #b8b6d4; letter-spacing: 0.04em;
}
.hs-asy-cta {
  font-family: monospace; font-size: clamp(10px, 1.4vw, 12px);
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: #f0eeff; text-decoration: none;
  padding: 7px 14px; border: 1px solid #f0eeff; border-radius: 0;
  transition: background 0.15s, color 0.15s;
}
.hs-asy-cta:hover { background: #f0eeff; color: #0e0e16; }
<section class="hs-asy">
  <div class="hs-asy-grid">
    <div class="hs-asy-l">Make.</div>
    <div class="hs-asy-amp">&amp;</div>
    <div class="hs-asy-r">Break.</div>
  </div>
  <div class="hs-asy-meta">
    <span>—— A studio for restless thinkers</span>
    <a class="hs-asy-cta" href="#">View work</a>
  </div>
</section>
13 / 30
Oversized Number
Pure CSS
— Annual Report

A year of building in public.

1.2M downloads · 24 components shipped · 0 dependencies.

Read the report
A massive faded background number ("01" / "100" / a year) sits behind the headline — used by case-study landings, awards pages, and editorial features. Pure typographic spectacle with no images.
Try it
.hs-num {
  position: relative;
  width: 100%;
  min-height: clamp(220px, 28vh, 100vh);
  padding: clamp(20px, 4vh, 80px) clamp(16px, 4vw, 40px);
  background: #0e0e16;
  display: flex; align-items: center; justify-content: center;
  font-family: system-ui, sans-serif; color: #f0eeff;
  overflow: hidden;
}
.hs-num-bg {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(140px, 36vw, 480px);
  font-weight: 900; letter-spacing: -0.05em;
  line-height: 0.85;
  color: transparent;
  background: linear-gradient(180deg, rgba(124,108,255,0.16), rgba(167,139,250,0.04));
  -webkit-background-clip: text; background-clip: text;
  pointer-events: none; user-select: none;
}
.hs-num-c {
  position: relative; z-index: 1;
  max-width: 600px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hs-num-eye {
  font-family: monospace; font-size: clamp(9px, 1.3vw, 11px);
  letter-spacing: 0.16em; color: #a78bfa; text-transform: uppercase;
}
.hs-num h1 {
  margin: 0; font-size: clamp(20px, 4.5vw, 50px);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.02em;
}
.hs-num p { margin: 0; font-size: clamp(11px, 1.5vw, 15px); color: #b8b6d4; line-height: 1.5; }
.hs-num-cta {
  padding: 9px 20px; border-radius: 7px;
  background: linear-gradient(135deg, #7c6cff, #a78bfa); color: #fff;
  font-size: clamp(11px, 1.5vw, 14px); font-weight: 700;
  text-decoration: none; margin-top: 4px;
  transition: filter 0.15s;
}
.hs-num-cta:hover { filter: brightness(1.12); }
<section class="hs-num">
  <span class="hs-num-bg" aria-hidden="true">2026</span>
  <div class="hs-num-c">
    <span class="hs-num-eye">— Annual Report</span>
    <h1>A year of building in public.</h1>
    <p>1.2M downloads · 24 components shipped · 0 dependencies.</p>
    <a class="hs-num-cta" href="#">Read the report</a>
  </div>
</section>
14 / 30
Marquee Headline
Pure CSS

Craft software, slowly.

Ten patterns a week. Twenty-four collections this year.

Browse the catalog
A single headline phrase scrolls horizontally on a loop — the Acne Studios / Off-White treatment. Repeats the phrase enough times that there's never a visible gap, with the static product copy sitting below.
Try it
.hs-marq {
  width: 100%;
  min-height: clamp(220px, 28vh, 100vh);
  background: #0e0e16;
  display: flex; flex-direction: column; justify-content: center;
  gap: clamp(12px, 3vh, 32px);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #f0eeff; overflow: hidden;
}
.hs-marq-track {
  display: flex; gap: 0;
  white-space: nowrap;
  font-size: clamp(28px, 7vw, 80px);
  font-weight: 900; letter-spacing: -0.02em;
  background: linear-gradient(135deg, #7c6cff 30%, #ff6c8a 70%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  animation: hs-marq-roll 18s linear infinite;
}
.hs-marq-track span { padding-right: clamp(8px, 2vw, 24px); }
.hs-marq-rev { animation-direction: reverse; animation-duration: 24s;
  font-size: clamp(14px, 3vw, 28px); font-weight: 700;
  background: linear-gradient(135deg, #2eb88a, #3de8aa);
  -webkit-background-clip: text; background-clip: text;
}
.hs-marq-c {
  text-align: center; padding: 0 clamp(16px, 4vw, 40px);
}
.hs-marq-c h1 {
  margin: 0 0 6px; font-size: clamp(16px, 3vw, 28px);
  font-weight: 700; letter-spacing: -0.01em;
}
.hs-marq-c p { margin: 0 0 10px; font-size: clamp(11px, 1.4vw, 14px); color: #b8b6d4; }
.hs-marq-cta {
  display: inline-block;
  padding: 7px 16px; border-radius: 7px;
  background: rgba(255,255,255,0.06); color: #f0eeff;
  border: 1px solid rgba(255,255,255,0.18);
  font-size: clamp(11px, 1.4vw, 13px); font-weight: 700;
  text-decoration: none; transition: background 0.15s;
}
.hs-marq-cta:hover { background: rgba(255,255,255,0.14); }
@keyframes hs-marq-roll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .hs-marq-track { animation: none; }
}
<section class="hs-marq">
  <div class="hs-marq-track" aria-hidden="true">
    <span>Made by hand · </span><span>Made by hand · </span><span>Made by hand · </span>
    <span>Made by hand · </span><span>Made by hand · </span><span>Made by hand · </span>
  </div>
  <div class="hs-marq-c">
    <h1>Craft software, slowly.</h1>
    <p>Ten patterns a week. Twenty-four collections this year.</p>
    <a class="hs-marq-cta" href="#">Browse the catalog</a>
  </div>
  <div class="hs-marq-track hs-marq-rev" aria-hidden="true">
    <span>· No frameworks ·</span><span>· No frameworks ·</span><span>· No frameworks ·</span>
    <span>· No frameworks ·</span><span>· No frameworks ·</span><span>· No frameworks ·</span>
  </div>
</section>
15 / 30
Photo Card Hero
Pure CSS
Spring Collection

Light, weighed in seconds.

A new range, designed for the unpredictable mornings of May.

Shop the collection
A full-bleed lifestyle "photo" hero with copy in the bottom-left corner — the Aesop / Apple landing pattern. The photo stand-in is an SVG abstract gradient scene; swap for `<img>` to ship.
Try it
.hs-pc {
  position: relative;
  width: 100%;
  min-height: clamp(220px, 32vh, 100vh);
  display: flex; align-items: flex-end;
  overflow: hidden;
  font-family: Georgia, 'Times New Roman', serif;
  color: #fff;
}
.hs-pc-bg, .hs-pc-grad { position: absolute; inset: 0; }
.hs-pc-bg svg { width: 100%; height: 100%; display: block; }
.hs-pc-grad {
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}
.hs-pc-c {
  position: relative; z-index: 1;
  padding: clamp(20px, 4vh, 60px);
  max-width: 560px;
  display: flex; flex-direction: column; gap: 8px;
}
.hs-pc-eye {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(9px, 1.3vw, 11px);
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.hs-pc h1 {
  margin: 4px 0; font-size: clamp(22px, 5vw, 56px);
  font-weight: 400; line-height: 1.05; font-style: italic;
  letter-spacing: -0.01em;
}
.hs-pc p {
  margin: 0; font-size: clamp(11px, 1.5vw, 16px);
  font-family: 'Helvetica Neue', sans-serif;
  color: rgba(255,255,255,0.85); max-width: 420px;
}
.hs-pc-cta {
  margin-top: 10px;
  padding: 8px 18px; border-radius: 0;
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,0.7);
  font-family: 'Helvetica Neue', sans-serif; font-size: clamp(10px, 1.3vw, 12px);
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; width: fit-content;
  transition: background 0.15s, color 0.15s;
}
.hs-pc-cta:hover { background: #fff; color: #0e0e16; }
<section class="hs-pc">
  <div class="hs-pc-bg" aria-hidden="true">
    <svg viewBox="0 0 400 240" preserveAspectRatio="xMidYMid slice">
      <defs>
        <linearGradient id="hs-pc-sky" x1="0" y1="0" x2="0" y2="1">
          <stop offset="0%" stop-color="#ffd479"/>
          <stop offset="60%" stop-color="#ff8a6c"/>
          <stop offset="100%" stop-color="#7c4ab8"/>
        </linearGradient>
      </defs>
      <rect width="400" height="240" fill="url(#hs-pc-sky)"/>
      <circle cx="290" cy="80" r="36" fill="#fff5d4" opacity="0.85"/>
      <path d="M0,180 Q100,150 180,170 T400,160 L400,240 L0,240 Z" fill="#3a2a4f" opacity="0.7"/>
      <path d="M0,200 Q120,180 220,200 T400,190 L400,240 L0,240 Z" fill="#1a1430" opacity="0.85"/>
    </svg>
  </div>
  <div class="hs-pc-grad" aria-hidden="true"></div>
  <div class="hs-pc-c">
    <span class="hs-pc-eye">Spring Collection</span>
    <h1>Light, weighed in seconds.</h1>
    <p>A new range, designed for the unpredictable mornings of May.</p>
    <a class="hs-pc-cta" href="#">Shop the collection</a>
  </div>
</section>
16 / 30
Brutalist Text-Only
Pure CSS
Codefronts EST · 2025

CSS
Without
Compromise.

HAND_CODED NO_DEPS OPEN_SRC FREE_FOREVER
[ ENTER → ]
A raw, all-mono brutalist hero — black-on-cream type, hard offset shadow on the headline, no images, no soft anything. Looks like an early-2000s portfolio that aged into a movement.
Try it
.hs-bru {
  width: 100%;
  min-height: clamp(220px, 28vh, 100vh);
  padding: clamp(20px, 4vh, 60px) clamp(20px, 5vw, 50px);
  background: #f0ebe0;
  display: flex; flex-direction: column; justify-content: space-between; gap: 12px;
  font-family: 'Courier New', monospace;
  color: #0a0a0a;
}
.hs-bru-row {
  display: flex; justify-content: space-between;
  font-size: clamp(9px, 1.3vw, 12px);
  letter-spacing: 0.12em; text-transform: uppercase;
  border-top: 2px solid #0a0a0a; border-bottom: 2px solid #0a0a0a;
  padding: 4px 0;
}
.hs-bru-h {
  margin: clamp(8px, 2vh, 24px) 0;
  font-size: clamp(34px, 9vw, 110px);
  font-weight: 900; line-height: 0.9;
  letter-spacing: -0.04em;
  text-shadow: 6px 6px 0 #ff5733;
  text-transform: uppercase;
}
.hs-bru-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  font-size: clamp(9px, 1.3vw, 12px);
  letter-spacing: 0.08em;
}
.hs-bru-grid span {
  border: 1.5px solid #0a0a0a;
  padding: 6px 10px;
  text-align: center;
}
.hs-bru-cta {
  font-size: clamp(11px, 1.5vw, 14px); font-weight: 700;
  color: #0a0a0a; text-decoration: none; align-self: flex-start;
  border: 2px solid #0a0a0a; padding: 8px 16px;
  background: #ff5733; color: #fff;
  transition: transform 0.1s, box-shadow 0.1s;
  box-shadow: 4px 4px 0 #0a0a0a;
}
.hs-bru-cta:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 #0a0a0a; color: #fff; }
<section class="hs-bru">
  <div class="hs-bru-row">
    <span>Codefronts</span>
    <span>EST · 2025</span>
  </div>
  <h1 class="hs-bru-h">CSS<br/>Without<br/>Compromise.</h1>
  <div class="hs-bru-grid">
    <span>HAND_CODED</span>
    <span>NO_DEPS</span>
    <span>OPEN_SRC</span>
    <span>FREE_FOREVER</span>
  </div>
  <a class="hs-bru-cta" href="#">[ ENTER → ]</a>
</section>
17 / 30
Vertical Type Hero
Pure CSS
— Tokyo Issue

An exploration of negative space, restraint, and the discipline of less.

Continue →

余白の
美学

SILENCE SPACE SUBTRACT
A Japanese-magazine-inspired hero with a vertical-orientation headline running down the right edge, latin descender copy on the left. Uses `writing-mode: vertical-rl` — pure CSS, no image hacks.
Try it
.hs-vt {
  width: 100%;
  min-height: clamp(220px, 32vh, 100vh);
  padding: clamp(20px, 4vh, 60px) clamp(16px, 4vw, 40px);
  background: #faf7f0;
  display: grid; grid-template-columns: 1fr auto 60px;
  gap: clamp(16px, 4vw, 40px);
  align-items: center;
  font-family: Georgia, serif;
  color: #1a1a1a;
}
.hs-vt-l {
  display: flex; flex-direction: column; gap: 10px;
  max-width: 280px;
}
.hs-vt-eye {
  font-family: monospace; font-size: clamp(9px, 1.3vw, 11px);
  letter-spacing: 0.14em; color: #c54a3a; text-transform: uppercase;
}
.hs-vt-l p {
  margin: 0; font-size: clamp(11px, 1.5vw, 14px); line-height: 1.55;
  font-style: italic; color: #4a443a;
}
.hs-vt-cta {
  font-family: 'Helvetica Neue', sans-serif; font-size: clamp(10px, 1.3vw, 12px);
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: #1a1a1a; text-decoration: none;
  padding-bottom: 2px; border-bottom: 1.5px solid #1a1a1a;
  width: fit-content;
}
.hs-vt-h {
  margin: 0;
  font-size: clamp(60px, 14vw, 160px);
  font-weight: 900; line-height: 0.95; letter-spacing: -0.04em;
  background: linear-gradient(180deg, #1a1a1a 50%, #c54a3a 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.hs-vt-r {
  display: flex; flex-direction: column; gap: 6px;
  writing-mode: vertical-rl;
  font-family: 'Helvetica Neue', sans-serif;
  font-size: clamp(9px, 1.3vw, 11px); font-weight: 700;
  letter-spacing: 0.18em;
  color: #8a8275;
}
.hs-vt-r span {
  border-top: 1px solid #8a8275; padding-top: 6px;
}
<section class="hs-vt">
  <div class="hs-vt-l">
    <span class="hs-vt-eye">— Tokyo Issue</span>
    <p>An exploration of negative space, restraint, and the discipline of less.</p>
    <a class="hs-vt-cta" href="#">Continue →</a>
  </div>
  <h1 class="hs-vt-h">余白の<br/>美学</h1>
  <div class="hs-vt-r">
    <span>SILENCE</span>
    <span>SPACE</span>
    <span>SUBTRACT</span>
  </div>
</section>
18 / 30
Kinetic Type Hero
Pure CSS

Move fast.

An animated typeface, rendered without a single library.

Watch the loop
Letters float, rotate, and scale individually using per-letter `animation-delay` — the kinetic-type style of brand films. Words appear to "perform" rather than just sit. Honors reduced-motion.
Try it
.hs-kin {
  width: 100%;
  min-height: clamp(220px, 28vh, 100vh);
  padding: clamp(20px, 4vh, 60px) clamp(16px, 4vw, 40px);
  background: radial-gradient(60% 60% at 50% 50%, #1a1438, #0a0a14);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #f0eeff; text-align: center;
}
.hs-kin-h {
  margin: 0;
  font-size: clamp(40px, 11vw, 140px);
  font-weight: 900; line-height: 1; letter-spacing: -0.04em;
  display: inline-flex; flex-wrap: wrap; justify-content: center;
}
.hs-kin-h span {
  display: inline-block;
  background: linear-gradient(135deg, #fff 30%, #a78bfa 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  animation: hs-kin-float 2.4s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 100ms);
}
.hs-kin-sp { width: 0.4em; }
.hs-kin p { margin: 0; font-size: clamp(11px, 1.5vw, 16px); color: #b8b6d4; }
.hs-kin-cta {
  padding: 9px 20px; border-radius: 7px;
  background: linear-gradient(135deg, #7c6cff, #a78bfa); color: #fff;
  font-size: clamp(11px, 1.5vw, 14px); font-weight: 700;
  text-decoration: none; transition: filter 0.15s;
}
.hs-kin-cta:hover { filter: brightness(1.12); }
@keyframes hs-kin-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25%      { transform: translateY(-8px) rotate(-2deg); }
  75%      { transform: translateY(4px) rotate(1.5deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hs-kin-h span { animation: none; }
}
<section class="hs-kin">
  <h1 class="hs-kin-h">
    <span style="--i:0">M</span><span style="--i:1">o</span><span style="--i:2">v</span><span style="--i:3">e</span>
    <span class="hs-kin-sp"></span>
    <span style="--i:5">f</span><span style="--i:6">a</span><span style="--i:7">s</span><span style="--i:8">t</span><span style="--i:9">.</span>
  </h1>
  <p>An animated typeface, rendered without a single library.</p>
  <a class="hs-kin-cta" href="#">Watch the loop</a>
</section>
19 / 30
Bento Hero
Pure CSS
Frontend toolkit

Build interfaces that ship themselves.

Get started →
24 collections
Zero JS

"Saved us 40 hours."

— Aria S.
MIT licensed
Apple-style bento layout where the headline sits in one large tile and supporting facts (counts, badges, mini-features) fan out around it. Each tile carries its own accent — cohesion through layout, not color.
Try it
.hs-bento {
  width: 100%;
  min-height: clamp(220px, 28vh, 100vh);
  padding: clamp(16px, 3vh, 40px) clamp(16px, 4vw, 40px);
  background: #0e0e16;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(60px, 1fr);
  grid-template-areas:
    "h h h s"
    "h h h i"
    "q q p p";
  gap: 6px;
  font-family: system-ui, sans-serif;
  color: #f0eeff;
}
.hs-bento-c {
  background: #18181f;
  border: 1px solid rgba(124,108,255,0.2);
  border-radius: 10px;
  padding: clamp(8px, 1.5vw, 14px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  text-align: center;
}
.hs-bento-h {
  grid-area: h;
  background: linear-gradient(135deg, #7c6cff, #a78bfa);
  color: #fff;
  border-radius: 10px;
  padding: clamp(14px, 3vw, 28px);
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
}
.hs-bento-eye {
  font-family: monospace; font-size: clamp(9px, 1.3vw, 11px);
  letter-spacing: 0.12em; color: rgba(255,255,255,0.7); text-transform: uppercase;
}
.hs-bento-h h1 {
  margin: 0; font-size: clamp(16px, 3.5vw, 32px);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.01em;
}
.hs-bento-cta {
  margin-top: 4px; width: fit-content;
  padding: 6px 12px; border-radius: 6px;
  background: rgba(255,255,255,0.95); color: #0e0e16;
  font-size: clamp(10px, 1.3vw, 13px); font-weight: 700;
  text-decoration: none;
}
.hs-bento-stat { grid-area: s; background: rgba(46,184,138,0.14); border-color: rgba(46,184,138,0.4); }
.hs-bento-stat strong { font-size: clamp(20px, 3.5vw, 30px); font-weight: 900; color: #2eb88a; line-height: 1; }
.hs-bento-stat span { font-size: clamp(9px, 1.2vw, 11px); color: #b8b6d4; }
.hs-bento-icon { grid-area: i; background: rgba(245,168,74,0.14); border-color: rgba(245,168,74,0.4); }
.hs-bento-glyph { font-size: clamp(18px, 3vw, 24px); color: #f5a84a; }
.hs-bento-icon span:not(.hs-bento-glyph) { font-size: clamp(9px, 1.2vw, 11px); color: #b8b6d4; }
.hs-bento-quote { grid-area: q; background: rgba(255,108,138,0.14); border-color: rgba(255,108,138,0.4); }
.hs-bento-quote p { margin: 0; font-size: clamp(10px, 1.5vw, 13px); color: #fff; font-style: italic; }
.hs-bento-quote span { font-size: clamp(9px, 1.1vw, 10px); color: #ff6c8a; }
.hs-bento-pill { grid-area: p; background: rgba(167,139,250,0.14); border-color: rgba(167,139,250,0.4);
  font-family: monospace; font-size: clamp(10px, 1.4vw, 13px); font-weight: 700; color: #a78bfa;
  letter-spacing: 0.06em; text-transform: uppercase;
}
<section class="hs-bento">
  <div class="hs-bento-h">
    <span class="hs-bento-eye">Frontend toolkit</span>
    <h1>Build interfaces that ship themselves.</h1>
    <a class="hs-bento-cta" href="#">Get started →</a>
  </div>
  <div class="hs-bento-c hs-bento-stat">
    <strong>24</strong>
    <span>collections</span>
  </div>
  <div class="hs-bento-c hs-bento-icon">
    <span class="hs-bento-glyph">⚡</span>
    <span>Zero JS</span>
  </div>
  <div class="hs-bento-c hs-bento-quote">
    <p>"Saved us 40 hours."</p>
    <span>— Aria S.</span>
  </div>
  <div class="hs-bento-c hs-bento-pill">MIT licensed</div>
</section>
20 / 30
Gradient Text Spotlight
Pure CSS
Coming soon

The future of CSS is now.

A new generation of layout primitives, hand-coded for the modern web.

A single oversized headline rendered with an animated gradient that sweeps across the letters — the "shimmer" effect Linear and Apple use on landing-page wordmarks. Pure background-clip: text, no SVG.
Try it
.hs-gt {
  width: 100%;
  min-height: clamp(220px, 28vh, 100vh);
  padding: clamp(20px, 4vh, 80px) clamp(16px, 4vw, 40px);
  background: #0a0a14;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  font-family: system-ui, sans-serif; color: #f0eeff; text-align: center;
}
.hs-gt-eye {
  font-family: monospace; font-size: clamp(9px, 1.3vw, 11px);
  letter-spacing: 0.16em; color: #a78bfa; text-transform: uppercase;
}
.hs-gt-h {
  margin: 0; font-size: clamp(28px, 7vw, 88px);
  font-weight: 900; line-height: 1; letter-spacing: -0.03em; max-width: 900px;
  background: linear-gradient(120deg,
    #7c6cff 0%,
    #ff6c8a 25%,
    #ffd479 50%,
    #2eb88a 75%,
    #3de8f5 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  animation: hs-gt-shine 8s linear infinite;
}
.hs-gt p { margin: 0; font-size: clamp(11px, 1.6vw, 17px); color: #b8b6d4; max-width: 540px; line-height: 1.5; }
.hs-gt-cta { display: flex; gap: 8px; margin-top: 4px; flex-wrap: wrap; justify-content: center; }
.hs-gt-pri, .hs-gt-sec {
  padding: 9px 20px; border-radius: 7px;
  font-size: clamp(11px, 1.5vw, 14px); font-weight: 700;
  text-decoration: none;
  transition: filter 0.15s, background 0.15s;
}
.hs-gt-pri { background: linear-gradient(135deg, #7c6cff, #a78bfa); color: #fff; }
.hs-gt-pri:hover { filter: brightness(1.12); }
.hs-gt-sec { background: rgba(255,255,255,0.06); color: #f0eeff; border: 1px solid rgba(255,255,255,0.18); }
.hs-gt-sec:hover { background: rgba(255,255,255,0.14); }
@keyframes hs-gt-shine { to { background-position: 200% 0; } }
@media (prefers-reduced-motion: reduce) {
  .hs-gt-h { animation: none; background-position: 0 0; }
}
<section class="hs-gt">
  <span class="hs-gt-eye">Coming soon</span>
  <h1 class="hs-gt-h">The future of CSS is now.</h1>
  <p>A new generation of layout primitives, hand-coded for the modern web.</p>
  <div class="hs-gt-cta">
    <a class="hs-gt-pri" href="#">Preview</a>
    <a class="hs-gt-sec" href="#">Get notified</a>
  </div>
</section>
21 / 30
Product Shot Hero
Pure CSS
New · Fall 2026

Edge One.

Lighter than air. Faster than thought.

Pre-order →
From $899
2× faster −40% weight All-day battery
A product hero with the item front-and-centre and floating feature badges that pulse around it — the Apple iPhone-launch / consumer-electronics treatment. The "product" is an inline SVG; swap for a real PNG to ship.
Try it
.hs-prd {
  width: 100%;
  min-height: clamp(220px, 30vh, 100vh);
  padding: clamp(20px, 4vh, 60px) clamp(16px, 4vw, 40px);
  background: radial-gradient(60% 60% at 50% 0%, rgba(124,108,255,0.18), transparent 70%), #0e0e16;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 3vw, 32px); align-items: center;
  font-family: system-ui, sans-serif; color: #f0eeff;
}
@media (max-width: 720px) { .hs-prd { grid-template-columns: 1fr; text-align: center; } }
.hs-prd-tag {
  display: inline-block;
  font-family: monospace; font-size: clamp(9px, 1.3vw, 11px);
  letter-spacing: 0.12em; color: #a78bfa; text-transform: uppercase;
  padding: 3px 10px; border-radius: 12px;
  background: rgba(124,108,255,0.12); border: 1px solid rgba(124,108,255,0.3);
}
.hs-prd-l h1 {
  margin: 8px 0; font-size: clamp(28px, 6vw, 64px);
  font-weight: 900; line-height: 1; letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff, #a78bfa);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hs-prd-l p { margin: 0 0 12px; font-size: clamp(11px, 1.6vw, 16px); color: #b8b6d4; }
.hs-prd-cta {
  display: inline-block; padding: 9px 20px; border-radius: 7px;
  background: linear-gradient(135deg, #7c6cff, #a78bfa); color: #fff;
  font-size: clamp(11px, 1.5vw, 14px); font-weight: 700;
  text-decoration: none; transition: filter 0.15s;
}
.hs-prd-cta:hover { filter: brightness(1.12); }
.hs-prd-from { margin-top: 8px; font-size: clamp(10px, 1.3vw, 12px); color: #b8b6d4; }
.hs-prd-from strong { color: #f0eeff; font-size: clamp(13px, 1.8vw, 16px); }
.hs-prd-r {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 200px;
}
.hs-prd-shot { width: clamp(120px, 28vw, 200px); }
.hs-prd-shot svg { width: 100%; height: auto; display: block; filter: drop-shadow(0 20px 40px rgba(124,108,255,0.4)); }
.hs-prd-bdg {
  position: absolute;
  font-family: monospace; font-size: clamp(9px, 1.2vw, 11px); font-weight: 700;
  padding: 4px 10px; border-radius: 14px;
  background: rgba(255,255,255,0.06); color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  white-space: nowrap;
  animation: hs-prd-float 3.6s ease-in-out infinite;
}
.hs-prd-b1 { top: 10%; left: 0; animation-delay: -0.5s; border-color: rgba(46,184,138,0.4); color: #2eb88a; }
.hs-prd-b2 { top: 50%; right: 0; animation-delay: -1.5s; border-color: rgba(255,108,138,0.4); color: #ff6c8a; }
.hs-prd-b3 { bottom: 12%; left: 8%; animation-delay: -2.5s; border-color: rgba(245,168,74,0.4); color: #f5a84a; }
@keyframes hs-prd-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@media (prefers-reduced-motion: reduce) { .hs-prd-bdg { animation: none; } }
<section class="hs-prd">
  <div class="hs-prd-l">
    <span class="hs-prd-tag">New · Fall 2026</span>
    <h1>Edge One.</h1>
    <p>Lighter than air. Faster than thought.</p>
    <a class="hs-prd-cta" href="#">Pre-order →</a>
    <div class="hs-prd-from">From <strong>$899</strong></div>
  </div>
  <div class="hs-prd-r">
    <div class="hs-prd-shot">
      <svg viewBox="0 0 200 280" aria-hidden="true">
        <defs>
          <linearGradient id="hs-prd-d" x1="0" y1="0" x2="1" y2="1">
            <stop offset="0%" stop-color="#a78bfa"/>
            <stop offset="100%" stop-color="#7c6cff"/>
          </linearGradient>
        </defs>
        <rect x="40" y="20" width="120" height="240" rx="22" fill="url(#hs-prd-d)" stroke="#fff" stroke-width="2" stroke-opacity="0.18"/>
        <rect x="50" y="35" width="100" height="200" rx="14" fill="#0e0e16"/>
        <circle cx="100" cy="135" r="32" fill="rgba(255,255,255,0.08)"/>
        <text x="100" y="142" font-family="system-ui,sans-serif" font-size="22" fill="#fff" text-anchor="middle" font-weight="800">↑</text>
      </svg>
    </div>
    <span class="hs-prd-bdg hs-prd-b1">2× faster</span>
    <span class="hs-prd-bdg hs-prd-b2">−40% weight</span>
    <span class="hs-prd-bdg hs-prd-b3">All-day battery</span>
  </div>
</section>
22 / 30
Price Card Hero
Pure CSS
Save 30% · Annual

One price. Everything inside.

Unlimited components, every collection, lifetime updates.

  • ✓ All 24 collections
  • ✓ Lifetime updates
  • ✓ Commercial licence
BEST VALUE
Lifetime
$299 $199
one-time · no subscription
Get lifetime →
30-day money back
A pricing-led hero where the value-prop tier card sits beside the headline — the SaaS conversion pattern proven by 37signals and Linear. The headline anchors the why; the price card collapses the funnel.
Try it
.hs-prc {
  width: 100%;
  min-height: clamp(220px, 30vh, 100vh);
  padding: clamp(20px, 4vh, 60px) clamp(16px, 4vw, 40px);
  background:
    radial-gradient(40% 40% at 80% 30%, rgba(46,184,138,0.18), transparent 70%),
    radial-gradient(40% 40% at 20% 70%, rgba(124,108,255,0.18), transparent 70%),
    #0e0e16;
  display: grid; grid-template-columns: 1fr 280px;
  gap: clamp(12px, 3vw, 32px); align-items: center;
  font-family: system-ui, sans-serif; color: #f0eeff;
}
@media (max-width: 720px) { .hs-prc { grid-template-columns: 1fr; } }
.hs-prc-tag {
  display: inline-block;
  font-family: monospace; font-size: clamp(9px, 1.3vw, 11px); font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 10px; border-radius: 12px;
  background: rgba(46,184,138,0.16); color: #2eb88a;
  border: 1px solid rgba(46,184,138,0.4);
}
.hs-prc-l h1 {
  margin: 10px 0; font-size: clamp(20px, 4vw, 44px);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.02em;
}
.hs-prc-l p { margin: 0 0 10px; font-size: clamp(11px, 1.5vw, 15px); color: #b8b6d4; }
.hs-prc-li {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 4px;
  font-size: clamp(10px, 1.4vw, 13px); color: #b8b6d4;
}
.hs-prc-li li { color: #f0eeff; }
.hs-prc-li li::first-letter { color: #2eb88a; font-weight: 700; }
.hs-prc-card {
  position: relative;
  background: linear-gradient(180deg, rgba(124,108,255,0.16), rgba(167,139,250,0.04));
  border: 1px solid rgba(167,139,250,0.5);
  border-radius: 14px;
  padding: clamp(16px, 3vw, 24px);
  text-align: center;
  display: flex; flex-direction: column; gap: 4px; align-items: center;
  box-shadow: 0 16px 40px rgba(124,108,255,0.18);
}
.hs-prc-rib {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #7c6cff, #a78bfa); color: #fff;
  font-family: monospace; font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.12em; padding: 3px 10px; border-radius: 12px;
  white-space: nowrap;
}
.hs-prc-name {
  font-family: monospace; font-size: clamp(10px, 1.4vw, 12px);
  letter-spacing: 0.16em; text-transform: uppercase;
  color: #a78bfa; margin-top: 4px;
}
.hs-prc-price {
  display: flex; align-items: baseline; justify-content: center; gap: 8px;
  margin: 4px 0;
}
.hs-prc-was { font-size: clamp(14px, 2vw, 18px); color: #b8b6d4; text-decoration: line-through; }
.hs-prc-now { font-size: clamp(28px, 5vw, 44px); font-weight: 900; color: #fff; letter-spacing: -0.02em; }
.hs-prc-per { font-size: clamp(9px, 1.2vw, 11px); color: #b8b6d4; }
.hs-prc-cta {
  margin-top: 8px; width: 100%;
  padding: 10px 0; border-radius: 8px;
  background: linear-gradient(135deg, #7c6cff, #a78bfa); color: #fff;
  font-size: clamp(11px, 1.5vw, 14px); font-weight: 700;
  text-decoration: none; transition: filter 0.15s;
}
.hs-prc-cta:hover { filter: brightness(1.12); }
.hs-prc-fine { font-size: 9.5px; color: #b8b6d4; margin-top: 4px; }
<section class="hs-prc">
  <div class="hs-prc-l">
    <span class="hs-prc-tag">Save 30% · Annual</span>
    <h1>One price. Everything inside.</h1>
    <p>Unlimited components, every collection, lifetime updates.</p>
    <ul class="hs-prc-li">
      <li>✓ All 24 collections</li>
      <li>✓ Lifetime updates</li>
      <li>✓ Commercial licence</li>
    </ul>
  </div>
  <div class="hs-prc-card">
    <span class="hs-prc-rib">BEST VALUE</span>
    <div class="hs-prc-name">Lifetime</div>
    <div class="hs-prc-price">
      <span class="hs-prc-was">$299</span>
      <span class="hs-prc-now">$199</span>
    </div>
    <div class="hs-prc-per">one-time · no subscription</div>
    <a class="hs-prc-cta" href="#">Get lifetime →</a>
    <div class="hs-prc-fine">30-day money back</div>
  </div>
</section>
23 / 30
App Store Hero
Pure CSS
★★★★★ · 4.9 on the App Store

Your day, in one tap.

Plan, focus, ship — without leaving the home screen.

A mobile-app landing hero — three phone mockups in a fanned arrangement showing different screens, with a download CTA pair (App Store / Play). The phones are inline SVG; the rotation gives a "product family" feel.
Try it
.hs-app {
  width: 100%;
  min-height: clamp(240px, 32vh, 100vh);
  padding: clamp(20px, 4vh, 60px) clamp(16px, 4vw, 40px);
  background:
    radial-gradient(50% 50% at 70% 30%, rgba(124,108,255,0.18), transparent 70%),
    #0a0a14;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 3vw, 32px); align-items: center;
  font-family: system-ui, sans-serif; color: #f0eeff;
}
@media (max-width: 720px) { .hs-app { grid-template-columns: 1fr; } }
.hs-app-tag {
  display: inline-block; font-size: clamp(10px, 1.4vw, 12px);
  color: #f5a84a; padding: 3px 10px; border-radius: 12px;
  background: rgba(245,168,74,0.12); border: 1px solid rgba(245,168,74,0.3);
}
.hs-app-l h1 {
  margin: 10px 0; font-size: clamp(22px, 5vw, 50px);
  font-weight: 800; line-height: 1.05; letter-spacing: -0.02em;
}
.hs-app-l p { margin: 0 0 14px; font-size: clamp(11px, 1.5vw, 15px); color: #b8b6d4; }
.hs-app-cta { display: flex; gap: 8px; flex-wrap: wrap; }
.hs-app-btn {
  display: flex; flex-direction: column;
  padding: 7px 14px; border-radius: 7px;
  background: #1a1a2e; color: #fff; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.18);
  transition: background 0.15s;
}
.hs-app-btn:hover { background: #25253a; }
.hs-app-btn span { font-size: 8.5px; color: #b8b6d4; letter-spacing: 0.05em; }
.hs-app-btn strong { font-size: clamp(11px, 1.4vw, 13px); }
.hs-app-fan {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 200px;
}
.hs-app-phone {
  width: clamp(60px, 14vw, 90px);
  aspect-ratio: 9 / 18;
  background: #0a0a14;
  border: 2px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 5px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.45);
  position: absolute;
  transition: transform 0.3s;
}
.hs-app-screen { width: 100%; height: 100%; border-radius: 8px; }
.hs-app-p1 { transform: translateX(-32%) rotate(-8deg); z-index: 1; }
.hs-app-p2 { transform: translateY(-6%) rotate(0deg); z-index: 3; }
.hs-app-p3 { transform: translateX(32%) rotate(8deg); z-index: 1; }
.hs-app-fan:hover .hs-app-p1 { transform: translateX(-44%) rotate(-12deg); }
.hs-app-fan:hover .hs-app-p3 { transform: translateX(44%) rotate(12deg); }
@media (prefers-reduced-motion: reduce) { .hs-app-phone { transition: none; } }
<section class="hs-app">
  <div class="hs-app-l">
    <span class="hs-app-tag">★★★★★ · 4.9 on the App Store</span>
    <h1>Your day, in one tap.</h1>
    <p>Plan, focus, ship — without leaving the home screen.</p>
    <div class="hs-app-cta">
      <a href="#" class="hs-app-btn">
        <span>Download on</span><strong>App Store</strong>
      </a>
      <a href="#" class="hs-app-btn">
        <span>Get it on</span><strong>Google Play</strong>
      </a>
    </div>
  </div>
  <div class="hs-app-fan">
    <div class="hs-app-phone hs-app-p1">
      <div class="hs-app-screen" style="background:linear-gradient(180deg,#7c6cff,#3d2a8b)"></div>
    </div>
    <div class="hs-app-phone hs-app-p2">
      <div class="hs-app-screen" style="background:linear-gradient(180deg,#ff6c8a,#7c2a5a)"></div>
    </div>
    <div class="hs-app-phone hs-app-p3">
      <div class="hs-app-screen" style="background:linear-gradient(180deg,#2eb88a,#1a5a4a)"></div>
    </div>
  </div>
</section>
24 / 30
Neon CTA Hero
Pure CSS
// SHIPPING SOON

Build at the speed of thought.

The fastest path from idea to interface.

Join the waitlist
2,400 builders ahead of you · No spam, ever
A dark hero where everything supports the single bright neon-glow CTA — the conversion-funnel pattern. The button breathes with a soft pulse and lifts on hover, drawing the eye through the headline straight to the click.
Try it
.hs-neo {
  position: relative;
  width: 100%;
  min-height: clamp(220px, 30vh, 100vh);
  padding: clamp(20px, 4vh, 60px) clamp(16px, 4vw, 40px);
  background: #06060c;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  font-family: system-ui, sans-serif; color: #f0eeff; text-align: center;
}
.hs-neo-grid {
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(124,108,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,108,255,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(60% 60% at 50% 50%, #000, transparent 80%);
  -webkit-mask-image: radial-gradient(60% 60% at 50% 50%, #000, transparent 80%);
}
.hs-neo-c {
  position: relative; z-index: 1;
  max-width: 600px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hs-neo-eye {
  font-family: monospace; font-size: clamp(9px, 1.3vw, 11px);
  letter-spacing: 0.16em; color: #2eb88a;
}
.hs-neo h1 {
  margin: 0; font-size: clamp(20px, 4.5vw, 50px);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.02em;
  color: #fff;
}
.hs-neo h1 em {
  font-style: italic; font-weight: 800;
  background: linear-gradient(135deg, #7c6cff, #a78bfa);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hs-neo p { margin: 0; font-size: clamp(11px, 1.5vw, 15px); color: #b8b6d4; }
.hs-neo-cta {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 8px;
  padding: 12px 24px; border-radius: 8px;
  background: linear-gradient(135deg, #7c6cff, #a78bfa);
  color: #fff;
  font-size: clamp(12px, 1.6vw, 15px); font-weight: 700;
  text-decoration: none;
  box-shadow:
    0 0 0 1px rgba(167,139,250,0.5),
    0 0 24px rgba(124,108,255,0.45),
    0 0 48px rgba(124,108,255,0.25);
  animation: hs-neo-pulse 2.6s ease-in-out infinite;
  transition: transform 0.15s;
}
.hs-neo-cta:hover { transform: translateY(-2px); animation: none; }
.hs-neo-arrow { transition: transform 0.2s; }
.hs-neo-cta:hover .hs-neo-arrow { transform: translateX(4px); }
.hs-neo-meta { font-size: clamp(9px, 1.2vw, 11px); color: #b8b6d4; margin-top: 4px; }
@keyframes hs-neo-pulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(167,139,250,0.5), 0 0 24px rgba(124,108,255,0.45), 0 0 48px rgba(124,108,255,0.25); }
  50%      { box-shadow: 0 0 0 1px rgba(167,139,250,0.7), 0 0 36px rgba(124,108,255,0.7),  0 0 72px rgba(124,108,255,0.4); }
}
@media (prefers-reduced-motion: reduce) { .hs-neo-cta { animation: none; } }
<section class="hs-neo">
  <div class="hs-neo-grid" aria-hidden="true"></div>
  <div class="hs-neo-c">
    <span class="hs-neo-eye">// SHIPPING SOON</span>
    <h1>Build at the speed of <em>thought</em>.</h1>
    <p>The fastest path from idea to interface.</p>
    <a class="hs-neo-cta" href="#">
      <span>Join the waitlist</span>
      <span class="hs-neo-arrow">→</span>
    </a>
    <div class="hs-neo-meta">2,400 builders ahead of you · No spam, ever</div>
  </div>
</section>
25 / 30
Parallax Mountain
Pure CSS
— Untouched

Where the trail ends.

Reserve a peak. We'll handle the climb.

Plan a trip
Layered SVG mountain silhouettes drift at different speeds — the parallax landscape pattern from outdoor / travel brands. Pure CSS keyframes; each layer uses a different `animation-duration` to fake depth.
Try it
.hs-prx {
  position: relative;
  width: 100%;
  min-height: clamp(240px, 32vh, 100vh);
  padding: clamp(20px, 4vh, 60px) clamp(16px, 4vw, 40px);
  background: linear-gradient(180deg, #ffd479 0%, #ff8a6c 35%, #7c4ab8 100%);
  display: flex; align-items: flex-start; justify-content: center;
  overflow: hidden;
  font-family: Georgia, serif; color: #fff;
}
.hs-prx-sky { position: absolute; inset: 0; background: radial-gradient(circle at 50% 100%, rgba(255,255,255,0.18), transparent 70%); }
.hs-prx-sun {
  position: absolute; left: 50%; top: 25%; transform: translate(-50%, -50%);
  width: clamp(60px, 14vw, 100px); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, #fff5d4 0%, #ffd479 60%, transparent 80%);
  box-shadow: 0 0 60px rgba(255,212,121,0.5);
}
.hs-prx-m { position: absolute; left: 0; right: 0; bottom: 0; width: 120%; height: 50%; }
.hs-prx-m3 { z-index: 1; animation: hs-prx-drift1 20s ease-in-out infinite alternate; }
.hs-prx-m2 { z-index: 2; height: 40%; animation: hs-prx-drift2 16s ease-in-out infinite alternate; }
.hs-prx-m1 { z-index: 3; height: 32%; animation: hs-prx-drift3 12s ease-in-out infinite alternate; }
.hs-prx-c {
  position: relative; z-index: 4;
  text-align: center; max-width: 520px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hs-prx-eye {
  font-family: monospace; font-size: clamp(9px, 1.3vw, 11px);
  letter-spacing: 0.16em; color: rgba(255,255,255,0.9);
}
.hs-prx h1 {
  margin: 0; font-size: clamp(24px, 5.5vw, 64px);
  font-weight: 700; font-style: italic; line-height: 1.05;
  letter-spacing: -0.02em;
}
.hs-prx p { margin: 0; font-family: system-ui, sans-serif; font-style: normal;
  font-size: clamp(11px, 1.5vw, 15px); color: rgba(255,255,255,0.92); }
.hs-prx-cta {
  margin-top: 6px;
  padding: 8px 18px; border-radius: 0;
  background: transparent; color: #fff;
  border: 1.5px solid #fff;
  font-family: system-ui, sans-serif; font-size: clamp(10px, 1.3vw, 12px);
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.hs-prx-cta:hover { background: #fff; color: #7c4ab8; }
@keyframes hs-prx-drift1 { 0% { transform: translateX(-2%); } 100% { transform: translateX(2%); } }
@keyframes hs-prx-drift2 { 0% { transform: translateX(2%); }  100% { transform: translateX(-3%); } }
@keyframes hs-prx-drift3 { 0% { transform: translateX(-3%); } 100% { transform: translateX(3%); } }
@media (prefers-reduced-motion: reduce) {
  .hs-prx-m1, .hs-prx-m2, .hs-prx-m3 { animation: none; }
}
<section class="hs-prx">
  <div class="hs-prx-sky" aria-hidden="true"></div>
  <div class="hs-prx-sun" aria-hidden="true"></div>
  <svg class="hs-prx-m hs-prx-m3" aria-hidden="true" viewBox="0 0 600 200" preserveAspectRatio="none">
    <path d="M0,200 L0,140 L80,80 L140,120 L220,60 L300,110 L380,70 L460,120 L540,90 L600,130 L600,200 Z" fill="#1a1438"/>
  </svg>
  <svg class="hs-prx-m hs-prx-m2" aria-hidden="true" viewBox="0 0 600 200" preserveAspectRatio="none">
    <path d="M0,200 L0,160 L60,120 L130,150 L210,100 L290,140 L380,110 L460,150 L540,120 L600,150 L600,200 Z" fill="#3a2a5a"/>
  </svg>
  <svg class="hs-prx-m hs-prx-m1" aria-hidden="true" viewBox="0 0 600 200" preserveAspectRatio="none">
    <path d="M0,200 L0,180 L70,150 L150,170 L240,140 L320,165 L400,145 L480,170 L560,150 L600,170 L600,200 Z" fill="#5a4a82"/>
  </svg>
  <div class="hs-prx-c">
    <span class="hs-prx-eye">— Untouched</span>
    <h1>Where the trail ends.</h1>
    <p>Reserve a peak. We'll handle the climb.</p>
    <a class="hs-prx-cta" href="#">Plan a trip</a>
  </div>
</section>
26 / 30
Isometric Room
Pure CSS
For modern teams

Workspaces that build themselves.

Components, layouts, and themes — assembled by the team that uses them most.

Start building →
An isometric SVG illustration as the hero visual — the dribbble-darling treatment for productivity, design, and "remote work" SaaS. The geometry hints at depth without being a real 3D render.
Try it
.hs-iso {
  width: 100%;
  min-height: clamp(220px, 30vh, 100vh);
  padding: clamp(20px, 4vh, 60px) clamp(16px, 4vw, 40px);
  background: linear-gradient(135deg, #0e0e16 0%, #1f0f3a 100%);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 3vw, 32px); align-items: center;
  font-family: system-ui, sans-serif; color: #f0eeff;
}
@media (max-width: 720px) { .hs-iso { grid-template-columns: 1fr; } }
.hs-iso-eye {
  font-family: monospace; font-size: clamp(9px, 1.3vw, 11px);
  letter-spacing: 0.14em; color: #a78bfa; text-transform: uppercase;
}
.hs-iso-l h1 {
  margin: 8px 0; font-size: clamp(20px, 4.5vw, 46px);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.02em;
}
.hs-iso-l p { margin: 0 0 12px; font-size: clamp(11px, 1.5vw, 15px); color: #b8b6d4; }
.hs-iso-cta {
  display: inline-block; padding: 9px 20px; border-radius: 7px;
  background: linear-gradient(135deg, #7c6cff, #a78bfa); color: #fff;
  font-size: clamp(11px, 1.5vw, 14px); font-weight: 700;
  text-decoration: none; transition: filter 0.15s;
}
.hs-iso-cta:hover { filter: brightness(1.12); }
.hs-iso-r { display: flex; justify-content: center; }
.hs-iso-r svg {
  width: clamp(160px, 30vw, 260px); height: auto; display: block;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,0.4));
}
<section class="hs-iso">
  <div class="hs-iso-l">
    <span class="hs-iso-eye">For modern teams</span>
    <h1>Workspaces that build themselves.</h1>
    <p>Components, layouts, and themes — assembled by the team that uses them most.</p>
    <a class="hs-iso-cta" href="#">Start building →</a>
  </div>
  <div class="hs-iso-r">
    <svg viewBox="0 0 220 200" aria-hidden="true">
      <defs>
        <linearGradient id="hs-iso-f" x1="0" y1="0" x2="0" y2="1">
          <stop offset="0%" stop-color="#a78bfa"/>
          <stop offset="100%" stop-color="#7c6cff"/>
        </linearGradient>
        <linearGradient id="hs-iso-w1" x1="0" y1="0" x2="0" y2="1">
          <stop offset="0%" stop-color="#3a2a6a"/>
          <stop offset="100%" stop-color="#1a1438"/>
        </linearGradient>
        <linearGradient id="hs-iso-w2" x1="0" y1="0" x2="0" y2="1">
          <stop offset="0%" stop-color="#5a4a8a"/>
          <stop offset="100%" stop-color="#2a1f5c"/>
        </linearGradient>
      </defs>
      <!-- Floor -->
      <polygon points="110,180 200,140 110,100 20,140" fill="url(#hs-iso-f)"/>
      <!-- Back walls -->
      <polygon points="110,100 200,55 200,140 110,100" fill="url(#hs-iso-w1)"/>
      <polygon points="110,100 20,55 20,140 110,100" fill="url(#hs-iso-w2)"/>
      <!-- Desk top -->
      <polygon points="110,135 170,105 110,80 50,105" fill="#ff6c8a" opacity="0.85"/>
      <polygon points="50,105 50,115 110,90 110,80" fill="#c54a6a"/>
      <polygon points="170,105 170,115 110,90 110,80" fill="#c54a6a"/>
      <!-- Monitor -->
      <polygon points="105,82 145,62 145,42 105,62" fill="#0e0e16"/>
      <polygon points="108,80 142,62 142,46 108,62" fill="#2eb88a"/>
      <!-- Chair -->
      <polygon points="80,140 100,128 100,150 80,162" fill="#f5a84a"/>
      <polygon points="80,140 80,162 70,160 70,142" fill="#c5803a"/>
      <!-- Lamp pole -->
      <line x1="155" y1="105" x2="155" y2="50" stroke="#fff5d4" stroke-width="2"/>
      <circle cx="155" cy="48" r="6" fill="#fff5d4"/>
    </svg>
  </div>
</section>
27 / 30
3D Card Stack
Pure CSS
Library · v3

One toolkit, infinite layers.

Stack components like cards. Compose without coupling.

Browse components →
Buttons 31 styles
Heroes 30 layouts
Layouts 24 grids
Three layered cards stacked in 3D perspective — the top card hovered, the others fanning behind. `transform: perspective() rotateY()` with staggered Z-translation creates the depth without WebGL.
Try it
.hs-3d {
  width: 100%;
  min-height: clamp(220px, 30vh, 100vh);
  padding: clamp(20px, 4vh, 60px) clamp(16px, 4vw, 40px);
  background: radial-gradient(50% 50% at 80% 30%, rgba(124,108,255,0.18), transparent 70%), #0e0e16;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 3vw, 32px); align-items: center;
  font-family: system-ui, sans-serif; color: #f0eeff;
  perspective: 1000px;
}
@media (max-width: 720px) { .hs-3d { grid-template-columns: 1fr; } }
.hs-3d-tag {
  display: inline-block;
  font-family: monospace; font-size: clamp(9px, 1.3vw, 11px);
  letter-spacing: 0.12em; color: #a78bfa; text-transform: uppercase;
  padding: 3px 10px; border-radius: 12px;
  background: rgba(124,108,255,0.12); border: 1px solid rgba(124,108,255,0.3);
}
.hs-3d-l h1 {
  margin: 10px 0; font-size: clamp(20px, 4.5vw, 44px);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.02em;
}
.hs-3d-l p { margin: 0 0 12px; font-size: clamp(11px, 1.5vw, 15px); color: #b8b6d4; }
.hs-3d-cta {
  display: inline-block; padding: 9px 20px; border-radius: 7px;
  background: linear-gradient(135deg, #7c6cff, #a78bfa); color: #fff;
  font-size: clamp(11px, 1.5vw, 14px); font-weight: 700;
  text-decoration: none; transition: filter 0.15s;
}
.hs-3d-cta:hover { filter: brightness(1.12); }
.hs-3d-stage {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 200px;
  transform-style: preserve-3d;
}
.hs-3d-card {
  position: absolute;
  width: clamp(110px, 22vw, 150px); aspect-ratio: 4 / 5;
  background: linear-gradient(180deg, #1f1538 0%, #0e0e16 100%);
  border: 1px solid rgba(167,139,250,0.4);
  border-radius: 12px;
  padding: clamp(10px, 2vw, 16px);
  display: flex; flex-direction: column; gap: 4px;
  box-shadow: 0 18px 38px rgba(0,0,0,0.4);
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.3, 1);
}
.hs-3d-icon {
  width: clamp(28px, 4vw, 36px); height: clamp(28px, 4vw, 36px);
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #7c6cff, #a78bfa); color: #fff;
  font-size: clamp(14px, 2vw, 18px); font-weight: 700;
  margin-bottom: 4px;
}
.hs-3d-card strong { font-size: clamp(12px, 1.6vw, 16px); color: #fff; }
.hs-3d-card span { font-size: clamp(9px, 1.2vw, 11px); color: #b8b6d4; }
.hs-3d-c1 { transform: rotateY(-18deg) translateX(-50%) translateZ(-40px); opacity: 0.85; }
.hs-3d-c2 { transform: rotateY(0deg)   translateX(0)    translateZ(0); z-index: 2; }
.hs-3d-c3 { transform: rotateY(18deg)  translateX(50%)  translateZ(-40px); opacity: 0.85; }
.hs-3d-stage:hover .hs-3d-c1 { transform: rotateY(-22deg) translateX(-65%) translateZ(-20px); opacity: 1; }
.hs-3d-stage:hover .hs-3d-c3 { transform: rotateY(22deg)  translateX(65%)  translateZ(-20px); opacity: 1; }
@media (prefers-reduced-motion: reduce) { .hs-3d-card { transition: none; } }
<section class="hs-3d">
  <div class="hs-3d-l">
    <span class="hs-3d-tag">Library · v3</span>
    <h1>One toolkit, infinite layers.</h1>
    <p>Stack components like cards. Compose without coupling.</p>
    <a class="hs-3d-cta" href="#">Browse components →</a>
  </div>
  <div class="hs-3d-stage">
    <div class="hs-3d-card hs-3d-c1">
      <div class="hs-3d-icon">◆</div>
      <strong>Buttons</strong>
      <span>31 styles</span>
    </div>
    <div class="hs-3d-card hs-3d-c2">
      <div class="hs-3d-icon">●</div>
      <strong>Heroes</strong>
      <span>30 layouts</span>
    </div>
    <div class="hs-3d-card hs-3d-c3">
      <div class="hs-3d-icon">▲</div>
      <strong>Layouts</strong>
      <span>24 grids</span>
    </div>
  </div>
</section>
28 / 30
Particle Starfield
Pure CSS
⌥ Cosmic build

Ship to the moon.

Built for ambitious teams who measure in light-years.

Launch your project
A starfield drifting behind the headline — pure CSS dots positioned via `radial-gradient` with `background-size` and a slow scroll animation. No `<canvas>`, no JS, no per-particle DOM nodes.
Try it
.hs-star {
  position: relative;
  width: 100%;
  min-height: clamp(240px, 32vh, 100vh);
  padding: clamp(20px, 4vh, 60px) clamp(16px, 4vw, 40px);
  background: radial-gradient(80% 80% at 50% 100%, #1a0a3a 0%, #06060c 70%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  font-family: system-ui, sans-serif; color: #f0eeff; text-align: center;
}
.hs-star-bg, .hs-star-bg2 {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 20px 30px,  rgba(255,255,255,0.85), transparent),
    radial-gradient(1px 1px at 60px 70px,  rgba(255,255,255,0.7),  transparent),
    radial-gradient(1.5px 1.5px at 110px 40px, rgba(255,255,255,0.9), transparent),
    radial-gradient(1px 1px at 160px 90px, rgba(167,139,250,0.7), transparent),
    radial-gradient(1px 1px at 200px 20px, rgba(255,255,255,0.6), transparent),
    radial-gradient(1.5px 1.5px at 240px 70px, rgba(255,108,138,0.65), transparent),
    radial-gradient(1px 1px at 280px 50px, rgba(255,255,255,0.7), transparent);
  background-size: 320px 120px;
  background-repeat: repeat;
  animation: hs-star-pan 60s linear infinite;
}
.hs-star-bg2 {
  background-image:
    radial-gradient(1px 1px at 30px 80px,  rgba(255,255,255,0.55), transparent),
    radial-gradient(1px 1px at 90px 30px,  rgba(167,139,250,0.6),  transparent),
    radial-gradient(1px 1px at 150px 100px, rgba(255,255,255,0.45), transparent),
    radial-gradient(1px 1px at 220px 50px, rgba(255,255,255,0.65), transparent),
    radial-gradient(1px 1px at 280px 110px, rgba(46,184,138,0.5),  transparent);
  background-size: 320px 160px;
  animation-duration: 90s;
  opacity: 0.7;
}
.hs-star-c {
  position: relative; z-index: 1; max-width: 560px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hs-star-eye {
  font-family: monospace; font-size: clamp(9px, 1.3vw, 11px);
  letter-spacing: 0.14em; color: #a78bfa; text-transform: uppercase;
}
.hs-star h1 {
  margin: 0; font-size: clamp(24px, 5.5vw, 64px);
  font-weight: 900; line-height: 1.05; letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff 30%, #a78bfa 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hs-star p { margin: 0; font-size: clamp(11px, 1.5vw, 15px); color: #b8b6d4; }
.hs-star-cta {
  padding: 9px 20px; border-radius: 7px;
  background: linear-gradient(135deg, #7c6cff, #a78bfa); color: #fff;
  font-size: clamp(11px, 1.5vw, 14px); font-weight: 700;
  text-decoration: none; margin-top: 4px;
  box-shadow: 0 8px 32px rgba(124,108,255,0.4);
  transition: transform 0.15s;
}
.hs-star-cta:hover { transform: translateY(-2px); }
@keyframes hs-star-pan { to { transform: translateX(-320px); } }
@media (prefers-reduced-motion: reduce) {
  .hs-star-bg, .hs-star-bg2 { animation: none; }
}
<section class="hs-star">
  <div class="hs-star-bg" aria-hidden="true"></div>
  <div class="hs-star-bg hs-star-bg2" aria-hidden="true"></div>
  <div class="hs-star-c">
    <span class="hs-star-eye">⌥ Cosmic build</span>
    <h1>Ship to the moon.</h1>
    <p>Built for ambitious teams who measure in light-years.</p>
    <a class="hs-star-cta" href="#">Launch your project</a>
  </div>
</section>
29 / 30
Glitch Text Hero
Pure CSS
[ SYS // ONLINE ]

REWIRED.

The next interface speaks in protocols, not pixels.

[ ENTER → ]
A cyberpunk-style hero where the headline glitches with layered RGB-channel offsets — the cyber 2077 / synthwave treatment. Two `::before/::after` clones offset and color-shifted, animated on a loop.
Try it
.hs-glh {
  position: relative;
  width: 100%;
  min-height: clamp(240px, 32vh, 100vh);
  padding: clamp(20px, 4vh, 60px) clamp(16px, 4vw, 40px);
  background: #06060c;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  font-family: 'Courier New', monospace; color: #f0eeff; text-align: center;
}
.hs-glh-scan {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0, transparent 2px, rgba(255,255,255,0.025) 2px, rgba(255,255,255,0.025) 3px);
  pointer-events: none; z-index: 1;
}
.hs-glh-c {
  position: relative; z-index: 2;
  max-width: 600px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hs-glh-eye {
  font-size: clamp(9px, 1.3vw, 12px);
  letter-spacing: 0.12em; color: #2eb88a;
  border: 1px solid rgba(46,184,138,0.4);
  padding: 3px 10px;
}
.hs-glh-h {
  margin: 0; position: relative;
  font-size: clamp(36px, 10vw, 120px);
  font-weight: 900; line-height: 1; letter-spacing: -0.04em;
  color: #fff;
}
.hs-glh-h::before, .hs-glh-h::after {
  content: attr(data-text);
  position: absolute; inset: 0;
  pointer-events: none;
}
.hs-glh-h::before {
  color: #ff6c8a; mix-blend-mode: screen;
  animation: hs-glh-r 3s steps(2, end) infinite;
}
.hs-glh-h::after {
  color: #3de8f5; mix-blend-mode: screen;
  animation: hs-glh-c 3s steps(2, end) infinite;
}
.hs-glh p { margin: 0; font-family: monospace; font-size: clamp(10px, 1.4vw, 13px); color: #b8b6d4; }
.hs-glh-cta {
  padding: 9px 18px;
  background: transparent; color: #2eb88a;
  border: 1.5px solid #2eb88a;
  font-size: clamp(11px, 1.4vw, 13px); font-weight: 700;
  letter-spacing: 0.12em; text-decoration: none;
  margin-top: 4px;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
}
.hs-glh-cta:hover { background: #2eb88a; color: #06060c; box-shadow: 0 0 30px rgba(46,184,138,0.6); }
@keyframes hs-glh-r {
  0%, 100% { transform: translate(0, 0); opacity: 0; }
  20%      { transform: translate(-3px, 1px); opacity: 0.85; }
  40%      { transform: translate(2px, -1px); opacity: 0.7; }
  60%      { transform: translate(-1px, 2px); opacity: 0; }
}
@keyframes hs-glh-c {
  0%, 100% { transform: translate(0, 0); opacity: 0; }
  20%      { transform: translate(2px, -1px); opacity: 0.7; }
  40%      { transform: translate(-2px, 1px); opacity: 0.85; }
  60%      { transform: translate(1px, -2px); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hs-glh-h::before, .hs-glh-h::after { animation: none; opacity: 0; }
}
<section class="hs-glh">
  <div class="hs-glh-scan" aria-hidden="true"></div>
  <div class="hs-glh-c">
    <span class="hs-glh-eye">[ SYS // ONLINE ]</span>
    <h1 class="hs-glh-h" data-text="REWIRED.">REWIRED.</h1>
    <p>The next interface speaks in protocols, not pixels.</p>
    <a class="hs-glh-cta" href="#">[ ENTER → ]</a>
  </div>
</section>
30 / 30
Conic Orbit Hero
Pure CSS
● Live preview

Generative, not generic.

Models that learn your design system — and respect it.

Try the model
A rotating conic-gradient ring orbits the headline — the rainbow-radial technique used by AI / ML product launches. Powered by a single `@property` animatable angle plus `conic-gradient` mask, no SVG.
Try it
@property --hs-orb-a {
  syntax: '<angle>'; inherits: false; initial-value: 0deg;
}
.hs-orb {
  position: relative;
  width: 100%;
  min-height: clamp(240px, 32vh, 100vh);
  padding: clamp(20px, 4vh, 60px) clamp(16px, 4vw, 40px);
  background: #06060c;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  font-family: system-ui, sans-serif; color: #f0eeff; text-align: center;
}
.hs-orb-ring {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: clamp(280px, 50vw, 600px); aspect-ratio: 1;
  border-radius: 50%;
  background:
    conic-gradient(from var(--hs-orb-a),
      #7c6cff 0%, #ff6c8a 25%, #ffd479 50%, #2eb88a 75%, #3de8f5 100%);
  -webkit-mask: radial-gradient(circle, transparent 38%, #000 40%, #000 50%, transparent 52%);
          mask: radial-gradient(circle, transparent 38%, #000 40%, #000 50%, transparent 52%);
  filter: blur(2px);
  animation: hs-orb-spin 8s linear infinite;
  opacity: 0.85;
}
.hs-orb-c {
  position: relative; z-index: 1;
  max-width: 480px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hs-orb-eye {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: monospace; font-size: clamp(9px, 1.3vw, 11px);
  letter-spacing: 0.14em; color: #2eb88a; text-transform: uppercase;
  padding: 3px 10px; border-radius: 12px;
  background: rgba(46,184,138,0.1); border: 1px solid rgba(46,184,138,0.3);
}
.hs-orb h1 {
  margin: 0; font-size: clamp(22px, 5vw, 56px);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 20%, #a78bfa 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hs-orb p { margin: 0; font-size: clamp(11px, 1.5vw, 15px); color: #b8b6d4; max-width: 380px; }
.hs-orb-cta {
  padding: 9px 20px; border-radius: 7px;
  background: rgba(255,255,255,0.95); color: #06060c;
  font-size: clamp(11px, 1.5vw, 14px); font-weight: 700;
  text-decoration: none; margin-top: 4px;
  transition: transform 0.15s;
}
.hs-orb-cta:hover { transform: translateY(-1px); }
@keyframes hs-orb-spin { to { --hs-orb-a: 360deg; } }
@media (prefers-reduced-motion: reduce) { .hs-orb-ring { animation: none; } }
<section class="hs-orb">
  <div class="hs-orb-ring" aria-hidden="true"></div>
  <div class="hs-orb-c">
    <span class="hs-orb-eye">●  Live preview</span>
    <h1>Generative, not generic.</h1>
    <p>Models that learn your design system — and respect it.</p>
    <a class="hs-orb-cta" href="#">Try the model</a>
  </div>
</section>
FAQ

Frequently asked questions

What is a CSS hero section?
A hero section is the first full-bleed band of a landing page — typically containing an eyebrow tag, headline, subheadline, primary call-to-action, and a supporting visual. It's the most important block on the page because it carries the value proposition above the fold.
Should a hero be exactly 100vh tall?
Not always. Use `min-height: 100vh` for a true full-screen statement (campaign sites, agency portfolios), but `min-height: clamp(380px, 60vh, 720px)` is more practical for SaaS — tall enough to feel intentional, short enough that critical content below the fold isn't hidden on landscape laptops.
How do I make a hero section responsive?
Use `clamp()` for headline font sizes (`clamp(24px, 5vw, 64px)`), `padding: clamp(20px, 4vh, 80px) clamp(16px, 4vw, 40px)` for breathing room that scales, and a single breakpoint at 720px to switch split-column layouts to stacked. Avoid fixed pixel widths anywhere.
Do I need a background image?
No — these heroes use only inline SVG illustrations and pure-CSS gradients. Real photos add weight and licensing constraints; for visual richness, stack `radial-gradient` blobs (mesh gradient pattern) or `backdrop-filter: blur()` over coloured shapes (glassmorphism). Both rival photographic richness without the bytes.
Are these heroes accessible?
Yes. Every hero uses semantic HTML — `<section>` for the band, exactly one `<h1>` for the headline, real anchor links for CTAs. Animations honour `prefers-reduced-motion`, decorative SVG carries `aria-hidden="true"`, and color contrast on copy meets WCAG AA.

Related collections