:root {
  --bg-color: #0a0a0a; 
  --surface-color: #121212; 
  --surface-hover: #1e1e1e; 
  --text-primary: #ededed; 
  --text-secondary: #a0a0a0; 
  
  /* Accents - International Orange */
  --accent-primary: #ff3300; 
  --accent-secondary: #ff3300;
  --accent-tertiary: #ffffff;
  --accent-gradient: linear-gradient(135deg, #ff3300, #ff5500);
  --accent-glow: none;
  
  /* Typography */
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Inter', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 5rem;
  --spacing-xl: 10rem;
  
  /* Layout */
  --container-width: 1400px;
  --header-height: 100px;
  
  /* Effects */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-sm: none;
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.5); 
  --glass: rgba(20, 20, 20, 0.8); 
  --glass-border: #333333;
  --glass-highlight: transparent;
  --backdrop-blur: blur(20px);
}

/* Reset & Base - Enhanced */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: default; 
}

/* Font Loading Optimization */
@font-face {
  font-family: 'Outfit';
  font-display: swap;
  src: local('Outfit');
}
@font-face {
  font-family: 'Space Grotesk';
  font-display: swap;
  src: local('Space Grotesk');
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section {
  padding: var(--spacing-xl) 0;
}

.section__title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  text-align: center;
  background: var(--accent-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient {
  background: var(--accent-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn--primary {
  background: var(--accent-gradient);
  color: white;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
}

.btn--outline {
  border: 2px solid var(--accent-primary);
  color: white;
}

.btn--outline:hover {
  background: rgba(99, 102, 241, 0.1);
}

.btn--sm {
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
}

.btn--white {
  background: white;
  color: black;
}

.btn--white:hover {
  background: #f0f0f0;
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 9999;
  pointer-events: none;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: white;
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: width 0.2s, height 0.2s, background-color 0.2s;
}

body:hover .cursor-outline {
  opacity: 1;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
  background: var(--surface-hover);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-primary);
}
