:root {
  color-scheme: dark;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans SC",
    "Microsoft YaHei", Arial, sans-serif;
  color: #d4d6d8;
  background: #303236;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  min-width: 320px;
}

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

a:hover,
a:focus-visible {
  color: #9eb7ca;
}

.site {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  background: #303236;
}

.site-header {
  border-bottom: 1px solid #414449;
  background: #292b2f;
}

.site-header-inner {
  display: flex;
  width: min(920px, calc(100% - 32px));
  min-height: 46px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-brand {
  letter-spacing: 0.02em;
  font-size: 15px;
  font-weight: 600;
}

.site-navigation {
  display: flex;
  align-items: center;
}

.site-navigation a {
  padding: 6px 0;
  color: #b5b8bc;
  font-size: 14px;
  font-weight: 500;
}

.site-content {
  position: relative;
  flex: 1 0 280px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.site-content::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(1100px, 110vw);
  height: clamp(250px, 38vw, 440px);
  background:
    radial-gradient(
      ellipse 25% 38% at 12% 64%,
      rgb(91 126 146 / 12%) 0%,
      rgb(91 126 146 / 4%) 48%,
      transparent 76%
    ),
    radial-gradient(
      ellipse 36% 45% at 34% 40%,
      rgb(104 136 153 / 15%) 0%,
      rgb(104 136 153 / 5%) 46%,
      transparent 74%
    ),
    radial-gradient(
      ellipse 28% 32% at 51% 70%,
      rgb(111 124 139 / 10%) 0%,
      transparent 72%
    ),
    radial-gradient(
      ellipse 32% 46% at 69% 37%,
      rgb(121 104 138 / 14%) 0%,
      rgb(121 104 138 / 4%) 48%,
      transparent 75%
    ),
    radial-gradient(
      ellipse 22% 30% at 89% 59%,
      rgb(112 100 130 / 9%) 0%,
      transparent 73%
    );
  content: "";
  filter: blur(34px);
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(-4deg);
}

.site-footer {
  padding: 14px 16px 13px;
  border-top: 1px solid #414449;
  background: #292b2f;
  color: #b5b8bc;
  font-size: 13px;
  line-height: 1.55;
  text-align: center;
}

.site-footer-inner {
  width: min(920px, 100%);
  margin: 0 auto;
}

.site-footer p {
  margin: 0;
}

.site-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 7px;
}

.site-filing {
  margin-top: 2px !important;
  color: #969a9f;
}

@media (max-width: 520px) {
  .site-content {
    flex-basis: 220px;
  }
}
