/* ============================================================
   NEXORA · USER frontend overrides
   Loaded by the landing page, Explore, and the app shell — never
   by /manage/. This file is the USER side of the deterministic
   inheritance chain:

     GLOBAL (css/base/variables.css)
       ↓
     USER OVERRIDE (this file)
       ↓
     USER FRONTEND (landing / Explore / app)

   Rules:
   · Only :root token remaps live here — no selectors, no layouts.
     Later file wins ties, so every value below beats the global
     default inside user documents only.
   · Values preserve the shipped user look exactly. To restyle, change
     a value here (user only) or in variables.css (both frontends,
     unless overridden here).
   · Never target .admin-*, #admin-*, or body.admin-app from this file.
   · Extension: add a component token to variables.css first, consume
     it in the shared component, then — only if user must differ —
     remap it here.
   ============================================================ */

:root {
  /* Component shape profile (shipped user look, explicitly owned). */
  --radius-button: var(--radius-full);
  --radius-card: var(--radius-lg);
  --radius-modal: var(--radius-xl);
  --radius-input: var(--radius-md);

  /* Button density (shipped user padding). */
  --button-padding: 0.85rem 1.55rem;
}
