.page--thank-you {
  background: radial-gradient(circle at 0 0, rgba(255, 177, 32, 0.16), transparent 55%), radial-gradient(circle at 100% 100%, rgba(15, 23, 42, 0.16), transparent 60%), #fdfcf9;
}

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

.thankyou .container {
  display: flex;
  justify-content: center;
}

.thankyou-card {
  position: relative;
  max-width: 40rem;
  width: 100%;
  border-radius: 1.25rem;
  padding: var(--space-8) var(--space-6);
  background: radial-gradient(circle at 0 0, rgba(255, 177, 32, 0.18), transparent 55%), radial-gradient(circle at 100% 100%, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.98));
  color: var(--color-text-on-dark);
  box-shadow: 0 22px 70px rgba(15, 23, 42, 0.35);
  overflow: hidden;
}

.thankyou-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.thankyou-badge {
  position: absolute;
  top: var(--space-4);
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(248, 250, 252, 0.4);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.9);
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(14px);
}

.thankyou-orbit {
  position: absolute;
  inset: 14%;
  border-radius: 999px;
  border: 1px dashed rgba(248, 250, 252, 0.16);
  opacity: 0.7;
}

.thankyou-glow {
  position: absolute;
  inset: 8%;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 0, rgba(255, 177, 32, 0.4), transparent 55%), radial-gradient(circle at 80% 100%, rgba(15, 23, 42, 0.8), transparent 60%);
  mix-blend-mode: screen;
  opacity: 0.9;
}

.thankyou-kicker {
  margin-bottom: var(--space-4);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248, 250, 252, 0.78);
}

.thankyou-title {
  margin-bottom: var(--space-4);
  font-size: clamp(2.1rem, 1.8rem + 1vw, 2.6rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fdfcf9;
}

.thankyou-lead {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-4);
  max-width: 32rem;
  font-size: 1.02rem;
  line-height: var(--line-height-relaxed);
  color: rgba(248, 250, 252, 0.9);
}

.thankyou-next {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-6);
  max-width: 32rem;
  font-size: 0.98rem;
  line-height: var(--line-height-relaxed);
  color: rgba(226, 232, 240, 0.9);
}

.thankyou-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.thankyou-primary-cta {
  min-width: 13rem;
}

.thankyou-secondary-cta {
  min-width: 11rem;
  border-color: rgba(248, 250, 252, 0.26);
  color: rgba(248, 250, 252, 0.9);
  background-color: rgba(15, 23, 42, 0.35);
}

.thankyou-secondary-cta:hover {
  border-color: rgba(248, 250, 252, 0.6);
  background-color: rgba(15, 23, 42, 0.6);
}

.thankyou-note {
  margin-left: auto;
  margin-right: auto;
  max-width: 30rem;
  font-size: 0.85rem;
  line-height: var(--line-height-relaxed);
  color: rgba(209, 213, 219, 0.95);
}

@media (max-width: 639.98px) {
  .thankyou-card {
    padding: var(--space-7) var(--space-5) var(--space-6);
    border-radius: 1rem;
  }
  .thankyou-badge {
    top: var(--space-3);
  }
  .thankyou-actions {
    flex-direction: column;
  }
  .thankyou-primary-cta,
  .thankyou-secondary-cta {
    width: 100%;
  }
}
