.tfb-bundle {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(300px, 1.1fr);
  grid-template-areas:
    "seal form"
    "copy form";
  column-gap: clamp(28px, 5vw, 64px);
  row-gap: 22px;
  align-items: center;
  max-width: 1160px;
  margin: clamp(50px, 8vw, 96px) auto;
  padding: clamp(32px, 6vw, 68px);
  overflow: hidden;
  border: 1px solid rgba(233, 216, 138, .4);
  border-radius: 28px;
  color: #eef6ff;
  background:
    radial-gradient(circle at 9% 10%, rgba(233, 216, 138, .2), transparent 18rem),
    radial-gradient(circle at 92% 82%, rgba(107, 128, 218, .22), transparent 22rem),
    #000724;
  box-shadow: 0 28px 70px rgba(0, 7, 36, .26);
}

.tfb-bundle::before,
.tfb-bundle::after {
  content: "✦";
  position: absolute;
  z-index: -1;
  color: rgba(233, 216, 138, .22);
  font-size: 15px;
}

.tfb-bundle::before { top: 23px; left: 42%; }
.tfb-bundle::after { right: 26px; bottom: 22px; font-size: 9px; }

.tfb-bundle__seal {
  grid-area: seal;
  align-self: end;
  display: grid;
  place-content: center;
  width: 92px;
  height: 92px;
  margin: 0 0 24px;
  border: 1px solid rgba(255, 245, 188, .68);
  border-radius: 50%;
  color: #102142;
  text-align: center;
  background: linear-gradient(145deg, #f6eaa5, #cda946);
  box-shadow: 0 0 0 7px rgba(233, 216, 138, .08), inset 0 1px 0 rgba(255, 255, 255, .65);
  transform: rotate(-5deg);
}

.tfb-bundle__copy { grid-area: copy; }

.tfb-bundle__seal span {
  display: block;
  font-family: Georgia, serif;
  font-size: 2.15rem;
  font-weight: 700;
  line-height: .9;
}

.tfb-bundle__seal small {
  display: block;
  margin-top: 6px;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.page-content .tfb-bundle__kicker {
  margin: 0 0 10px;
  color: #e9d88a;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.page-content .tfs-page .tfb-bundle h2 {
  max-width: 12ch;
  margin: 0 0 18px;
  color: #f7fbff;
  font-size: clamp(2rem, 4.4vw, 3.55rem);
  line-height: 1.02;
}

.page-content .tfb-bundle__copy > p:not(.tfb-bundle__kicker) {
  margin: 0;
  color: #cbd8ec;
  font-size: 1.04rem;
  line-height: 1.75;
}

.page-content .tfb-bundle__copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.page-content .tfb-bundle__copy li {
  margin: 0;
  padding: 7px 11px;
  border: 1px solid rgba(233, 216, 138, .26);
  border-radius: 999px;
  color: #f3e9b8;
  font-size: .76rem;
  font-weight: 700;
}

.tfb-form {
  grid-area: form;
  align-self: center;
  position: relative;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(211, 224, 242, .82);
  border-radius: 20px;
  color: #263a5c;
  background: rgba(255, 254, 250, .98);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .22);
}

.tfb-form__row + .tfb-form__row { margin-top: 15px; }

.tfb-form__row label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
  color: #173566;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .04em;
}

.tfb-form__row label span {
  color: #7e899c;
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
}

.tfb-form__row input {
  width: 100%;
  min-height: 50px;
  padding: 11px 14px;
  border: 1px solid #cad7e5;
  border-radius: 10px;
  color: #1c3155;
  font: inherit;
  background: #fff;
  box-sizing: border-box;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.tfb-form__row input:focus {
  outline: 0;
  border-color: #8b6a1e;
  box-shadow: 0 0 0 3px rgba(205, 169, 70, .2);
}

.tfb-form__trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.tfb-form__consent {
  display: grid;
  grid-template-columns: 19px 1fr;
  gap: 10px;
  align-items: start;
  margin: 18px 0;
  color: #526079;
  font-size: .82rem;
  line-height: 1.5;
  cursor: pointer;
}

.tfb-form__consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: #a87c20;
}

.tfb-form__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 52px;
  padding: 13px 19px;
  border: 0;
  border-radius: 999px;
  color: #07142f;
  font: inherit;
  font-weight: 850;
  background: linear-gradient(135deg, #f1dc7c, #d2ad47);
  box-shadow: 0 10px 22px rgba(165, 124, 25, .25);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.tfb-form__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(165, 124, 25, .32);
}

.tfb-form__button:disabled {
  opacity: .68;
  cursor: wait;
  transform: none;
}

.page-content .tfb-form__fineprint {
  margin: 14px 0 0;
  color: #7b879a;
  font-size: .72rem;
  line-height: 1.5;
  text-align: center;
}

.page-content .tfb-form__fineprint a { color: #45638e; }

.page-content .tfb-form__message {
  margin: 14px 0 0;
  padding: 11px 13px;
  border-radius: 9px;
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.tfb-form__message[data-state="success"] { color: #24583c; background: #e6f5ea; }
.tfb-form__message[data-state="error"] { color: #8b2834; background: #fdebee; }

@media (max-width: 51.999em) {
  .tfb-bundle {
    grid-template-columns: 1fr;
    grid-template-areas:
      "seal"
      "copy"
      "form";
    border-radius: 22px;
  }

  .page-content .tfs-page .tfb-bundle h2 { max-width: 14ch; }
}

@media (max-width: 32em) {
  .tfb-bundle {
    width: calc(100% + 24px);
    margin-left: -12px;
    padding: 27px 20px;
    border-radius: 18px;
  }

  .tfb-bundle__seal {
    width: 76px;
    height: 76px;
  }

  .tfb-form { padding: 22px 18px; }
}
