.foundation {
  padding-block: 5rem 6rem;
  color: #1d2141;
  z-index: 3;
  position: relative;
}
.foundation::after {
  content: "";
  width: 100%;
  height: 2.25rem;
  border-radius: 0 0 2.25rem 2.25rem;
  background-color: white;
  position: absolute;
  top: 100%;
  left: 0;
}
.foundation__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-inline: 1rem;
  margin-inline: -3rem;
  width: calc(100% + 6rem);
}
.foundation__circles {
  position: absolute;
  top: -1.5rem;
  right: -2rem;
  width: 12rem;
  pointer-events: none;
  z-index: 0;
}
@media (min-width: 1024px) {
  .foundation__circles {
    right: -3rem;
    width: 14rem;
  }
}
.foundation__circles[data-reveal] {
  opacity: 1;
  transform: none;
  transition: none;
}
.foundation__circles svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}
.foundation__circles svg > path {
  transform-box: fill-box;
  transform-origin: center;
  opacity: 0;
  transform: translateY(60px) scale(0.6);
}
.foundation__circles.is-revealed svg > path {
  animation: bubble-up 1.4s cubic-bezier(0.16, 1, 0.3, 1) var(--bubble-delay, 0s) both, bubble-float 6s ease-in-out calc(1.4s + var(--bubble-delay, 0s)) infinite;
}
.foundation__circles.is-revealed svg > path:nth-child(1) {
  --bubble-delay: 0s;
}
.foundation__circles.is-revealed svg > path:nth-child(2) {
  --bubble-delay: 0.15s;
}
.foundation__circles.is-revealed svg > path:nth-child(3) {
  --bubble-delay: 0.3s;
}
.foundation__circles.is-revealed svg > path:nth-child(4) {
  --bubble-delay: 0.45s;
}
.foundation__circles.is-revealed svg > path:nth-child(5) {
  --bubble-delay: 0.6s;
}
@media (prefers-reduced-motion: reduce) {
  .foundation__circles svg > path {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
.foundation__label {
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
  font-family: "Onest", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #1d2141;
}
.foundation__quote {
  font-family: "STIX Two Text", Georgia, "Times New Roman", serif;
  position: relative;
  z-index: 1;
  margin: 0 0 2.5rem;
  font-style: italic;
  font-weight: 400;
  font-size: 70px;
  line-height: 100%;
  letter-spacing: -0.03em;
  text-align: center;
  color: #1d2141;
}
.foundation__logo {
  width: 9rem;
}
.foundation__logo svg {
  display: block;
  width: 100%;
  height: auto;
}