.launch-announcement {
  --launch-ink: #49372d;
  --launch-warm-white: #fff8ed;
  --launch-coral: #f27e4e;
  --launch-yellow: #ffc65d;
  --launch-blue: #58b9e4;
  --launch-green: #abc6a4;
  --launch-purple: #a78abf;
  --launch-modal-gap-y: clamp(18px, 6.25vh, 64px);
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: var(--launch-modal-gap-y) clamp(16px, 7.8vw, 120px);
  box-sizing: border-box;
}

.launch-announcement *,
.launch-announcement *::before,
.launch-announcement *::after,
.launch-demo-reset { box-sizing: border-box; }

.launch-announcement[hidden] { display: none; }
html.mmz-launch-popup-open,
body.mmz-launch-popup-open { overflow: hidden; }

.launch-announcement__shade {
  position: absolute;
  inset: 0;
  background: rgba(25, 23, 21, .66);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  animation: launch-shade-in .32s ease both;
}

.launch-card {
  position: relative;
  width: min(1280px, 100%, calc((100vh - (var(--launch-modal-gap-y) * 2)) * 1.44));
  aspect-ratio: 1.44 / 1;
  overflow: hidden;
  border-radius: clamp(30px, 3vw, 46px);
  color: var(--launch-ink);
  background:
    radial-gradient(circle at 52% 8%, rgba(255, 255, 255, .85), transparent 34%),
    radial-gradient(circle at 79% 58%, rgba(255, 247, 225, .82), transparent 42%),
    var(--launch-warm-white);
  box-shadow: 0 25px 80px rgba(18, 13, 9, .28);
  animation: launch-card-in .46s cubic-bezier(.2, .8, .2, 1) both;
  container-type: inline-size;
}

.launch-card:focus { outline: none; }

.launch-card__close {
  position: absolute;
  z-index: 10;
  top: 26px;
  right: 30px;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .93);
  cursor: pointer;
  transition: transform .18s ease, background .18s ease;
  -webkit-tap-highlight-color: transparent;
}

.launch-card__close:hover { transform: rotate(4deg) scale(1.04); background: #fff; }
.launch-card__close:focus-visible,
.launch-catalog-button:focus-visible,
.launch-demo-reset:focus-visible { outline: 4px solid rgba(77, 141, 189, .5); outline-offset: 4px; }
.launch-card__close svg { width: 28px; height: 28px; fill: none; stroke: var(--launch-ink); stroke-width: 2.2; stroke-linecap: round; }

.launch-card__copy {
  position: absolute;
  z-index: 4;
  top: 17.5%;
  left: 5.5%;
  width: 59%;
}

.launch-card h2 {
  margin: 0 0 24px;
  font-family: "Chalkboard SE", "Comic Sans MS", cursive;
  font-size: clamp(31px, 5.2cqw, 67px);
  line-height: 1.07;
  letter-spacing: -.035em;
  font-weight: 700;
  color: var(--launch-ink);
}

.launch-card__copy > p {
  margin: 0;
  font-size: clamp(15px, 1.94cqw, 25px);
  line-height: 1.45;
  letter-spacing: -.016em;
  color: var(--launch-ink);
}

.launch-friendly-divider {
  width: 70%;
  margin: 27px 0 21px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.launch-friendly-divider span { width: 4px; height: 4px; flex: 0 0 4px; border-radius: 50%; background: #adcaab; }
.launch-friendly-divider svg { width: 31px; height: 31px; flex: 0 0 31px; margin: 0 2px; }
.launch-card__help { line-height: 1.4 !important; }
.launch-card__actions { margin-top: 34px; display: flex; align-items: flex-start; }

.launch-catalog-button {
  min-width: min(440px, 90%);
  padding: 18px 30px 20px;
  border: 0;
  border-radius: 17px;
  color: #fff;
  background-color: #ef7f4d;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font-size: clamp(17px, 2.05cqw, 27px);
  font-weight: 750;
  font-family: inherit;
  transition: background-color .18s ease;
  -webkit-tap-highlight-color: transparent;
}

.launch-catalog-button:hover { background-color: #e87443; }
.launch-card__art { position: absolute; z-index: 3; right: 1.8%; top: 12%; width: 47%; height: 83%; }
.launch-bee-scene { width: 100%; height: 100%; overflow: visible; }
.launch-bee { transform-box: fill-box; transform-origin: center; animation: launch-hover-bee 3.2s ease-in-out infinite; }

.launch-decor { position: absolute; z-index: 2; overflow: visible; }
.launch-decor--top-left { top: 2.4%; left: 2.3%; width: 28%; }
.launch-decor--top-right { top: 4.6%; right: 3.2%; width: 37%; }
.launch-decor--bottom-left { bottom: 0; left: 29%; width: 39%; }
.launch-blue-fill { fill: var(--launch-blue); }
.launch-yellow-fill { fill: var(--launch-yellow); }
.launch-green-fill { fill: var(--launch-green); }
.launch-coral-fill { fill: var(--launch-coral); }
.launch-purple-fill { fill: var(--launch-purple); }

.launch-demo-reset {
  position: fixed;
  z-index: 1999;
  right: 22px;
  bottom: 22px;
  padding: 12px 18px;
  border: 1px solid #d8cdc1;
  border-radius: 999px;
  color: #5e4a3c;
  background: rgba(255, 255, 255, .93);
  box-shadow: 0 8px 24px rgba(48, 35, 25, .13);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

@keyframes launch-shade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes launch-card-in { from { opacity: 0; transform: translateY(18px) scale(.975); } to { opacity: 1; transform: none; } }
@keyframes launch-hover-bee { 0%, 100% { translate: 0 0; rotate: 0deg; } 50% { translate: 0 -9px; rotate: -1.5deg; } }

@media (max-width: 900px) {
  .launch-announcement { min-height: 100dvh; padding: 14px; align-items: center; }
  .launch-card {
    width: min(620px, 100%);
    max-height: calc(100dvh - 28px);
    min-height: 0;
    aspect-ratio: auto;
    overflow-x: hidden;
    overflow-y: auto;
    border-radius: 30px;
    container-type: normal;
    scrollbar-width: none;
  }
  .launch-card::-webkit-scrollbar { display: none; }
  .launch-card__close { position: sticky; float: right; top: 17px; right: 17px; width: 48px; height: 48px; margin: 17px 17px -65px 0; }
  .launch-card__copy { position: relative; top: auto; left: auto; width: auto; padding: 65px 28px 8px; }
  .launch-card h2 { max-width: 92%; margin-bottom: 14px; font-size: clamp(32px, 8.4vw, 45px); line-height: 1.04; }
  .launch-desktop-break { display: none; }
  .launch-card__copy > p { font-size: 17px; line-height: 1.38; }
  .launch-friendly-divider { width: 62%; margin: 16px 0 14px; gap: 6px; }
  .launch-friendly-divider span:nth-of-type(n+11) { display: none; }
  .launch-card__actions { margin-top: 18px; }
  .launch-catalog-button { width: 100%; min-width: 0; padding: 14px 20px 16px; font-size: 19px; border-radius: 15px; }
  .launch-card__art { position: relative; right: auto; top: auto; width: 100%; height: 205px; margin: -2px 0 0; overflow: hidden; }
  .launch-bee-scene { transform: translateY(-11%) scale(.74); transform-origin: 50% 0; }
  .launch-decor--top-left { top: 1%; width: 56%; }
  .launch-decor--top-right { top: 3%; right: -16%; width: 54%; opacity: .72; }
  .launch-decor--bottom-left { display: none; }
}

@media (max-width: 560px) {
  .launch-announcement { padding: 8px; }
  .launch-card { max-height: calc(100dvh - 16px); border-radius: 24px; }
  .launch-card__close { top: 12px; right: 12px; width: 44px; height: 44px; margin: 12px 12px -56px 0; }
  .launch-card__close svg { width: 24px; height: 24px; }
  .launch-card__copy { padding: 58px 20px 4px; }
  .launch-card h2 { max-width: 100%; margin-bottom: 12px; font-size: clamp(29px, 9.4vw, 38px); }
  .launch-card__copy > p { font-size: 15px; }
  .launch-friendly-divider { width: 64%; margin: 13px 0 12px; }
  .launch-friendly-divider svg { width: 25px; height: 25px; flex-basis: 25px; }
  .launch-card__actions { margin-top: 15px; }
  .launch-catalog-button { padding: 13px 18px 14px; font-size: 18px; }
  .launch-card__art { height: 174px; }
  .launch-bee-scene { transform: translateY(-3%) scale(.88); }
  .launch-decor--top-left { top: .5%; left: 1%; width: 58%; }
  .launch-decor--top-right { display: none; }
}

@media (max-width: 560px) and (max-height: 700px) {
  .launch-card__copy { padding-top: 52px; }
  .launch-card h2 { font-size: clamp(27px, 8.7vw, 34px); }
  .launch-card__copy > p { font-size: 14px; }
  .launch-friendly-divider { margin: 10px 0; }
  .launch-card__actions { margin-top: 12px; }
  .launch-card__art { height: 135px; }
  .launch-bee-scene { transform: translateY(-4%) scale(.76); }
}

@media (prefers-reduced-motion: reduce) {
  .launch-announcement *,
  .launch-announcement *::before,
  .launch-announcement *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
