.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: -8px 0 20px;
  padding: 9px 14px 9px 10px;
  border: 1px solid #d7e2cc;
  border-radius: 999px;
  background: #f1f7e8;
  color: var(--green);
  font: 700 14px "Manrope", sans-serif;
  letter-spacing: -.01em;
}

.hero-tagline span {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--lime);
  font-size: 12px;
}

.prelaunch-notice {
  margin: 18px 0 0;
  padding: 12px 14px;
  border: 1px solid #cfdbbf;
  border-radius: 8px;
  background: #f3f7ea;
  color: #50625a;
  font-size: 12px;
  line-height: 1.45;
}

.prelaunch-notice span {
  display: inline-block;
  margin-right: 8px;
  padding: 4px 7px;
  border-radius: 4px;
  background: var(--green);
  color: var(--lime);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
}

.match-preview { min-width: 0; }
.match-preview .match-card { width: 100%; }
.match-preview .prelaunch-notice {
  margin-top: 30px;
  transform: none;
  clear: both;
}

.signup fieldset { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.signup fieldset legend { grid-column: 1 / -1; }
.signup fieldset label { width: 100%; margin: 0; }
.signup .form-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }

@media (max-width: 850px) {
  .match-preview .prelaunch-notice { margin-top: 22px; }
  .signup fieldset { grid-template-columns: 1fr; }
}

.confirmation-banner {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  width: min(620px, calc(100% - 28px));
  transform: translate(-50%, -150%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 15px 17px;
  border: 1px solid #b9d397;
  border-radius: 12px;
  background: #fbfff4;
  color: var(--green);
  box-shadow: 0 18px 55px rgba(16, 39, 31, .2);
  opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
}

.confirmation-banner.show { transform: translate(-50%, 0); opacity: 1; }
.confirmation-icon { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--lime); font-weight: 800; }
.confirmation-banner strong { font-family: "Manrope", sans-serif; }
.confirmation-banner p { margin: 3px 0 0; color: #5b6d64; font-size: 13px; }
.confirmation-banner button { border: 0; background: transparent; color: #6a7d73; font-size: 24px; cursor: pointer; }
