@keyframes comming-soon-reveal-up {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.comming-soon {
  opacity: 0;
}

.comming-soon.is-revealed {
  animation: comming-soon-reveal-up 600ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.comming-soon {
  width: 100%;
  background: #e9efed;
  color: #18141e;
  font-family: "Mona Sans", "Helvetica Neue", Arial, sans-serif;
  padding: 96px 0;
}

.comming-soon__inner {
  max-width: 1380px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(2rem, 6vw, 5rem);
}

@media (max-width: 1380px) {
  .comming-soon__inner {
    padding: 0 24px;
  }
}

.comming-soon__left {
  flex: 1 1 auto;
  min-width: 0;
}

.comming-soon__title {
  margin: 0;
  color: #3dbf7b;
  font-size: 129px;
  line-height: 135px;
  font-weight: 500;
  letter-spacing: 0%;
  max-width: 8ch;
  font-family: "Mona Sans", "Helvetica Neue", Arial, sans-serif;
}

.comming-soon__right {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.comming-soon__description {
  margin: 0;
  color: #18141e;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  white-space: pre-line;
  padding-bottom: 42px;
}

.comming-soon__form {
  width: 100%;
}

/* Webflow projects the form through a native <slot> in light DOM.
   Descendants can't be styled from this shadow sheet — see CommingSoon.formStyles.ts. */
.comming-soon__form:has(> slot[name="form"]) {
  display: block;
}

.comming-soon__form > slot[name="form"] {
  display: block !important;
  width: 100%;
}

.comming-soon__form > slot[name="form"]::slotted(*) {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
}

.comming-soon__form-note {
  margin: 0;
  color: #18141e;
  font-size: 13px;
  line-height: 17px;
  font-weight: 400;
}

@media (max-width: 1024px) {
  .comming-soon {
    padding: 64px 0;
  }

  .comming-soon__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .comming-soon__right {
    flex: 1 1 auto;
    max-width: 100%;
    width: 100%;
  }

  .comming-soon__title {
    max-width: none;
    font-size: 64px;
    text-align: center;
  }

  .comming-soon__description {
    padding-bottom: 24px;
    text-align: center;
  }
}


@keyframes comming-soon-reveal {
  from {
    opacity: 0;
    transform: translateY(36px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.comming-soon-reveal .comming-soon__inner {
  opacity: 0;
}

.comming-soon-reveal.is-revealed .comming-soon__inner {
  animation: comming-soon-reveal 850ms cubic-bezier(0.4, 0, 0.2, 1) 100ms both;
}

@media (prefers-reduced-motion: reduce) {
  .comming-soon-reveal .comming-soon__inner {
    opacity: 1;
    animation: none;
  }
}

/* Authored \n breaks are desktop-only; below the site's mobile breakpoint
   (navbar switch, 1280px) the text reflows naturally. */
@media (max-width: 1280px) {
  br.multiline-br {
    display: none;
  }
}

