"use client" import { useSectionReveal } from "@/hooks/use-section-reveal" import { ChevronDown } from "lucide-react" const TITLE = "MycoStack" export function HeroSection() { const sectionRef = useSectionReveal() return (
{/* Title with staggered emergence */}

{TITLE.split("").map((letter, i) => ( {letter} ))}

{/* Subtitle */}

Technology-augmented commons.
Growing from beneath.

{/* Terminal tagline */}
> composting capitalism, growing alternatives _
{/* Scroll indicator */}
) }