@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Inter+Tight:wght@500;600;700;800&display=swap');

body {
    font-family: 'Inter', system-ui, sans-serif;
}

h1, h2, h3 {
    font-family: 'Inter Tight', 'Inter', system-ui, sans-serif;
}

.glow-text {
    color: #22d3ee;
}

.card-hover {
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.card-hover:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 211, 238, .6);
    box-shadow: 0 12px 40px rgba(34, 211, 238, .15);
}
