html {
  scroll-behavior: smooth;
}

body.site-shell {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 16% 6%, rgba(223, 245, 228, 0.96), transparent 22%),
    radial-gradient(circle at 86% 10%, rgba(232, 249, 236, 0.92), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fbfffc 38%, #f6fbf7 100%);
  color: var(--brand-ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.page-shell {
  width: min(var(--shell-width), calc(100vw - 40px));
  margin-inline: auto;
}

.site-shell {
  overflow-x: hidden;
}

.app-main {
  display: block;
}

