/*
Theme Name:  Partnership White Label V2
Author:      aikeron
Description: Senior-level architecture for trading simulations.
Version:     2.0.0
*/

/* -----------------------------------------------------------
   Context: Core Typography & Reset
   ----------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* -----------------------------------------------------------
   Context: Utilities
   ----------------------------------------------------------- */
.smooth-scroll { scroll-behavior: smooth; }

.fade-in-up {
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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