* {
  box-sizing: border-box;
}

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

body {
  color: #000;
  font-family: "Courier Prime", "Courier New", Courier, monospace;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.24;
  -webkit-font-smoothing: auto;
  font-synthesis: none;
  text-rendering: geometricPrecision;
}

a,
button,
input {
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
  -webkit-font-smoothing: inherit;
  text-rendering: inherit;
}

a {
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

.text-link,
.back-link {
  appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  border-radius: 0;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  cursor: pointer;
}

.landing {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: 0;
  --landing-frame: 1440px;
  --landing-label-size: 18px;
}

.site-title {
  display: none;
  margin: 0;
  font-size: 13px;
  font-weight: 400;
}

.circle-map {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--landing-frame);
  aspect-ratio: 16 / 10;
  transform: translate(-50%, -50%);
  font-size: var(--landing-label-size);
}

.outer-circle,
.circle-node {
  position: absolute;
  border: 1px solid #000;
  border-radius: 50%;
}

.outer-circle {
  left: 24.7222%;
  top: 10.2222%;
  width: 50.5349%;
  height: 79.6182%;
}

.circle-node {
  display: grid;
  place-items: center;
  width: 15.9855%;
  aspect-ratio: 1;
  background: transparent;
  font-size: inherit;
  text-align: center;
  white-space: nowrap;
}

.circle-node span {
  position: relative;
  z-index: 2;
  display: inline-block;
  text-decoration: inherit;
  text-underline-offset: 2px;
}

.circle-node[href]:hover,
.circle-node[href]:focus-visible,
.text-link:hover,
.text-link:focus-visible,
.back-link:hover,
.back-link:focus-visible {
  outline: 0;
}

.node-about {
  top: 21.2678%;
  left: 34.8589%;
}

.node-manifesto {
  top: 21.2678%;
  left: 49.2974%;
}

.node-instagram {
  top: 42.9943%;
  left: 30.3039%;
}

.node-termite {
  top: 39.2463%;
  left: 43.5233%;
  width: 12.8915%;
}

.node-x {
  top: 42.9943%;
  left: 53.5212%;
}

.node-contact {
  top: 56.3328%;
  left: 41.6484%;
}

.mailing {
  position: absolute;
  left: auto;
  top: auto;
  right: 20px;
  bottom: 20px;
  z-index: 3;
  text-align: right;
  font-size: var(--landing-label-size);
  white-space: nowrap;
}

.mailing.is-open {
  transform: translateY(7px);
}

.signup {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 6px 10px;
  width: 100%;
}

.signup input[type="email"] {
  appearance: none;
  -webkit-appearance: none;
  flex: 0 0 24ch;
  min-width: 0;
  border: 0;
  border-bottom: 1px solid #000;
  border-radius: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  font: inherit;
  font-weight: 400;
  line-height: inherit;
  color: inherit;
  outline: 0;
}

.signup button {
  font: inherit;
  line-height: inherit;
  font-weight: 400;
  color: inherit;
}

.signup input[type="email"]::placeholder {
  color: rgba(0, 0, 0, 0.42);
  opacity: 1;
}

.signup-status,
.signup-note {
  flex: 0 0 100%;
  margin: 0;
  font: inherit;
  line-height: 1.28;
  text-align: center;
  white-space: normal;
  overflow-wrap: normal;
}

.hp,
.is-hidden {
  display: none !important;
}

.text-page {
  min-height: 100svh;
}

.text-shell {
  width: min(780px, calc(100vw - 52px));
  margin: 207px auto 90px;
}

.prose {
  font-size: inherit;
  line-height: 1.28;
}

.prose h1,
.prose h2 {
  margin: 0 0 32px;
  font-weight: 400;
  line-height: 1.18;
}

.prose h1 {
  font-size: 22px;
}

.prose h2 {
  font-size: 20px;
}

.prose h2 {
  margin-top: 32px;
  margin-bottom: 24px;
}

.prose p {
  margin: 0 0 24px;
}

.prose ul {
  margin: 0;
  padding-left: 2ch;
}

.prose li {
  margin: 0 0 2px;
}

.back-link {
  position: absolute;
  top: 44px;
  left: max(26px, calc(50vw - 390px));
  z-index: 2;
  font-size: inherit;
}

.page-marker {
  position: absolute;
  top: 36px;
  left: calc(50vw + 248px);
  right: auto;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 134px;
  aspect-ratio: 1;
  border: 1px solid #000;
  border-radius: 50%;
  background: #f9f9f9;
  font-size: inherit;
}

.about-copy {
  max-width: 780px;
}

@media (max-width: 700px) {
  body {
    font-size: 18px;
    line-height: 1.24;
  }

  .landing {
    min-height: 1093px;
    padding: 0;
    overflow: visible;
  }

  .site-title {
    display: block;
    position: absolute;
    top: 43px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
  }

  .circle-map {
    position: absolute;
    top: 0;
    left: 50%;
    width: 390px;
    height: 1037px;
    aspect-ratio: auto;
    margin: 0;
    transform: translateX(-50%);
    font-size: 18px;
  }

  .outer-circle {
    display: none;
  }

  .circle-node {
    position: absolute;
    inset: auto;
    width: 230.19143676757812px;
    font-size: 18px;
  }

  .circle-node span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .circle-node + .circle-node {
    margin-top: 0;
  }

  .node-termite {
    display: none;
  }

  .node-about {
    top: 92px;
    left: 80px;
  }

  .node-manifesto {
    top: 257px;
    left: 80px;
  }

  .node-instagram {
    top: 419px;
    left: 80px;
  }

  .node-x {
    top: 584px;
    left: 80px;
  }

  .node-contact {
    top: 746px;
    left: 80px;
  }

  .mailing {
    position: absolute;
    top: 1018px;
    left: calc(50% - 169px);
    right: auto;
    bottom: auto;
    width: 338px;
    font-size: 18px;
    text-align: center;
  }

  .mailing.is-open {
    transform: none;
  }

  .signup {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
  }

  .signup input[type="email"] {
    flex: 0 0 auto;
    width: 230.1875px;
    padding: 0 10px;
    text-align: center;
  }

  .signup-status,
  .signup-note {
    max-width: 338px;
  }

  .signup-status:not(:empty),
  .signup-note {
    padding-bottom: 24px;
  }

  .text-shell {
    width: min(338px, calc(100vw - 52px));
    margin: 323px 0 68px max(26px, calc(50vw - 169px));
  }

  .prose {
    font-size: inherit;
    line-height: 1.28;
  }

  .prose h1,
  .prose h2 {
    margin-bottom: 22px;
  }

  .prose h1 {
    font-size: 22px;
  }

  .prose h2 {
    font-size: 20px;
  }

  .prose h2 {
    margin-top: 24px;
    margin-bottom: 14px;
  }

  .prose p {
    margin-bottom: 18px;
  }

  .back-link {
    top: 20px;
    left: max(26px, calc(50vw - 169px));
    font-size: inherit;
  }

  .page-marker {
    position: absolute;
    top: 54px;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    width: 230.19143676757812px;
    font-size: inherit;
  }
}
