/* Blueshift R&D LLC — Site styles */

:root {
  --blueshift-primary: #153084;
  --blueshift-secondary: #1e40af;
  --blueshift-accent: #3b82f6;
  --blueshift-light: #eef2ff;
  --blueshift-white: #ffffff;
  --blueshift-text: #0f172a;
  --blueshift-muted: #64748b;
  --blueshift-dark: #0f172a;
  --blueshift-dark-card: #1e293b;
  --blueshift-dark-border: #334155;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Toast notification */
.toast {
  animation: toast-in 0.3s ease-out, toast-out 0.3s ease-in 1.7s forwards;
}

@keyframes toast-in {
  from { opacity: 0; transform: translateY(1rem); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes toast-out {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-0.5rem); }
}
