/* NexusVeritas -- Shared site styles, used across all pages */
/* Single source of truth for common patterns -- see WORK_PROTOCOL S54 */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s ease forwards;
}
@keyframes fadeIn {
  to { opacity: 1; transform: translateY(0); }
}

.copy-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #3D7FFF;
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  cursor: pointer;
  opacity: 0.8;
}
.copy-btn:hover { opacity: 1; }

.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3D7FFF;
  opacity: .9;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-veritaslab { color: #F0F2F8; }

