Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/components/marketing/sections/StackSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,10 @@ export const StackSection = () => (
{hasProductMotif(product.id) ? (
<ProductMotif productId={product.id} surface="card" />
) : null}
<span
aria-hidden="true"
className="pointer-events-none absolute inset-0 bg-gradient-to-br from-white/[0.09] via-transparent to-black/[0.12]"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🔵 Low · Remove the synthetic gradient overlay

This adds a white-to-black synthetic gradient over every product plate. The root design guidance explicitly limits warmth to textures and imagery and says not to use synthetic color gradients, so the homepage stack now violates the shared marketing theme.

Keep the accent fields flat; if separation is needed, use the documented hairline or neutral layering treatments instead.

/>
<span className="relative self-start rounded-full border border-cream/20 bg-cream/10 px-3 py-1 text-sm font-medium text-cream/90 backdrop-blur-md backdrop-saturate-[1.3] transition-colors duration-300 [transition-timing-function:cubic-bezier(0.65,0,0.35,1)] motion-reduce:transition-none group-hover:border-cream/35 group-hover:bg-cream/25 group-hover:text-cream">
{product.verb}
</span>
Expand Down
Loading