* {
  box-sizing: border-box;
}

body {
  position: relative;
  overflow-x: hidden;
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(231, 193, 107, .105), transparent 34%),
    radial-gradient(ellipse at 50% 42%, rgba(244, 215, 170, .050), transparent 45%),
    radial-gradient(circle at 12% 44%, rgba(113, 28, 36, .30), transparent 30%),
    radial-gradient(circle at 88% 44%, rgba(113, 28, 36, .26), transparent 30%),
    linear-gradient(180deg, #070a10 0%, #08070a 48%, #0c0808 100%);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 48px 0 0 0;
  pointer-events: none;
  z-index: 0;
  opacity: .92;
  background:
    linear-gradient(90deg, rgba(34, 7, 13, .52) 0%, transparent 18%, transparent 82%, rgba(34, 7, 13, .48) 100%),
    radial-gradient(ellipse at 50% 5%, rgba(255, 232, 190, .10), transparent 30%),
    radial-gradient(ellipse at 50% 72%, rgba(0, 0, 0, .28), transparent 58%);
}

body::after {
  content: "";
  position: fixed;
  inset: 48px 0 0 0;
  pointer-events: none;
  z-index: 0;
  opacity: .26;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,.018) 0px,
      rgba(255,255,255,.018) 1px,
      transparent 1px,
      transparent 5px
    );
  mix-blend-mode: soft-light;
}

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

.page {
  position: relative;
  z-index: 1;
  width: min(var(--page-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 60px;
}

.page::before {
  content: "";
  position: fixed;
  left: 50%;
  top: 7%;
  width: min(58vw, 840px);
  height: 48vh;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse at center, rgba(244, 215, 170, .075), transparent 67%);
}

.footer {
  position: relative;
  z-index: 1;
  width: min(var(--page-width), calc(100% - 32px));
  margin: 0 auto 28px;
  padding-top: 20px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 13px;
}
