@font-face {
  font-family: "unit-regular";
  src: url("assets/fonts/unit-regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "unit-mono";
  src: url("assets/fonts/unit-mono.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  color-scheme: dark;
  background: #131313;
  color: #bfbfbf;
  font-family:
    "unit-regular",
    "Helvetica Neue",
    Helvetica,
    Arial,
    sans-serif;
  font-synthesis: none;
  font-feature-settings: "ss03" 1;
  text-rendering: geometricprecision;
}

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

html,
body {
  width: 100%;
  min-width: 320px;
  min-height: 100%;
}

body {
  margin: 0;
  overflow: hidden;
  background: #131313;
}

p,
h1 {
  margin: 0;
}

.page {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: #131313;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
}

.globe {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 650px;
  height: 650px;
  overflow: visible;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.profile {
  position: absolute;
  top: 50%;
  left: calc(50% + 0.5px);
  width: 505px;
  padding: 8px 8px 48px;
  transform: translate(-50%, -50%);
}

.profile__inner {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

.avatars {
  display: flex;
  width: 200px;
  height: 80px;
  flex: 0 0 auto;
  align-items: center;
}

.avatar {
  position: relative;
  display: block;
  width: 80px;
  height: 80px;
  flex: 0 0 80px;
}

.avatar:not(:last-child) {
  margin-right: -20px;
}

.avatar__asset {
  position: absolute;
  top: -4px;
  left: -4px;
  display: block;
  width: 88px;
  height: 88px;
}

.avatar__asset img {
  display: block;
  width: 88px;
  height: 88px;
  max-width: none;
}

.copy {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  font-size: 20px;
  line-height: 1.3;
  text-align: center;
  overflow-wrap: break-word;
}

.intro {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.intro h1 {
  width: 100%;
  color: #bfbfbf;
  font-family:
    "unit-mono",
    "SFMono-Regular",
    Consolas,
    "Liberation Mono",
    monospace;
  font-size: inherit;
  font-weight: 400;
  line-height: inherit;
}

.description {
  width: 100%;
  color: #474747;
}

.community {
  display: flex;
  width: 282px;
  max-width: 100%;
  flex-direction: column;
  align-items: center;
}

.community__link,
.community__count {
  width: 100%;
}

.community__link {
  color: #bfbfbf;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition:
    color 160ms ease,
    text-decoration-color 160ms ease;
}

.community__link:hover {
  color: #e2e2e2;
  text-decoration-color: currentcolor;
}

.community__link:focus-visible {
  color: #e2e2e2;
  outline: 1px solid #bfbfbf;
  outline-offset: 4px;
  border-radius: 1px;
}

.community__count {
  color: #474747;
}

.footer {
  position: absolute;
  bottom: 32px;
  left: 50%;
  display: flex;
  width: 76px;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  transform: translateX(-50%);
}

.footer__wordmark {
  display: flex;
  width: 76px;
  height: 16px;
  align-items: center;
  overflow: hidden;
}

.footer__wordmark img {
  display: block;
  width: 75.859px;
  height: 14.266px;
  max-width: none;
}

.footer__year {
  width: 76px;
  color: #474747;
  font-size: 19.2px;
  line-height: 1.3;
  text-align: center;
}

@media (max-width: 600px) {
  .footer {
    gap: 3px;
  }

  .footer__wordmark img {
    width: 65.247px;
    height: 12.27px;
  }

  .footer__wordmark {
    justify-content: center;
  }

  .footer__year {
    font-size: 16px;
  }

  .globe {
    top: calc(50% - 18px);
    width: 524px;
    height: 524px;
  }

  .profile {
    top: calc(50% + 0.5px);
    width: min(323px, calc(100% - 32px));
    padding: 8px 8px 40px;
  }

  .profile__inner {
    gap: 40px;
  }

  .avatars {
    width: 140px;
    height: 56px;
  }

  .avatar {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }

  .avatar:not(:last-child) {
    margin-right: -14px;
  }

  .avatar__asset {
    top: -2.8px;
    left: -2.8px;
    width: 61.6px;
    height: 61.6px;
  }

  .avatar__asset img {
    width: 61.6px;
    height: 61.6px;
  }

  .copy {
    gap: 24px;
    font-size: 16px;
  }

  .intro {
    gap: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .community__link {
    transition: none;
  }
}
