.thank-you-main {
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: var(--space-16);
  background: radial-gradient(circle at top, rgba(122, 92, 255, 0.28), transparent 55%),
              radial-gradient(circle at bottom, rgba(46, 196, 182, 0.2), transparent 60%),
              var(--color-bg-primary);
}

.thank-you-section {
  width: 100%;
}

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

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

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

.thank-you-title {
  font-size: clamp(2.1rem, 2.4vw + 1.6rem, 2.8rem);
}

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

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

.thank-you-next {
  margin-bottom: var(--space-8);
  text-align: left;
}

.thank-you-next-title {
  font-size: 1.15rem;
  margin-bottom: var(--space-3);
  color: var(--color-heading);
}

.thank-you-steps {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  gap: var(--space-2);
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

.thank-you-steps li::before {
  content: "\2022";
  color: var(--color-accent);
  display: inline-block;
  width: 1rem;
  margin-left: -1rem;
}

.thank-you-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-4);
}

@media (max-width: 768px) {
  .thank-you-main {
    padding-block: var(--space-12);
  }

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

  .thank-you-actions {
    flex-direction: column;
    align-items: stretch;
  }

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