/*
 * Conta Grana — Spacing, radii & layout tokens
 */

:root {

  /* ── Border radius ───────────────────────── */
  --r-sm:   8px;    /* Buttons, small elements */
  --r-md:   12px;   /* Inputs, data cells */
  --r-lg:   16px;   /* Cards, panels */
  --r-xl:   24px;   /* Section containers, modals, large cards */
  --r-pill: 100px;  /* Tags, badges, nav pills, toggles */

  /* ── Spacing scale (4px base) ────────────── */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  20px;
  --space-6:  24px;
  --space-8:  32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-22: 88px;

  /* ── App shell ───────────────────────────── */
  --app-sidebar-bg:   #0A0F1E;
  --app-sidebar-w:    220px;  /* expanded */
  --app-sidebar-w-sm: 64px;   /* collapsed (icons only) */
  --app-topbar-h:     56px;
  --app-topbar-bg:    #FFFFFF;
  --app-content-bg:   #F4F6FA;
  --app-nav-active:   rgba(0,38,153,0.50);
  --app-nav-inactive: rgba(255,255,255,0.55);
  --app-nav-hover:    rgba(255,255,255,0.06);

  /* ── Breakpoints ─────────────────────────── */
  --bp-mobile:  640px;   /* @kind spacing */
  --bp-tablet:  1024px;  /* @kind spacing */
  --bp-desktop: 1440px;  /* @kind spacing */
  --content-max: 1200px; /* @kind spacing */

  /* ── Interactive sizing ──────────────────── */
  --hit-target-desktop: 36px; /* @kind spacing */
  --hit-target-mobile:  44px; /* @kind spacing */

  /* ── Form inputs ─────────────────────────── */
  --input-padding:   9px 12px;
  --input-font-size: 13.5px; /* @kind font */
  --label-font-size: 12px;   /* @kind font */
  --hint-font-size:  11.5px; /* @kind font */

}
