.hero80 {
  height: calc(100vh - 5vw);
  min-height: 600px;
  max-height: 1200px;
  position: relative;
}
.hero80 > .container {
  position: absolute;
  top: 65%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}
.hero__motto {
  font-size: 2.2em;
  font-size: clamp(2.2em, 12vw, 5.2em);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.1rem;
}

html[lang="en"] .hero__motto {
  font-size: clamp(2.2em, 12vw, 8em);
}
.hero__bottom {
  width: 100%;
  margin-top: 60px;
  display: grid;
  grid-template-columns: 7fr 5fr;
  align-items: start;
  gap: 40px;
}

.hero__points ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: calc(var(--vr) * 3);
}
.hero__points li {
  position: relative;
  padding-left: 20px;
  font-size: var(--type-label-size);
  line-height: var(--type-label-line);
  font-weight: var(--type-label-weight);
  letter-spacing: var(--type-label-tracking);
}

.hero__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-title {
  max-width: 42ch;
  font-size: var(--type-reading-size);
}

.hero-title h1 {
  margin: 0;
  max-width: 40ch;
  font-size: 1em;
  line-height: 1.4;
  font-weight: 500;
}

.hero-title .accent {
  white-space: nowrap;
  display: block;
  color: var(--accent);
}

@media (max-width: 990px) {
  .hero__bottom {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero80 {
    height: calc(100vh - 30px);
    min-height: 450px;
  }
}

@media (max-width: 640px) {
  .hero__motto,
  html[lang="en"] .hero__motto {
    font-size: clamp(2.2em, 12vw, 4.4em);
  }

  .hero__points ul {
    gap: calc(var(--vr) * 1.5);
  }
  .hero__points li {
    position: relative;
    padding-left: 12px;
    font-weight: 500;
  }

  .hero__points li::before {
    width: 6px;
    height: 6px;
  }
}
