@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap");

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", system-ui, sans-serif;
    background: #f5f6f3;
    color: #10151a;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    animation: lander 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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