.mcp-promo-layer {
  position: fixed;
  z-index: 2900;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 24px;
}

.mcp-promo-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.38); }
.mcp-promo-dialog {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(725px, 100%);
  min-height: 680px;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  overflow: hidden;
  padding: 50px 0;
  color: #000;
  background: #dce6de;
  border: 1px solid #000;
  border-radius: 42px;
  box-shadow: 8px 8px 0 #000;
  text-align: center;
  animation: mcp-promo-in .3s ease-out both;
  flex: 0 0 auto;
  margin-block: auto;
}
.mcp-promo-kicker {
  width: 633px;
  max-width: 86%;
  margin: 0;
  font-family: 'Unbounded','Poppins',sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
}
.mcp-promo-illustration { width: 393px; max-width: 70%; height: 267px; object-fit: contain; }
.mcp-promo-copy { display: flex; width: 100%; flex-direction: column; align-items: center; gap: 12px; }
.mcp-promo-copy h2 { width: 633px; max-width: 88%; margin: 0; font-family: 'Unbounded','Poppins',sans-serif; font-size: 32px; font-weight: 600; line-height: 55px; }
.mcp-promo-copy p { width: 725px; max-width: 94%; margin: 0; font-family: 'Poppins',sans-serif; font-size: 22px; line-height: 36px; }
.mcp-promo-cta {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 17px 31px;
  color: #fff;
  background: #000;
  border: 1px solid #000;
  border-radius: 100px;
  font-family: 'Poppins',sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 1.62px;
  text-decoration: none;
  text-transform: uppercase;
}
.mcp-promo-close { position: absolute; top: 39px; right: 39px; display: grid; width: 36px; height: 36px; padding: 0; place-items: center; cursor: pointer; background: transparent; border: 0; }
.mcp-promo-close img { width: 20px; height: 20px; }
@keyframes mcp-promo-in { from { opacity: 0; transform: translateY(-70px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 720px) {
  .mcp-promo-layer { padding: 18px; }
  .mcp-promo-dialog { min-height: 0; gap: 22px; padding: 52px 16px 38px; border-radius: 30px; }
  .mcp-promo-close { top: 22px; right: 22px; width: 30px; height: 30px; }
  .mcp-promo-kicker { font-size: 18px; line-height: 28px; }
  .mcp-promo-illustration { width: 300px; height: auto; }
  .mcp-promo-copy h2 { font-size: 24px; line-height: 36px; }
  .mcp-promo-copy p { font-size: 16px; line-height: 26px; }
  .mcp-promo-cta { width: 100%; font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .mcp-promo-dialog { animation: none; }
}
