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

.thank-you-card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: radial-gradient(circle at top left, rgba(251, 191, 36, 0.18), transparent 55%),
    var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

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

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

.thank-you-lead {
  font-size: var(--font-size-lg);
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.thank-you-card p {
  margin-bottom: var(--space-3);
}

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

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

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