:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  background: #111512;
  color: #f4f6f2;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: #111512;
}

a {
  color: inherit;
}

.welcome {
  position: relative;
  min-height: calc(100svh - 104px);
  overflow: hidden;
  isolation: isolate;
}

.welcome__image,
.welcome__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.welcome__image {
  z-index: -3;
  object-fit: cover;
  object-position: center 45%;
  filter: saturate(.72) contrast(1.08);
}

.welcome__shade {
  z-index: -2;
  background: rgba(7, 11, 9, .73);
}

.site-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.site-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 15px;
  font-weight: 650;
  letter-spacing: 0;
  text-decoration: none;
}

.site-mark__symbol {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  background: #d6ff4b;
  color: #10130f;
  font-size: 11px;
  font-weight: 800;
}

.site-state {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #dce1dc;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-state i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d6ff4b;
  box-shadow: 0 0 0 4px rgba(214, 255, 75, .14);
}

.welcome__content {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 13vh 0 14vh;
}

.eyebrow {
  margin: 0 0 20px;
  color: #d6ff4b;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0;
}

h1 {
  max-width: 940px;
  margin: 0;
  color: #fff;
  font-size: 76px;
  font-weight: 720;
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.intro {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 600px;
  margin: 28px 0 0;
  color: #e1e5df;
  font-size: 22px;
  line-height: 1.65;
  letter-spacing: 0;
}

.intro strong {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0;
}

.intro span {
  color: #d0d5cf;
  font-size: 17px;
  letter-spacing: 0;
}

.rule {
  width: 54px;
  height: 3px;
  margin-top: 36px;
  background: #ff8067;
}

.note {
  margin: 16px 0 0;
  color: #b9c0b9;
  font-size: 14px;
  letter-spacing: 0;
}

.scroll-cue {
  position: absolute;
  right: max(32px, calc((100vw - 1180px) / 2));
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #dce1dc;
  font-size: 13px;
  text-decoration: none;
}

.scroll-cue__arrow {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 50%;
  font-size: 16px;
}

.status-band {
  display: flex;
  min-height: 104px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 22px max(32px, calc((100vw - 1180px) / 2));
  background: #eef1eb;
  color: #171b17;
}

.status-band dl {
  display: flex;
  gap: 64px;
  margin: 0;
}

.status-band dl div {
  min-width: 88px;
}

.status-band dt {
  margin-bottom: 5px;
  color: #6b726a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.status-band dd {
  margin: 0;
  font-size: 15px;
  font-weight: 680;
  letter-spacing: 0;
}

.footer-meta {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 7px;
}

.footer-meta p {
  margin: 0;
  color: #50574f;
  font-size: 13px;
  letter-spacing: 0;
}

.footer-meta a {
  color: #50574f;
  font-size: 12px;
  letter-spacing: 0;
  text-underline-offset: 3px;
}

.footer-meta a:hover {
  color: #171b17;
}

@media (max-width: 720px) {
  .welcome {
    min-height: calc(100svh - 150px);
  }

  .site-header,
  .welcome__content {
    width: calc(100% - 40px);
  }

  .site-header {
    padding: 20px 0;
  }

  .welcome__content {
    padding: 12vh 0 18vh;
  }

  h1 {
    font-size: 44px;
  }

  .intro {
    margin-top: 20px;
    font-size: 18px;
  }

  .intro strong {
    font-size: 24px;
  }

  .scroll-cue {
    right: 20px;
    bottom: 20px;
  }

  .status-band {
    min-height: 150px;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding: 22px 20px;
  }

  .status-band dl {
    width: 100%;
    justify-content: space-between;
    gap: 16px;
  }

  .status-band dl div {
    min-width: 0;
  }

  .footer-meta {
    width: 100%;
    align-items: flex-start;
  }

  .footer-meta p {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
