body {
  font-family: "Inter", sans-serif;
  background: #080808;
  padding-top: 10px;
}
html {
  scroll-behavior: smooth;
}
.hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(
    ellipse at center,
    rgba(124, 58, 237, 0.18) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 60%,
    rgba(124, 58, 237, 0.22) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.grid-texture {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
}
.bento-card {
  transition: border-color 0.2s;
}
.bento-card:hover {
  border-color: rgba(124, 58, 237, 0.5) !important;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.logo-track {
  animation: scroll 24s linear infinite;
}
.logo-track:hover {
  animation-play-state: paused;
}
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}
input:focus,
select:focus,
textarea:focus {
  border-color: rgb(124, 58, 237) !important;
  outline: none;
}

/* @media (max-width: 500px) {
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
  }
  .nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--grey);
    border-radius: 2px;
    transition: background 0.15s;
  }
  .nav-toggle:hover span {
    background: var(--orange);
  }
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 16px 24px;
    border-top: 1px solid var(--grey-dark);
  }
  .nav-links.open {
    display: flex;
  }
}
.nav-toggle {
  display: none;
}

.nav-links {
  display: flex;
} */

.nav-toggle {
  display: none;
}

.nav-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

@media (max-width: 500px) {
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
  }
  .nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #9ca3af;
    border-radius: 2px;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 16px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(8, 8, 8, 0.98);
  }
  .nav-links.open {
    display: flex;
  }
}

  .lightbox {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.9);
        z-index: 100;
        align-items: center;
        justify-content: center;
        cursor: zoom-out;
      }
      .lightbox.active {
        display: flex;
      }
      .lightbox img {
        max-width: 90vw;
        max-height: 90vh;
        border-radius: 12px;
      }