/* RokkuWare Design Tokens & CSS Variables */
:root {
  /* Brand Colors (Dynamically configurable via Admin) */
  --primary: #0e8088;
  --primary-hover: #0a6b72;
  --primary-light: #e8f5f6;
  --accent: #e67e22;
  --accent-gold: #f1c40f;

  /* Neutrals & Typography */
  --bg-canvas: #fafafa;
  --bg-surface: #ffffff;
  --bg-subtle: #f0f2f5;
  --text-dark: #1c1e21;
  --text-body: #333333;
  --text-muted: #65676b;
  --border-color: #eaeaea;
  --border-hover: #d0d0d0;

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-brand: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Sizing & Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-smooth: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
