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

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background-color: #FFFFFF;
  color: #2D3E50;
  overflow-x: hidden;
}

.font-mono { font-family: 'JetBrains Mono', monospace; }

/* Liquid Glass Refraction */
.liquid-glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 20px 40px -15px rgba(0, 0, 0, 0.3);
}

.liquid-glass-dark {
  background: rgba(26, 26, 78, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 229, 160, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 20px 40px -15px rgba(0, 0, 0, 0.5);
}

/* Animations */
@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink-caret {
  from, a { border-color: transparent }
  50% { border-color: #00E5A0; }
}

.typing-effect {
  overflow: hidden;
  border-right: 2px solid #00E5A0;
  white-space: nowrap;
  animation: 
    typing 1.5s steps(40, end),
    blink-caret .75s step-end infinite;
}

/* Magnetic / Active states */
.btn-tactile {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-tactile:active {
  transform: translateY(1px) scale(0.98);
}

/* Scroll Reveals */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Utilities */
.text-cyber { color: #1A1A4E; }
.bg-cyber { background-color: #1A1A4E; }
.text-neon { color: #00E5A0; }
.bg-neon { background-color: #00E5A0; }
.text-lavender { color: #B388FF; }
.bg-lavender { background-color: #B388FF; }

/* Asymmetric hero clip */
.hero-clip {
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

/* Kanban Drag/Drop UI */
.kanban-column {
  min-height: 400px;
  border-top: 2px solid rgba(0,229,160,0.3);
}
.kanban-item {
  cursor: grab;
  transition: transform 0.2s cubic-bezier(0.16,1,0.3,1), box-shadow 0.2s;
}
.kanban-item:active { cursor: grabbing; }

/* Dashboard numbers */
.dashboard-value {
  font-variant-numeric: tabular-nums;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #1A1A4E; }
::-webkit-scrollbar-thumb { background: #B388FF; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #00E5A0; }
