.thank-you-main {
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  padding-top: var(--space-64);
  padding-bottom: var(--space-64);
}

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

.thank-you-container {
  max-width: 640px;
  text-align: center;
}

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

.thank-you-kicker {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(245, 241, 232, 0.72);
  margin-bottom: var(--space-12);
}

.thank-you-header h1 {
  color: var(--color-text-on-dark);
}

.thank-you-body {
  background: radial-gradient(circle at top left, rgba(200, 164, 90, 0.06), transparent 55%),
              rgba(12, 12, 12, 0.96);
  border-radius: var(--radius-xl);
  padding: var(--space-32) var(--space-32) var(--space-24);
  box-shadow: var(--shadow-soft);
}

.thank-you-message {
  font-size: var(--font-size-md);
  margin-bottom: var(--space-16);
}

.thank-you-next {
  font-size: var(--font-size-sm);
  color: rgba(245, 241, 232, 0.82);
  margin-bottom: var(--space-32);
}

.thank-you-ctas {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
  align-items: center;
  justify-content: center;
}

.thank-you-btn-primary {
  width: 100%;
  max-width: 320px;
}

.thank-you-btn-secondary {
  width: 100%;
  max-width: 320px;
}

@media (min-width: 640px) {
  .thank-you-body {
    padding: var(--space-40) var(--space-48) var(--space-32);
  }
}

@media (min-width: 768px) {
  .thank-you-ctas {
    flex-direction: row;
  }

  .thank-you-btn-primary,
  .thank-you-btn-secondary {
    max-width: none;
    width: auto;
  }
}
