.thank-you-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 8rem);
}

.thank-you-card {
  max-width: 40rem;
  margin-inline: auto;
  padding: var(--space-9) var(--space-8);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top left, rgba(244, 143, 177, 0.28) 0, transparent 55%),
              radial-gradient(circle at bottom right, rgba(166, 217, 255, 0.28) 0, transparent 55%),
              var(--color-surface);
  box-shadow: var(--shadow-md);
  text-align: left;
}

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

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

.thank-you-title-accent {
  color: var(--color-primary-strong);
}

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

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-7);
  margin-bottom: var(--space-4);
}

.thank-you-secondary {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .thank-you-main {
    min-height: auto;
  }

  .thank-you-card {
    padding: var(--space-7) var(--space-6);
  }

  .thank-you-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .thank-you-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .thank-you-card {
    padding: var(--space-6) var(--space-5);
    border-radius: var(--radius-lg);
  }
}
