/* App-wide corner-radius clamp (Layer 1 — app-specific token override).
 *
 * The geneops-brand radius scale tops out at md (16px) / lg (32px). On this
 * vertical those read as too round: the dashboard — the look we're matching —
 * sits its cards at xs (4px) and its chips at sm (8px), and nothing larger.
 * The "too big" corners the rest of the app shows (account, mcp, categories,
 * payments, …) all trace back to the shared .panel primitive and a handful of
 * card classes that bind to md/lg.
 *
 * Rather than retag every .panel and card across ~30 pages, clamp the two
 * large steps down to sm here, once, at the token level. After this the only
 * radii in play are xs (4px), sm (8px), and full (pills / avatars / progress
 * tracks / circular controls) — exactly the dashboard's vocabulary.
 *
 * Scope: home vertical only. This file is part of the app's `:app` bundle,
 * which other verticals and the platform don't load — they keep the gem's
 * canonical Figma radii. If one card ever genuinely needs to be rounder,
 * reach for `full`; don't bump these back up.
 */
:root {
  --corner-radius-md: var(--corner-radius-sm); /* 16px → 8px */
  --corner-radius-lg: var(--corner-radius-sm); /* 32px → 8px */
}
