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

/* Base Styles */
html {
  scroll-behavior: smooth;
  background-color: #0F172A;
  color: #FFFFFF;
}

body {
  font-family: 'Inter', "Manrope", sans-serif;
  overflow-x: hidden;
  background-color: #0F172A;
}

/* Custom Scrollbar for Premium Feel */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0F172A;
}

::-webkit-scrollbar-thumb {
  background: #1E293B;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #334155;
}

/* Typography Headings */
h1, h2, h3, h4, .font-heading {
  font-family: 'Space Grotesk', "Sora", sans-serif !important;
}

/* Custom animations and support classes */
.workflow-panel-transition {
  transition: opacity 0.2s ease-in-out;
}

/* Tailwind customization mappings */
.bg-primary {
  background-color: #0F172A;
}

.bg-secondary {
  background-color: #111827;
}

.text-accent-cyan {
  color: #06B6D4;
}

.bg-accent-cyan\/10 {
  background-color: rgba(6, 182, 212, 0.1);
}

.border-accent-cyan\/20 {
  border-color: rgba(6, 182, 212, 0.2);
}

.border-accent-cyan {
  border-color: #06B6D4;
}

.text-muted-slate {
  color: #94A3B8;
}

.border-border-subtle {
  border-color: rgba(255, 255, 255, 0.08);
}

/* Selection customization */
::selection {
  background-color: #06B6D4;
  color: #0F172A;
}
