body {
  font-family: 'Inter', sans-serif;
  background: #f9f9ff;
  color: #0d1c32;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Manrope', sans-serif;
}

.hero-gradient {
  background:
    radial-gradient(circle at 18% 22%, rgba(184, 0, 53, 0.22), transparent 22%),
    radial-gradient(circle at 82% 28%, rgba(0, 98, 134, 0.18), transparent 28%),
    radial-gradient(circle at 50% 75%, rgba(255, 255, 255, 0.06), transparent 24%),
    linear-gradient(180deg, #10213f 0%, #0a192f 100%);
}

.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.nav-link.active {
  color: #b80035;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 9999px;
  background: linear-gradient(90deg, #b80035, #e11d48);
}

.brand-mark {
  mix-blend-mode: multiply;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .animate-fade-up {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }
}
