body {
  background-color: var(--color-background);
}

.thank-you-main {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: var(--space-16);
}

.thank-you-section {
  width: 100%;
}

.thank-you-card {
  max-width: 640px;
  margin-inline: auto;
  padding: var(--space-8) var(--space-6);
  border-radius: 20px;
  background: radial-gradient(circle at 0 0, rgba(243, 219, 202, 0.38), transparent 55%), radial-gradient(circle at 100% 100%, rgba(202, 213, 207, 0.42), transparent 55%), linear-gradient(145deg, rgba(230, 237, 240, 0.96), rgba(250, 246, 240, 0.98));
  border: var(--border-handcrafted);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.thank-you-card h1 {
  margin-bottom: var(--space-4);
}

.thank-you-lead {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-4);
}

.thank-you-body {
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  color: rgba(61, 62, 58, 0.9);
}

.thank-you-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-6);
  justify-content: center;
  align-items: center;
}

.thank-you-actions .button,
.thank-you-actions .btn {
  width: 100%;
  max-width: 260px;
}

@media (min-width: 640px) {
  .thank-you-card {
    padding-inline: var(--space-8);
  }

  .thank-you-actions {
    flex-direction: row;
  }

  .thank-you-actions .button,
  .thank-you-actions .btn {
    width: auto;
  }
}
