/* ============================================
   Base Styles - Variables, Reset, Utilities
   ============================================ */

/* CSS Variables */
:root {
  --color-bg: #0a0a0a;
  --color-bg-secondary: #111111;
  --color-text: #ffffff;
  --color-text-secondary: #888888;
  --color-accent: #6c63ff;
  --color-accent-hover: #5a52e0;
  --color-gradient-1: #667eea;
  --color-gradient-2: #764ba2;
  --font-primary: "Space Grotesk", sans-serif;
  --font-secondary: "Inter", sans-serif;
  --transition-smooth: cubic-bezier(0.65, 0, 0.35, 1);
  --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  /* Premium Enhancement Variables */
  --glow-accent: rgba(108, 99, 255, 0.4);
  --glow-gradient: rgba(118, 75, 162, 0.3);
}

/* Reduced Motion - Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .parallax-layer,
  .floating-shape,
  .hero-gradient-overlay {
    animation: none !important;
    transform: none !important;
  }
}

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

html {
  font-size: 16px;
}

body {
  font-family: var(--font-secondary);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: none;
}

button {
  cursor: none;
}

/* Selection */
::selection {
  background: rgba(108, 99, 255, 0.3);
  color: var(--color-text);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Smooth Scroll Offset */
section[id] {
  scroll-margin-top: 80px;
}

/* Section Common Styles */
.section-header {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 32px;
  margin-top: 12px;
}

.section-label {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-accent);
  letter-spacing: 0.1em;
}

.section-title {
  font-family: var(--font-primary);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
