What problem does it solve? Desktop applications often ship with mobile-first habits: missing hover feedback, no keyboard shortcuts, hidden navigation, and broken focus rings. This Skill provides concrete, cross-platform guidance for building interfaces that feel native on macOS, Windows, Linux, and web desktop. ## Core Features & Use Cases - Hover and Pointer Guidance: Mandatory hover states with 100-200ms transitions, Fitts's Law target sizing, and WCAG 2.5.8 minimum 24x24px targets, with CSS, SwiftUI, and Compose Desktop examples. - Keyboard Shortcuts and Focus: Canonical shortcut tables (Cmd/Ctrl+N, S, F, K), cross-platform modifier detection, chord patterns, and focus management via @FocusState, FocusRequester, and :focus-visible. - Multi-Window Architecture: When to use WindowGroup vs Window, state sharing via singletons or DI, and lifecycle pitfalls like offscreen window restoration. - Use Case: You are building a desktop web app and users complain it feels like a mobile site. Apply this Skill to add hover feedback, bind Cmd+K to a command palette, restore focus rings, and replace the hamburger menu with a persistent sidebar. ## Quick Start Review my desktop app's main screen and apply desktop UX principles for hover states, keyboard shortcuts, and focus management.