A modern, single‑file demo page that flexes CSS skills.

Glass panels, fluid type, responsive grids, accessible focus, tabs, modal, toast, and a theme toggle. Everything is in this one HTML file—great for proof‑of‑concept sites.

Fluid type via clamp()
Glass UI via backdrop-filter
Grid + responsive layout
Accessible components
Explore components

Feature cards

Modern layout, modern polish—no frameworks.

Layout

Responsive grid that degrades gracefully

Uses CSS Grid for structure, flexible gaps, and fluid sizing. Shrinks to a single column on smaller screens.

Grid Flex clamp()
Visual

Glassmorphism with accessible contrast

Backdrop blur + layered gradients + a restrained border system. Still readable in both light and dark themes.

backdrop-filter color-mix() OKLab
UX

Accessible interactive states

Focus-visible rings, proper tab semantics, and reduced-motion support. Keyboard users shouldn’t feel like second-class citizens.

:focus-visible ARIA tabs prefers-reduced-motion

Components

Tabs + code block + a small form.

:root{
  --bg: #0b0f17;
  --card: color-mix(in oklab, #0f172a 80%, #000 20%);
  --text: #e6edf6;
  --accent: #7c3aed;
  --radius-xl: 24px;
  --h1: clamp(2.2rem, 3vw + 1.2rem, 4.1rem);
}
.card{
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--card) 72%, transparent);
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  overflow: clip;
}

Everything here is “real”: tabs have keyboard-friendly semantics, the modal uses <dialog>, and there’s a toast with a progress bar. The visual effects are CSS; the JS is just glue.

Jump to pricing →

Contact

Demo form with inline validation.

No backend
Required.
Must be a valid email.
Try submitting—this will show a toast.

Pricing-style cards

Pure CSS: borders, gradients, hierarchy.

Starter Simple
$0 / demo

A minimal POC layout to iterate quickly.

  • Single HTML file
  • Responsive grid
  • Theme toggle
Studio Custom
$49 / month

For extended pages and additional sections.

  • Design token system
  • More page templates
  • Component library
Toast notification
Copied to clipboard.