/* 
 * Jibbio MAXeSites - Main Stylesheet
 * Enterprise Design Tokens & Base Typography
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap');

:root {
  /* Core Slate Neutral Palette */
  --bg-app: #090d16;
  --bg-surface: #0f172a;
  --bg-card: rgba(30, 41, 59, 0.6);
  --border-subtle: rgba(51, 65, 85, 0.6);
  
  /* Brand Accent Tokens */
  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-danger: #ef4444;
  --color-info: #06b6d4;

  /* Typography */
  --font-base: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
}

body {
  font-family: var(--font-base);
  background-color: var(--bg-app);
  color: #f8fafc;
  overflow-x: hidden;
}

.font-heading {
  font-family: var(--font-heading);
}

/* Custom Scrollbars */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #0f172a;
}
::-webkit-scrollbar-thumb {
  background: #334155;
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #475569;
}
