.thank-you-main {
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.thank-you-card {
  max-width: 640px;
  margin: 0 auto;
  padding: var(--space-8) var(--space-6);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top left,
      rgba(30, 197, 198, 0.12) 0,
      rgba(255, 184, 161, 0.14) 28%,
      rgba(116, 199, 255, 0.12) 52%,
      #ffffff 80%);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.thank-you-eyebrow {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

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

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

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

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

@media (max-width: 599px) {
  .thank-you-card {
    padding: var(--space-6) var(--space-4);
  }
}
