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

/* --- Modern Custom Scrollbars --- */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #030712;
}
::-webkit-scrollbar-thumb {
    background: #111827;
    border-radius: 9999px;
    border: 1px solid #030712;
}
::-webkit-scrollbar-thumb:hover {
    background: #3b82f6;
}

/* --- Global Accent Glows & Custom Shaders --- */
.glow-accent {
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.15);
}

.glow-success {
    box-shadow: 0 0 25px rgba(16, 185, 129, 0.15);
}

/* --- Enter Transitions --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.country-card, .pricing-grid-group > div, .usecase-content, #sys-diagnostic-box, #diagnostic-screen {
    animation: fadeInUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* --- Custom terminal cursor mimic --- */
@keyframes blink {
    50% { opacity: 0; }
}
.console-cursor {
    display: inline-block;
    width: 6px;
    height: 12px;
    background-color: #3b82f6;
    animation: blink 1s step-end infinite;
    vertical-align: middle;
}
