/* Tabelo - CSS Reset & Base Styles */

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  transition: background-color 0.1s linear;
}

/* Gradient background overlay - Light mode with subtle gold warmth */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(245, 180, 0, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 60%, rgba(255, 211, 90, 0.05) 0%, transparent 50%),
    var(--bg-primary);
  pointer-events: none;
  z-index: -1;
}
