/* ===== Variables & Reset ===== */
:root {
    --primary: #6329bb;
    --primary-dark: #4e1f95;
    --primary-light: #ede5f7;
    --secondary: #fd9804;
    --secondary-dark: #d97f03;
    --accent: #43ab51;
    --accent-light: #7fda19;
    --blue: #0ab6c9;
    --pink: #ef17b3;
    --orange: #fd9804;
    --text: #1e293b;
    --text-light: #64748b;
    --bg: #ffffff;
    --bg-alt: #f8f6fc;
    --bg-dark: #1a0e2e;
    --radius: 12px;
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
