body {
  font-family: Inter, system-ui, sans-serif;
}

.nav-glass {
  background: rgba(10, 15, 31, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-stage {
  background-color: #0a0f1f;
  background-image:
    linear-gradient(90deg, rgba(10, 15, 31, 0.92) 0%, rgba(10, 15, 31, 0.78) 40%, rgba(10, 15, 31, 0.55) 72%, rgba(10, 15, 31, 0.7) 100%),
    linear-gradient(180deg, rgba(10, 15, 31, 0.4) 0%, rgba(10, 15, 31, 0.18) 45%, rgba(10, 15, 31, 0.82) 100%),
    linear-gradient(0deg, rgba(10, 15, 31, 0.35), rgba(10, 15, 31, 0.35)),
    url('/assets/hero-depth-navy.png');
  background-size: cover;
  background-position: 70% center;
  background-repeat: no-repeat;
}

.page-stage {
  background-color: #0a0f1f;
  background-image:
    linear-gradient(180deg, rgba(10, 15, 31, 0.55) 0%, rgba(10, 15, 31, 0.88) 40%, #0a0f1f 100%),
    linear-gradient(0deg, rgba(10, 15, 31, 0.45), rgba(10, 15, 31, 0.45)),
    url('/assets/hero-depth-navy.png');
  background-size: cover;
  background-position: 60% top;
  background-repeat: no-repeat;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  border-radius: 0.5rem;
  background-color: #2563eb;
  padding: 0.875rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.15);
  transition: background-color 0.15s ease;
}

.btn-primary:hover {
  background-color: #3b82f6;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(10, 15, 31, 0.4);
  padding: 0.875rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(224, 224, 224, 0.95);
  backdrop-filter: blur(4px);
  transition: border-color 0.15s ease, color 0.15s ease;
}

.btn-secondary:hover {
  border-color: rgba(96, 165, 250, 0.4);
  color: #fff;
}

.card-surface {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background-color: rgba(10, 15, 31, 0.55);
  padding: 2rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
}
