﻿*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  font-family:'Inter',sans-serif;
  background:var(--bg-dark);
  color:var(--white);
  overflow-x:hidden;
}





/* AMBIENT GLOWS */
.ambient-glows {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.4;
  animation: floatOrb 20s infinite alternate ease-in-out;
}
.orb-1 {
  width: 600px;
  height: 600px;
  background: rgba(0, 200, 255, 0.15);
  top: -10%;
  left: -10%;
}
.orb-2 {
  width: 500px;
  height: 500px;
  background: rgba(10, 40, 100, 0.3);
  bottom: 10%;
  right: -5%;
  animation-delay: -5s;
  animation-duration: 25s;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(100px, 50px) scale(1.1); }
}

