/*
 * ========================================================================
 * ANALYTIC ENDEAVORS - BASE CSS RESET & TYPOGRAPHY
 * Copyright (c) 2024-2025 Havens Consulting Inc. All Rights Reserved.
 * Origin: analyticendeavors.com | havens-consulting.com
 * ========================================================================
 */

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
  background: linear-gradient(180deg, #0a1628 0%, #0d0d1a 50%, #0a1628 100%);
  color: var(--text-primary);
}

/* Selection styling */
::selection {
  background: var(--teal);
  color: white;
}

/* Smooth scrollbar (WebKit) */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--teal);
}

/* Link defaults */
a {
  color: var(--teal-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--teal);
}

/* Image defaults */
img {
  max-width: 100%;
  height: auto;
}
