/* Main Styles from homepage.html */
html {
  scroll-behavior: smooth;
}

body {
  background-color: #020617;
  background-image: radial-gradient(circle at 50% 0%, #1e293b 0%, #020617 70%);
  color: #f8fafc;
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: rgba(56, 189, 248, 0.3);
  color: #ffffff;
}

.font-serif {
  font-family: "Spectral", serif;
}

.grid-bg {
  background-image:
    linear-gradient(rgba(56, 189, 248, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.accent-blue {
  color: #38bdf8;
}

.accent-red {
  color: #ef4444;
}

.border-blue {
  border-color: #38bdf8;
}

.border-red {
  border-color: #ef4444;
}

/* Industrial Minimalist Utilities */

.btn-slate {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s;
}

.btn-slate:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-primary {
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: #38bdf8;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background: rgba(56, 189, 248, 0.2);
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
}

/* Flow Animation */
@keyframes flowPulse {
  0% {
    stroke-dashoffset: 24;
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }

  100% {
    stroke-dashoffset: 0;
    opacity: 0.4;
  }
}

.animate-flow path {
  stroke-dasharray: 12;
  animation: flowPulse 3s linear infinite;
}

/* Extra animations */
@keyframes moveRight {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translateX(300px);
    opacity: 0;
  }
}