/* ================================
   BASE CSS — AI Conexus
   CSS Reset, Variables, and Base Rules
   Extracted from inline <style> blocks
================================ */

/* CSS Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* CSS Variables */
:root {
  --black: #000000;
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f5f5f7;
  --gray-200: #e8e8ed;
  --gray-300: #d2d2d7;
  --gray-400: #86868b;
  --gray-500: #6e6e73;
  --gray-600: #424245;
  --gray-800: #1d1d1f;
  --blue: #00a8ff;
  --blue-hover: #00bfff;
  --orange: #ff8c00;
  --orange-hover: #ffa033;
  --green: #34c759;
}

/* Base HTML */
html {
  scroll-behavior: smooth;
}

/* Base Body */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--black);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* Base Links */
a {
  color: inherit;
  text-decoration: none;
}

/* Base Images */
img {
  max-width: 100%;
  height: auto;
}
