:root {
    --bg: #fdfcfb;
    --surface: #ffffff;
    --border: #f0ebe5;
    --primary: #8e94f2;
    --primary-light: #d8dbfb;
    --secondary: #90e0ef;
    --accent-1: #ffcfd2;
    --accent-2: #fde4cf;
    --accent-3: #b9fbc0;
    --text-main: #2d3436;
    --text-muted: #636e72;
    --radius: 1.25rem;
    --shadow: 0 10px 30px -10px rgba(142, 148, 242, 0.15);
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Dark Mode Support */
[data-theme="dark"] {
    --bg: #0f172a;
    --surface: #1e293b;
    --border: #334155;
    --primary: #818cf8;
    --primary-light: #312e81;
    --secondary: #22d3ee;
    --accent-1: #4c1d95;
    --accent-2: #7c2d12;
    --accent-3: #064e3b;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    transition: background-color 0.5s ease, color 0.5s ease;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.fade-in {
    animation: fadeInUp 0.8s ease forwards;
}
