.early-customer-offer {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1040;
  width: min(410px, calc(100vw - 32px));
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 24px;
  color: #17243a;
  background: #fff;
  border: 1px solid #dce3ee;
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(23, 36, 58, 0.2);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.early-customer-offer[hidden] {
  display: none;
}

.early-customer-offer.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.early-customer-offer-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 32px;
  height: 32px;
  padding: 0;
  color: #68758a;
  font-size: 26px;
  line-height: 30px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.early-customer-offer-eyebrow {
  margin: 0 40px 8px 0;
  color: #2868e8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.early-customer-offer-title {
  margin: 0 32px 10px 0;
  color: #0a1426;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
}

.early-customer-offer-description {
  margin: 0 0 14px;
  color: #4f5d72;
  font-size: 15px;
  line-height: 1.55;
}

.early-customer-offer-benefits {
  display: grid;
  gap: 6px;
  margin: 0 0 18px;
  padding: 0;
  color: #2f3d52;
  font-size: 14px;
  list-style: none;
}

.early-customer-offer-benefits li {
  position: relative;
  padding-left: 22px;
}

.early-customer-offer-benefits li::before {
  position: absolute;
  top: 1px;
  left: 0;
  color: #00a879;
  font-weight: 700;
  content: "\2713";
}

.early-customer-offer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  background: #ff477e;
  border: 1px solid #ff477e;
  border-radius: 6px;
}

.early-customer-offer-cta:hover,
.early-customer-offer-cta:focus {
  color: #fff;
  background: #e83d70;
  border-color: #e83d70;
}

.early-customer-offer-later {
  display: block;
  margin: 10px auto 0;
  padding: 4px 8px;
  color: #536176;
  font-size: 13px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.early-customer-offer-terms {
  margin: 10px 0 0;
  color: #778397;
  font-size: 11px;
  line-height: 1.45;
  text-align: center;
}

.early-customer-offer :focus-visible {
  outline: 3px solid #0a1426;
  outline-offset: 3px;
}

@media (max-width: 575.98px) {
  .early-customer-offer {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);
    padding: 20px;
  }

  .early-customer-offer-title {
    font-size: 21px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .early-customer-offer {
    transition: none;
  }
}

@media print {
  .early-customer-offer {
    display: none !important;
  }
}
