.ty-thankyou-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--header-height-mobile) - 160px);
}

@media (min-width: 1024px) {
  .ty-thankyou-wrapper {
    min-height: calc(100vh - var(--header-height-desktop) - 200px);
  }
}

.ty-thankyou-card {
  width: 100%;
  max-width: 720px;
  margin-inline: auto;
  padding: var(--space-2xl) var(--space-2xl) var(--space-2xl);
  border-radius: var(--radius-glass);
  position: relative;
  overflow: hidden;
}

.ty-thankyou-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 10% 0, rgba(0, 245, 255, 0.22), transparent 55%), radial-gradient(circle at 90% 100%, rgba(255, 0, 122, 0.22), transparent 55%);
  mix-blend-mode: screen;
  opacity: 0.9;
}

.ty-thankyou-header,
.ty-thankyou-body,
.ty-thankyou-cta {
  position: relative;
  z-index: 1;
}

.ty-thankyou-eyebrow {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: var(--letter-wide);
  color: var(--color-text-muted);
}

.ty-thankyou-title {
  font-size: var(--text-2xl);
}

@media (min-width: 768px) {
  .ty-thankyou-title {
    font-size: var(--text-3xl);
  }
}

.ty-thankyou-body p {
  margin-bottom: 0;
}

.ty-thankyou-cta {
  margin-top: var(--space-2xl);
}

.ty-thankyou-note {
  max-width: 32rem;
  margin-inline: auto;
}

.ty-thankyou-note a {
  font-weight: 500;
}
