/* Enable smooth scrolling for anchor links (e.g., clicking 'Features' in the menu) */
html {
    scroll-behavior: smooth;
}

/* Custom gradient text for a modern scientific feel */
.text-gradient {
    background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* A subtle glass effect for floating cards */
.glass-panel {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}