Build a pure-white, minimal, futuristic fashion landing page titled **"LGPSM — Future Forward Fashion"**. Stack: React 19 + Vite + TypeScript + Tailwind CSS v4 + lucide-react. Page title: `LGPSM — Future Forward Fashion`. Description vibe: pure white minimal futuristic fashion website interface. Full-viewport single composition, black text on white, no purple, no cream, no cards-as-decoration, no glow effects. --- ## FONTS (exact Google Fonts) Load via Google Fonts: ``` https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@500;600;700&family=Michroma&family=Orbitron:wght@600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap ``` Usage: - **Orbitron** (600/700/800/900): logo `LGPSM`, main headline `FUTURE FORWARD FASHION`, drawer titles, collection titles - **Plus Jakarta Sans** (400/500/600/700): body UI, nav links, taglines, buttons, drawer content (default page font) - Michroma and Chakra Petch may be loaded but are unused on the main UI CSS utilities: - `.font-orbitron { font-family: 'Orbitron', sans-serif; }` - `.font-jakarta { font-family: 'Plus Jakarta Sans', sans-serif; }` Body: `bg-white text-black antialiased`, selection: `selection:bg-black selection:text-white`. --- ## FLUID SIZE SYSTEM (exact CSS variables) All sizes scale with viewport via `clamp()` — no hard fixed px breakpoints for type/spacing: ```css :root { --pad-x: clamp(1.25rem, 4.5vw, 5rem); --pad-y: clamp(1rem, 3vh, 4rem); --header-pt
……(完整源码请在站内查看)