:root {
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* OpenClaw Inspired Very Dark / Minimal Palette */
  --bg-dark: #07090f;
  /* Very dark navy, almost black */
  --bg-card: rgba(255, 255, 255, 0.02);
  --bg-card-hover: rgba(255, 255, 255, 0.04);

  /* Borders */
  --border-color: rgba(255, 255, 255, 0.08);
  /* Very faint white line */
  --border-glow: rgba(59, 130, 246, 0.4);
  /* Blue glow */

  /* Accents */
  --primary: #3b82f6;
  --primary-glow: #60a5fa;

  /* Text */
  --text-main: #f8fafc;
  /* Crisp clear white */
  --text-muted: #94a3b8;
  /* Slate gray */

  /* Utilities */
  --nav-height: 80px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-pill: 9999px;

  --transition-normal: 0.25s ease;
}