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

.thank-you-section {
  width: 100%;
  padding-block: clamp(72px, 12vh, 120px);
}

.thank-you-container {
  max-width: 720px;
  margin-inline: auto;
}

.thank-you-header {
  text-align: center;
  margin-bottom: var(--space-6);
}

.thank-you-eyebrow {
  font-size: var(--font-size-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
  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(--gray-100);
}

.thank-you-body {
  text-align: center;
  color: var(--color-text-muted);
}

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

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

.thank-you-secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-sm);
  color: var(--color-text-soft);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.thank-you-secondary-link:hover {
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .thank-you-main {
    align-items: flex-start;
  }

  .thank-you-section {
    padding-block: 80px;
  }

  .thank-you-header {
    text-align: left;
  }

  .thank-you-body {
    text-align: left;
  }

  .thank-you-actions {
    justify-content: flex-start;
  }

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

  .thank-you-secondary-link {
    width: 100%;
    justify-content: center;
  }
}
