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

.thank-you__container {
  display: flex;
  justify-content: center;
}

.thank-you__card {
  max-width: 720px;
  width: 100%;
  background: radial-gradient(circle at top left, rgba(0, 188, 212, 0.08) 0, #ffffff 45%, #f6f7fb 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  box-shadow: var(--shadow-medium);
  border: 1px solid rgba(255, 255, 255, 0.9);
  text-align: center;
}

.thank-you__eyebrow {
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-gold);
  margin-bottom: var(--space-2);
}

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

.thank-you__lead {
  font-size: var(--font-size-lg);
  color: var(--color-text-soft);
}

.thank-you__subtitle {
  font-weight: 500;
  color: var(--color-text);
}

.thank-you__actions {
  margin-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
}

@media (max-width: 640px) {
  .thank-you__card {
    padding: var(--space-6) var(--space-4);
  }
}
