/* ============================================================
   GLOBAL — shared reset, background, fonts
============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Single frosted blue → white gradient shared across all sections */
html {
  min-height: 100%;
  background:
    radial-gradient(ellipse 52% 45% at 38% 28%,
      rgba(255, 255, 255, 0.58) 0%,
      rgba(190, 228, 248, 0.26) 52%,
      transparent 100%),
    linear-gradient(110deg,
      #1282bc 0%,
      #1c98d0 11%,
      #2eabdc 22%,
      #4fbde8 36%,
      #78ceed 50%,
      #a8dcf3 63%,
      #cceaf8 74%,
      #e4f4fb 84%,
      #f3fafd 92%,
      #ffffff 100%);
  background-attachment: fixed;
}

body {
  min-height: 100%;
  overflow-x: hidden;
  font-family: 'Montserrat', 'Arial Black', 'Helvetica Neue', sans-serif;
}
