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

.thank-you-card {
  max-width: 640px;
  margin: 0 auto;
  padding: var(--space-32) var(--space-24);
  background-color: var(--color-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-medium);
  text-align: left;
}

@media (max-width: 640px) {
  .thank-you-card {
    padding: var(--space-24) var(--space-16);
  }
}

.thank-you-kicker {
  font-size: var(--font-size-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: var(--space-6);
}

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

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

.thank-you-body {
  margin-bottom: var(--space-8);
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  margin-top: var(--space-16);
}

@media (max-width: 480px) {
  .thank-you-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

.thank-you-card .btn--outline {
  background-color: transparent;
}
