:root {
  color-scheme: dark;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #0A0F2C;
  font-family: 'Inter', sans-serif;
  color: #fff;
}

.font-display {
  font-family: 'Sora', sans-serif;
}

.bg-navy {
  background-color: #0A0F2C;
}

.bg-navy-light {
  background-color: #11173F;
}

.glass {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-hover:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.15);
}

.text-gradient {
  background: linear-gradient(90deg, #0057FF, #00D4FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.grid-bg {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.mask-gradient {
  mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}

.shadow-glow {
  box-shadow: 0 0 40px rgba(0, 87, 255, 0.4);
}

.shadow-glow-cyan {
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.35);
}

::selection {
  background: rgba(0, 212, 255, 0.3);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #0A0F2C;
}

::-webkit-scrollbar-thumb {
  background: #1a2250;
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: #0057FF;
}

button[type="submit"], button[type="button"] {
  cursor: pointer;
}
