html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 7rem;
}

body {
  min-height: 100vh;
  color: var(--brand-text);
  background:
    radial-gradient(circle at 90% 20%, rgba(34, 72, 140, 0.25), transparent 35%),
    radial-gradient(circle at 0% 100%, rgba(25, 55, 110, 0.18), transparent 40%),
    linear-gradient(180deg, #05070b 0%, #08101b 100%);
}

h1,
h2,
h3 {
  color: white;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

p {
  color: var(--brand-text-muted);
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle at 95% 45%, rgba(55, 110, 255, 0.18), transparent 28%);
}

body.modal-open {
  overflow: hidden;
}

:focus-visible {
  outline: 2px solid rgba(245, 158, 11, 0.95);
  outline-offset: 3px;
}
