.landing {
  text-align: center;
  margin: 10vh 0;
}

.landing h1 {
  font-size: clamp(2rem, 5vw, 5rem);
}

#architecture {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 3rem 0;
  user-select: none;
  font-size: 1rem;
}

#architecture .data-sources,
#architecture .data-sinks {
  display: flex;
  flex-direction: column;
}

#architecture .data-sources {
  max-width: 40rem;
}

#architecture .data-sinks {
  max-width: 40rem;
}

#architecture .datafurt-bridge {
  position: relative;
  display: flex;
  align-items: center;
}

#architecture .datafurt-bridge img {
  height: 5rem;
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
}

#architecture .datafurt-bridge span {
  white-space: nowrap;
  position: absolute;
  right: -0.5rem;
  transform: translateX(100%);
}

#architecture ul {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  margin: 0;
}

#architecture ul li {
  margin: 0 0.5rem;
  padding: 0;
}

#architecture ul li::before {
  display: none;
}

#architecture .connection {
  height: 7rem;
  width: 100%;
  padding: 0 3rem;
}

@keyframes drawLine {
  from {
    stroke-dashoffset: 20;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes drawLine2 {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: 20;
  }
}

#architecture .connection svg {
  height: 100%;
  width: 100%;
  stroke-width: 0.15rem;
  stroke: gray;
  animation: drawLine 1s linear infinite;
}

#architecture .connection.reverted svg {
  animation: drawLine2 1s linear infinite;
}

#get-started .marker {
  margin-right: 0.1em;
}

#get-started > div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 1rem;
}

#get-started-2-1 {
  grid-column-start: 1;
  grid-row-start: 2;
}

#get-started-2-2 {
  grid-row: span 3 / span 3;
  grid-column-start: 2;
  grid-row-start: 1;
  align-self: center;
  margin-top: -5%;
}

#get-started-3 {
  grid-row-start: 3;
}

@media screen and (max-width: 60rem) {
  #get-started > div {
    grid-template-columns: repeat(1, auto);
    grid-template-rows: repeat(3, auto);
  }

  #get-started-2-2 {
    grid-row: auto / auto;
    grid-column-start: 1;
    grid-row-start: 3;
  }

  #get-started-3 {
    grid-row-start: 4;
  }
}

#get-started h2 {
  font-size: 1em;
  margin: 0;
}

#pricing-cards {
  display: flex;
  justify-content: center;
  gap: 1rem;
  align-items: stretch;
}

@media screen and (max-width: 50rem) {
  #pricing-cards {
    flex-direction: column;
  }
}

#pricing-cards > * {
  display: flex;
  flex-direction: column;
  flex-basis: 50%;
  gap: 1em;
}

#pricing-cards h2 {
  margin-top: 0.3em;
}

#pricing-cards > * > * {
  margin: 0;
}

#pricing-cards > * > *:nth-child(4) {
  flex-grow: 1;
}
