.thankyou-shell {
  max-width: 640px;
  margin: 0 auto;
  padding: var(--space-10) var(--space-8);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-subtle);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
  text-align: left;
}

.page-frame .section-xs {
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.thankyou-header h1 {
  font-size: var(--font-size-display-sm);
  margin-bottom: var(--space-3);
}

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

.thankyou-lede {
  font-size: var(--font-size-md);
  color: var(--color-text-muted);
}

.thankyou-body {
  margin-top: var(--space-6);
  font-size: var(--font-size-base);
}

.thankyou-body p {
  margin-bottom: var(--space-4);
}

.thankyou-actions {
  margin-top: var(--space-8);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.thankyou-actions .btn {
  min-width: 0;
}

@media (max-width: 768px) {
  .thankyou-shell {
    padding: var(--space-8) var(--space-5);
  }
  .thankyou-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .thankyou-actions .btn {
    width: 100%;
  }
}
