@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&family=Manrope:wght@400;500;600;700&family=JetBrains+Mono:wght@400;700&display=swap');

html, body {
    margin: 0;
    background: #020617;
    color: #cbd5e1;
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

.font-mono,
code,
pre {
    font-family: 'JetBrains Mono', monospace;
}

*::selection {
    background: rgba(245, 158, 11, 0.25);
    color: #fff;
}

.grid-pattern {
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.06) 1px, transparent 1px);
    background-size: 48px 48px;
}

.animate-fade-up {
    animation: fadeInUp 0.5s ease-out both;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sticky-blur {
    backdrop-filter: blur(20px);
}

.toast {
    border-radius: 1rem;
    border: 1px solid rgba(245, 158, 11, 0.25);
    background: rgba(15, 23, 42, 0.92);
    padding: 1rem 1.25rem;
}

.card-glow {
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.08);
}

.cta-glow {
    box-shadow: 0 0 24px rgba(245, 158, 11, 0.25);
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #020617;
}

::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
    background: #334155;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}