.thankyou-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--header-height-desktop));
}

.thankyou-panel {
  max-width: 640px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: var(--space-2xl) var(--space-2xl);
  text-align: center;
}

.thankyou-eyebrow {
  font-size: var(--font-size-xs);
  letter-spacing: 0.16em;
  color: var(--color-accent-strong);
  margin-bottom: var(--space-sm);
}

.thankyou-title {
  margin-bottom: var(--space-md);
}

.thankyou-lead {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.thankyou-next {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-main);
  margin-bottom: var(--space-xl);
}

.thankyou-actions {
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.thankyou-meta {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767.98px) {
  .thankyou-wrapper {
    min-height: calc(100vh - var(--header-height-mobile));
  }
  .thankyou-panel {
    padding: var(--space-xl) var(--space-lg);
  }
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .thankyou-wrapper {
    min-height: calc(100vh - var(--header-height-tablet));
  }
}
