.thank-you-section {
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
}

.thank-you-panel {
  max-width: 720px;
  margin-inline: auto;
  padding: var(--space-10) var(--space-8);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top left, rgba(210, 162, 61, 0.18), transparent 55%),
    radial-gradient(circle at bottom right, rgba(15, 79, 58, 0.24), transparent 55%),
    rgba(10, 11, 16, 0.96);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.thank-you-kicker {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}

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

.thank-you-lead {
  margin-top: 0;
  margin-bottom: var(--space-4);
}

.thank-you-text {
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
}

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

.thank-you-subnote {
  font-size: var(--font-size-xs);
}

@media (max-width: 640px) {
  .thank-you-panel {
    padding: var(--space-8) var(--space-4);
  }

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

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