/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(111, 66, 255, 0.10), transparent 26%),
    radial-gradient(circle at 88% 14%, rgba(111, 66, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fbfbfd 48%, #f7f4ff 100%);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

[id] {
  scroll-margin-top: 110px;
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 145px;
  }

  [id] {
    scroll-margin-top: 145px;
  }
}

/* Print styles */
@media print {
  html {
    scroll-behavior: auto;
  }

  body {
    background: #ffffff;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}
