/* ========================================
   BASE & VARIABLES
   Core resets, typography, and CSS variables
======================================== */

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

html { 
    scroll-behavior: auto !important; 
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    overflow-x: hidden;
    background-color: white;
}

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

img {
    max-width: 100%;
    height: auto;
}

/* CSS VARIABLES */
:root {
    --primary: #2563eb;
    --primary-light: #4384e5;
    --primary-dark: #1e40af;
    --secondary: #0f172a;
    --accent: #06b6d4;
    --accent-light: #20d8f0;
    
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-600: #475569;
    --gray-800: #1e293b;
    
    --radius: 12px;
    --transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    color: var(--secondary);
    font-weight: 800;
}

/* LAYOUT */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
