:root {
  --bg: #090e29;
  --fg: #f5f2ff;
  --lilac: #9c88ff;
  --coral: #ff8674;
  --sans: Urbanist, sans-serif;
}
header {
  position: absolute;
  z-index: 5;
  inset: 0 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px var(--page-pad);
}
.logo {
  font-size: 25px;
  font-weight: 800;
}
.logo span {
  color: var(--coral);
  margin-left: 4px;
}
nav {
  display: flex;
  gap: 28px;
  font-size: 13px;
}
.hero {
  position: relative;
  min-height: calc(100svh - 34px);
  padding: 150px var(--page-pad) 70px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.hero:before {
  content: "";
  position: absolute;
  left: -14vw;
  top: 18%;
  width: 28vw;
  height: 28vw;
  border: 1px solid rgba(156, 136, 255, 0.28);
  border-radius: 50%;
}
.copy {
  position: relative;
  z-index: 3;
}
.copy > span {
  font: 11px "IBM Plex Mono";
  color: var(--lilac);
}
h1 {
  margin: 22px 0;
  font-size: clamp(66px, 8.5vw, 150px);
  line-height: 0.84;
  letter-spacing: -0.07em;
}
.copy p {
  max-width: 470px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(245, 242, 255, 0.68);
}
.copy .phone {
  margin-top: 22px;
  background: var(--coral);
  border: 0;
  color: #090e29;
}
.portal {
  position: relative;
  width: min(43vw, 690px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  justify-self: end;
}
.portal:after {
  content: "";
  position: absolute;
  inset: 7%;
  border: 1px solid rgba(245, 242, 255, 0.42);
  border-radius: 50%;
}
.orbit-label {
  position: absolute;
  z-index: 2;
  right: 2%;
  top: 50%;
  padding: 10px 16px;
  background: var(--lilac);
  color: #090e29;
  font: 600 11px "IBM Plex Mono";
}
.essence {
  padding: 150px var(--page-pad);
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 8vw;
  align-items: center;
  background: #f5f2ff;
  color: #171d4a;
}
.disc {
  width: min(36vw, 430px);
  aspect-ratio: 1;
  border: 1px solid #171d4a;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font: 600 12px "IBM Plex Mono";
  letter-spacing: 0.3em;
}
.essence h2,
.contact h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.05em;
}
.essence p {
  max-width: 620px;
  margin-top: 32px;
  font-size: 18px;
  line-height: 1.75;
}
.detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 720px;
}
.detail figure {
  margin: 0;
}
.detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail figcaption {
  padding: 10px;
  font-size: 10px;
  opacity: 0.55;
}
.detail blockquote {
  align-self: center;
  margin: 0;
  padding: 12%;
  font-size: clamp(40px, 5vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--lilac);
}
.contact {
  padding: 120px var(--page-pad);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  background: var(--coral);
  color: #171d4a;
}
.contact > div:first-child {
  max-width: 820px;
}
.contact .phone {
  background: #171d4a;
  color: #f5f2ff;
  border: 0;
}
.contact .status {
  margin-top: 10px;
}
footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 25px var(--page-pad);
}
@media (max-width: 850px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 120px;
  }
  .portal {
    position: absolute;
    right: -24%;
    top: 16%;
    width: 88vw;
    opacity: 0.58;
  }
  .copy {
    align-self: end;
  }
  .copy p {
    max-width: 370px;
  }
  .essence {
    grid-template-columns: 1fr;
  }
  .disc {
    width: 220px;
  }
  .detail {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .detail img {
    height: 520px;
  }
  .contact {
    align-items: start;
    flex-direction: column;
  }
  footer {
    flex-direction: column;
  }
}
