@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;600;700;800&family=Fira+Code:wght@400;500&display=swap');

body { font-family: 'Plus Jakarta Sans', sans-serif; scroll-behavior: smooth; }
.glass { background: rgba(15, 23, 42, 0.7); backdrop-filter: blur(16px); border: 1px solid rgba(255, 255, 255, 0.08); }
.hero-gradient { background: radial-gradient(circle at center, #1e293b 0%, #020617 100%); }
.text-gradient { background: linear-gradient(to right, #3b82f6, #8b5cf6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.feature-card:hover { transform: translateY(-10px); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.glow-shadow { box-shadow: 0 0 20px rgba(59, 130, 246, 0.2); }

.terminal-window {
    font-family: 'Fira Code', monospace;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}
.cursor {
    display: inline-block;
    width: 8px;
    height: 18px;
    background: #3b82f6;
    animation: blink 1s step-end infinite;
    vertical-align: middle;
}
@keyframes blink { 50% { opacity: 0; } }
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}
.float-anim { animation: float 6s ease-in-out infinite; }
