/* Home Page
--------------------------------------------*/
.home-hero {
  position: relative;
  isolation: isolate;
  overflow: visible;
  background: none;
}
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 -6rem;
  z-index: -1;
  pointer-events: none;
  background: url("../img/cloud-bg.jpg") center top / cover no-repeat;
}
@media (max-width: 35rem) {
  .home-hero::before {
    bottom: -3rem;
  }
}
pre.code-block {
  overflow: auto;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: #22243e;
  color: var(--background);
  padding: 1.375rem;
  font-size: var(--text-sm);
  line-height: 1.7;
}


/* Pricing Page
--------------------------------------------*/
.pricing-sections {
  display: grid;
  gap: 3rem;
}
